Quote:
Quote:

Another question, for a "hello world" app, What are the correct gcc-arm-linux flags to generate a statically linked app?



arm-empeg-linux-gcc object1.o object2.o -Wl,-Bstatic $(STATIC_LIBS) -Wl,-Bdynamic $(DYNAMIC_LIBS) -o $@


I generally just do: arm-empeg-linux-gcc -static file.c

Cheers