Hidden
-
In my neverending struggle to eliminate all overhead, I recently chose to do without the default libraries in my application, resulting in the following errors:
main.obj : error LNK2001: unresolved external symbol ___CxxFrameHandler main.obj : error LNK2001: unresolved external symbol __except_list
How do I get rid of them? What am I still using that needs these functions? And how on earth am I ever going to replace the recently thrown out*operator new
in my application that I use every twenty lines? Regards, Georg-Hendrik Haan (.NL) -
In my neverending struggle to eliminate all overhead, I recently chose to do without the default libraries in my application, resulting in the following errors:
main.obj : error LNK2001: unresolved external symbol ___CxxFrameHandler main.obj : error LNK2001: unresolved external symbol __except_list
How do I get rid of them? What am I still using that needs these functions? And how on earth am I ever going to replace the recently thrown out*operator new
in my application that I use every twenty lines? Regards, Georg-Hendrik Haan (.NL)Georg Haan wrote: In my neverending struggle to eliminate all overhead, I recently chose to do without the default libraries in my application the linker is smart enough to only pull functions that it actually needs to build your app. you can link to every .LIB on your system yet your EXE will still only contain what it needs. -c
For men use, if they have an evil turn, to write it in marble: and whoso doth us a good turn we write it in dust. -- Sir Thomas More