What does collect2.exe do?

前端 未结 2 676
遥遥无期
遥遥无期 2021-02-06 04:38

When I examine the code generated by gcc -v -o proggy.exe proggy.o I find that the command line expands into a large bunch of library options and libraries, all of which are lin

2条回答
  •  误落风尘
    2021-02-06 04:55

    GCC uses a utility called collect2 on nearly all systems to arrange to call various initialization functions at start time. [link]

提交回复
热议问题