Catégorie: C

13.12.11

Permalink 05:35:00 pm, by mazet Email , 32 words   English (US) latin1
Categories: Programmation, C

Link statically only some specific libraries to a binary

You could also use ld option -Bdynamic gcc mixer.o \ -Wl,-Bstatic -lapplejuice \ -Wl,-Bdynamic -lorangejuice \ -o multifruitjuice All libraries after it (including system ones linked by gcc automatically) will be linked dynamica… more »