I am creating static library with gcc using:
ar rcs libMylib.a objA.o objB.o objC.o
How to add shared libraries to the static library, in other words what is the equivalent to the
-lcuda -lopencv_coreoption when creating static library?what, if any, is the equivalent to
gccoption-Wl,--no-undefinedwhen creating static library?