Code::Blocks Forums
User forums => Help => Topic started by: wvdakker on April 27, 2006, 11:33:55 am
-
I'am using OpenWatcom 1.5 with Codeblocks (rev 2377)
When I have a project which create a DLL file and select 'create import library' no .LIB file is created.
As a workaround I can run 'wlib name.lib +name.dll' but this should be done automaticly....
Or am I missing something here....?
-
Or am I missing something here....?
No. It's just that support for many of the compilers was contributed by users. Neither I nor Thomas work with OW so I can't possibly know how to set it up. If you 're familiar with it, feel free to enlighten us so we can offer better OW support.
(the same goes for most other compilers too)
-
Neither I nor Thomas work with OW so I can't possibly know how to set it up. If you 're familiar with it, feel free to enlighten us so we can offer better OW support.
(the same goes for most other compilers too)
Ok fair enough 8)
I have added
$lib_linker -q -n -b $static_output +$exe_output
to the advanced options when linking a dll.
How do I get this in the Openwatcom template... :? Should I send a feature request...?
-
How do I get this in the Openwatcom template... :? Should I send a feature request...?
Template files are plain-text, so you can read and edit them with your favourite editor.
Anyway: The advanced compiler settings apply to the compiler, not to a template and/or project. So normally once you've setup the advanced options in the compiler setup this applies to all project/templates (...) based on that compiler.
With regards, Morten.
-
Template files are plain-text, so you can read and edit them with your favourite editor.
Anyway: The advanced compiler settings apply to the compiler, not to a template and/or project. So normally once you've setup the advanced options in the compiler setup this applies to all project/templates (...) based on that compiler.
Yes, I know :P, but I want to do some fine-tuning in the advanced options for the OpenWatcom Compiler.
When I have done that, I want to get it in the CodeBlocks-build. Spread it out through the community.... :D
But I can't find the file where the compiler depended settings in de CodeBlocks distribution are stored.
-
Spread it out through the community.... :D
But I can't find the file where the compiler depended settings in de CodeBlocks distribution are stored.
For now, the only way to do that is modifying the source. Just make sure to send a patch when you're done.
The file you'll need to modify is src\plugins\compilergcc\compilerOW.cpp.
-
Spread it out through the community.... :D
But I can't find the file where the compiler depended settings in de CodeBlocks distribution are stored.
For now, the only way to do that is modifying the source. Just make sure to send a patch when you're done.
The file you'll need to modify is src\plugins\compilergcc\compilerOW.cpp.
Thanks, will do so....