Cross-compiling Qt, link order .so & .a ?
C++ Gurus
4
Posts
3
Posters
2.9k
Views
1
Watching
-
Hi,
cross-compiling Qt, I have a thridparty's .a file which changes some functions' implementation of a gcc library.
for example
libgcc_a.so is compiler's shared library, i have not libgcc_a.a.
libmy_a.a is the file i want to use.I want to link libmy_a.a first than libgcc_a.so, if a function find in both file.
Is it possible?
-
Thanks,
but...which one?I add
LIBS +=-Lpath_to_my_a_lib -lmy_a
to projects.pro,
seems not work.can you give me more info?