News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

wxWidgets with "Library finder"

Started by hongwei.mfk, February 22, 2010, 07:46:14 AM

Previous topic - Next topic

hongwei.mfk

In Windows platforms, use GCC compiler, the complier flag such as "-lxxx" generated by "Library finder" is end of the compliler command line,  also behind its dependent librarys(such as -lkernel32, -luser32...),  so cannot compile, Someone has a solution?

[Edited by MortenMacFly:] Do NOT use Chinese here! This violates our forum rules!

ollydbg

Hi, this is English only forum. Your Chinese word may  be deleted by admin. :(
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

hongwei.mfk

Quote from: ollydbg on February 22, 2010, 07:51:16 AM
Hi, this is English only forum. Your Chinese word may  be deleted by admin. :(

Thank you for reminding me

MortenMacFly

Quote from: hongwei.mfk on February 22, 2010, 07:46:14 AM
Someone has a solution?
Within the project (target) settings you can control whether to append or prepend the switches. This should work for you.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]

hongwei.mfk

#4
QuoteWithin the project (target) settings you can control whether to append or prepend the switches. This should work for you.

Thank you, but this policy is not suitable for library finder.
I found the libraries in library finder are alphabetically sequenced(maybe use map), so I make it conform to the build order by modifying the libraries's name in library finder.