Two static libraries

I am currently providing a static library using vs2008. I am creating my own static library. However, since I am using another static library, there is a way that I install it as one static library. The reason is that they will call functions in my library that depend on this other static library (.lib). I am not sure how to do this and you need help.

+3
source share
3 answers

Here is one way:

  • Find out all the object files in the static library. This can be done by running the commandlib STATICLIB /list
  • . 1 (lib STATICLIB /extract:.\debug\foo.obj)
  • , 2 .
0

| | |

(.lib), " "

" ", .

+1

V++ , lib.exe. .

, , , (, , ), . .

0

Source: https://habr.com/ru/post/1737427/


All Articles