Combine multiple DLL's into 1

前端 未结 3 1562
星月不相逢
星月不相逢 2020-12-21 03:39

I\'m wondering if it\'s possible to combine multiple DLL\'s into 1. I\'m currently working on a C++ project that is dependent on many dynamic link libraries,so would it be

3条回答
  •  遥遥无期
    2020-12-21 04:13

    Its certainly not infeasible. The Dll format contains all the information you need to merge the code and data from multiple dlls into one, and rebase the resulting code.

    this is not a standard feature of any toolchain I can think of though.

提交回复
热议问题