-
Adds support for the -rdynamic flag for gcc/g++ linkers.
Currently this linker argument is "reinterpretted" into -Wl,-rdynamic - the mechanism for passing flags from the compiler to the linker. This patch adds this flag to the list of known linker arguments.
2009-07-19 17:00:46 UTC in ANT Contrib
-
Related to feature request 2037601, and existing patch 2791045
This is a slightly different approach to the existing patch, and almost certainly a lot less polished. It's more ideas rather than an alternative.
It makes use of the 'ExecutorService' provided in Java 1.5+ to thread out the CommandLineCompiler jobs.
Consider this a proof of concept - i.e. it needs taking forward by someone...
2009-05-15 14:23:04 UTC in ANT Contrib
-
Two part minor modifications:
1. Default constructor failed to initialise certain key
members.
2. Declarations produced warnings when building as a
DLL using wxWidgets as a DLL.
This patch addresses both.
2005-05-31 10:33:14 UTC in wxWidgets
-
Minor patch to improve usability of wxClassInfo
When iterating through the RTTI system, the GetFirst,
GetNext functions return "const wxClassInfo *".
The CreateObject function however doesn't have const
declaration, precluding it's use.
This patch also adds a "IsDynamic" function such that
classes capable of being dynamically instanciated can
be isolated.
After brief...
2005-05-30 12:24:14 UTC in wxWidgets
-
Logged In: YES
user_id=76683
Modified patch to include comment, as per recommendation
by Vadim.
2003-06-16 20:24:05 UTC in wxWidgets
-
VC / MSW specific
Affects: src/msw/glcanvas.cpp
Normally when you add opengl support to wx, you have
to add opengl32.lib and glu32.lib to the project or
makefile (as well as changing setup.h).
This patch makes use of the "#pragma comment ...",
capability of MS VC, to automatically add these libraries
without having to change the .dsp
Trivial change that should...
2003-06-12 19:13:01 UTC in wxWidgets