Hi,

(WinXP, MinGW, gcc-3.4.5, wx-2.8.3)

wxNewbie wrote:
> Hi, All
> 
> I'm a newbie for wxWidgets in Windows, but I've already used it in
> Linux.
> 
> I've tried to build the libraries the easiest way, using the given
> makefiles, using MinGW, but got no success.
> 
> So I decided to use configure and make in cygwin.  I've created a
> script that builds wx in several flavors (like "debug" or "nodebug",
> "ascii" or "unicode", "static" or "shared", in all 8 combinations),
> but came up with a weird directory tree to isolate those flavors.
> 
> How am I supposed to do this ("official" way), I mean, how do I build
> those different flavors and keep a lean and clean directory structure
> for the libs and includes?
> 
> Thanks a lot
> Francisco


I'm building wx with a batch file as following. I'm not having any 
library/directory problem. All libs goes to lib/gcc_dll and lib/gcc_lib. 
Did you get different results?

build/msw/wxbatchbuild.bat
-----------------------------------------------------------------
mingw32-make -fmakefile.gcc MONOLITHIC=1 BUILD=release
mingw32-make -fmakefile.gcc MONOLITHIC=1 BUILD=debug
mingw32-make -fmakefile.gcc MONOLITHIC=1 BUILD=release UNICODE=1
mingw32-make -fmakefile.gcc MONOLITHIC=1 BUILD=debug UNICODE=1
mingw32-make -fmakefile.gcc MONOLITHIC=1 BUILD=release SHARED=1 
RUNTIME_LIBS=dynamic
mingw32-make -fmakefile.gcc MONOLITHIC=1 BUILD=release SHARED=1 
RUNTIME_LIBS=dynamic UNICODE=1

rem pause

cd ..\..\contrib\build\stc
mingw32-make -fmakefile.gcc MONOLITHIC=1 BUILD=release
mingw32-make -fmakefile.gcc MONOLITHIC=1 BUILD=debug
mingw32-make -fmakefile.gcc MONOLITHIC=1 BUILD=release UNICODE=1
mingw32-make -fmakefile.gcc MONOLITHIC=1 BUILD=debug UNICODE=1
mingw32-make -fmakefile.gcc MONOLITHIC=1 BUILD=release SHARED=1 
RUNTIME_LIBS=dynamic
mingw32-make -fmakefile.gcc MONOLITHIC=1 BUILD=release SHARED=1 
RUNTIME_LIBS=dynamic UNICODE=1

pause

cd ..\..\..\build\msw
----------------------------------------------------------------



--
Regards,
Hakki Dogusan

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
wxlua-users mailing list
wxlua-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxlua-users

Reply via email to