You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# we first extract the objects, then link them all together, then create a static archive of this object
615
+
# if we just do `ld -r -o libCombinedFreetype.o libQt6BundledFreetype.a libQt6BundledLibpng.a libz.a` we still get undefined reference to `FTC_Manager_New' etc
616
+
mkdir combined_objects
617
+
cd combined_objects
618
+
ar x ${INSTALL_PREFIX}/lib/libQt6BundledFreetype.a
619
+
ar x ${INSTALL_PREFIX}/lib/libQt6BundledLibpng.a
620
+
ar x ${INSTALL_PREFIX}/lib/libz.a
621
+
ld -r -o libCombinedFreetype.o *.o
615
622
ar rcs ${INSTALL_PREFIX}/lib/libCombinedFreetype.a libCombinedFreetype.o
0 commit comments