<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <title></title>
</head>
<body>
Thank you so much!  I told it what libraries to use, and it links now!<br>
Thanks also to Warren for the automake links.<br>
I've also found the gcc how-to, which I'll digest later today - probably
would have saved me a lot of frustration if I had located it earlier.<br>
<br>
Thanks, <br>
-Jeff<br>
<br>
Jimen Ching wrote:<br>
<blockquote type="cite" cite="mid20020421003919.K29137-100000@flex.com">
  <pre wrap="">On Sat, 20 Apr 2002, Jeff Mings wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">E.g.,  when I try  gcc  grab_partial_image.c  ,  I receive a long list
of errors:
/tmp/ccWnmLby.o: In function `main':
/tmp/ccWnmLby.o(.text+0x21): undefined reference to `dc1394_create_handle'
/tmp/ccWnmLby.o(.text+0x5b): undefined reference to `raw1394_get_nodecount'
    </pre>
  </blockquote>
  <pre wrap=""><!---->
If that was the exact command line you used, then the problem is that you
did not specify the libraries that are needed.  In Unix, you have to
manually include the libraries on the command line.  With IDE's, the
needed libraries are automatically included for you.  Use the following
command line:

gcc grab_partial_image.c -ldc1394 -lraw1394

You might need to reverse the order of the library options.  The order
makes a difference.  The difference is in the dependencies.  If library A
depends on library B, then library A should be placed _first_ on the
command line.

Hope this helps.

--jc
--
Jimen Ching (WH6BRR)      <a class="moz-txt-link-abbreviated" href="mailto:jching@flex.com">jching@flex.com</a>     <a class="moz-txt-link-abbreviated" href="mailto:wh6brr@uhm.ampr.org">wh6brr@uhm.ampr.org</a>

_______________________________________________
LUAU mailing list
<a class="moz-txt-link-abbreviated" href="mailto:LUAU@videl.ics.hawaii.edu">LUAU@videl.ics.hawaii.edu</a>
<a class="moz-txt-link-freetext" href="http://videl.ics.hawaii.edu/mailman/listinfo/luau">http://videl.ics.hawaii.edu/mailman/listinfo/luau</a>


  </pre>
</blockquote>
<br>
<br>
</body>
</html>