Code::Blocks Forums
User forums => Using Code::Blocks => Topic started by: shen_li_li on August 13, 2008, 11:02:20 am
-
i'll use def in dll,how can i config?
-
By ticking the checkbox in the project's "Properties" dialog, under "build targets". That will create a DEF in the same folder as the DLL, which the compiler will use.
-
but ,this is create def,not use !
-
dll sample:
i create a dll, will output the function "test"
if i not use def,CodeBlocks output test@8,but i will output only test
i will use this def :
//===================================
LIBRARY "test"
DESCRIPTION 'test Windows Dynamic Link Library'
EXPORTS
test = test@8 @1
//===================================
how can i do?
-
-Wl,--kill-at --def=DLT645.def
:D