![]() |
Help with MAKEFILE
Hi, i need some help with makefile. This is error:
/scratchbox/compilers/cs2007q3-glibc2.5-arm7/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.1/../../../../arm-none-linux-gnueabi/bin/ld: cannot find -lSDL-1.2 collect2: ld returned 1 exit status make: *** [gles2n64.so] Error 1 adn here is makefile: Code:
ARCH = ARM |
Re: Help with MAKEFILE
Supply the actual compiler output.
Do you really have a file named libSDL-1.2.so.<something> in any directory that you're adding with the -L flag? This lines looks weird: CFLAGS += -I$(COMPILER_DIR)/arm-none-linux-gnueabi/libc/lib -I is used to add directories for #include operations. libc/lib looks like a place with dynamically linkable libraries. |
Re: Help with MAKEFILE
Yes I have here LDFLAGS = -L/scratchbox/users/figa/targets/FREMANTLE_ARMEL/usr/lib Ok I changed it, but still doesn´t work.
|
Re: Help with MAKEFILE
Again, supply the actual compiler output. You're only showing the last step with linking.
To actually see all flags and their values, it would help to see what is done. |
Re: Help with MAKEFILE
Sorry.
Code:
[sbox-FREMANTLE_ARMEL: ~/mupen/gles2n64] > make all |
Re: Help with MAKEFILE
This
Code:
gles2n64.$(SO_EXTENSION): $(OBJECTS) Code:
gles2n64.$(SO_EXTENSION): $(OBJECTS) To help the linker, you can use -l:libSDL-1.2.so.0 to give the full name of the library you want to link against. You should also note that when compiling C++ code, CXXFLAGS is typically used and there are already rules built into make to handle .cpp => .o files. Try to write as few rules of your own as possible and use the proper variables instead. |
All times are GMT. The time now is 07:17. |
vBulletin® Version 3.8.8