I wanted to add option --output-def when link the dll , but I cannot find the correct place to add it. I changed the makefile.win and add it manaully.
I want to know if there is other solution for it ?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2007-12-06
When you create your project with the DLL project template that option is added automatically, so I don;t know why you don't have it.
Be aware that dllwrap.exe is used rather than the linker when creating a DLL (DLLs and static libraries are not 'linked' as such). However on a DLL project options in the "Linker" options box are applied to dllwrap.exe instead. But as I said, you should not have to if you use the DLL template.
Clifford
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I wanted to add option --output-def when link the dll , but I cannot find the correct place to add it. I changed the makefile.win and add it manaully.
I want to know if there is other solution for it ?
When you create your project with the DLL project template that option is added automatically, so I don;t know why you don't have it.
Be aware that dllwrap.exe is used rather than the linker when creating a DLL (DLLs and static libraries are not 'linked' as such). However on a DLL project options in the "Linker" options box are applied to dllwrap.exe instead. But as I said, you should not have to if you use the DLL template.
Clifford