> I got the following output:
> /home/damian/Desktop/usr/local/opt/crosstool/arm-linux/gcc-3.3.4-glibc-2.3.2/bin/../lib/gcc-lib/arm-linux/3.3.4/../../../../arm-linux/bin/ld:
> cannot open output file adc: Is a directory
> collect2: ld returned 1 exit status
It looks like your real problem is unrelated to the location of the
header files. The compiler seems to be trying to create a file when
there is already an existing directory by that name.
You can tell gcc how to find headers in other directories by using the
'-I' option.
eg:
gcc -I /some/absolute/directory -I ../some/relative/directory filename.c
--- rod.
------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ts-7000/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/ts-7000/join
(Yahoo! ID required)
<*> To change settings via email:
<*> To unsubscribe from this group, send an email to:
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|