On Wed, Oct 11, 2000 at 09:08:25PM -0500, Nick Hudson wrote:
| > Ok im tryin to compile something here and im getting this error when
| > it does this.  Can onyone tell me how to fix this??::
| 
| [root@Blackhawk efm_prefs]# make
| rm -f efm_prefs
| cc -o efm_prefs main.o menus.o shortcuts.o support.o general.o
| bufglobs.o mime_edit.o bg.o ../../core/src/globals.o
| ../../core/src/jobs.o ../../core/src/e_prefs.o
| ../../core/src/e_background.o `gtk-config --libs` -ldb -lgdk_imlib
| -lImlib2 -lfam -le  -L/usr/local/lib -L/usr/X11R6/lib -L/usr/X11/lib
| -L/usr/dt/lib
| /usr/bin/ld: cannot find -le
| collect2: ld returned 1 exit status
| make: *** [efm_prefs] Error 1
| [root@Blackhawk efm_prefs]#
| 
| 
| why cant it find /usr/bin/ls -le??  i dont understand??

That's "ld", not "ls". The linker - final stage of a compile for an
executable.

See that "-le" in the cc line? Cc invokes ld for this phase. Make is
expecting the link phase to want the "e" library, whatever that is.

Maybe you should run back over your "configure" run (if there was one).

Cheers,
-- 
Cameron Simpson, DoD#743        [EMAIL PROTECTED]    http://www.zip.com.au/~cs/

The mere existence of a problem is no proof of the existence of a solution.
        - Yiddish Proverb



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to