Author Topic: wxWidgets 2.6 (MSW, GCC) installation instructions  (Read 145146 times)

Offline jmccay

  • Almost regular
  • **
  • Posts: 202
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #60 on: October 22, 2005, 09:02:55 pm »
I uninstalled the final beta and installed RC1.  I chose not to clear the settings.  I set my path to include:

C:\Program Files\CodeBlocks\bin

My wxWidgets 2.6.1 (from CVS with the patch installed manually because it was available later) is in the this directory:

C:\development\projects\WX_2_6_1\wxWidgets

   I am still getting these warnings--endless warnings.  I can't figure out why.  It finishes compiling without errors, but I was wondering what was causing all the warning.  I get the dlls and archives.

Code
../../include/wx/datetime.h:34: warning: type attributes are honored only at typ
e definition
../../include/wx/datetime.h:35: warning: type attributes are honored only at typ
e definition
../../include/wx/datetime.h:36: warning: type attributes are honored only at typ
e definition
../../include/wx/datetime.h:111: warning: type attributes are honored only at ty
pe definition
../../include/wx/datetime.h:1440: warning: type attributes are honored only at t
ype definition

jmccay

  I finally have an answer to this question.  Here is the answer from the wxWidgets forum:

the warnings are because the makefile turned all warnings on... you can easily edit it at ur wishes
-lowjoel (Moderator wxWidgets forum) http://www.solidsteel.nl/users/wxwidgets/viewtopic.php?t=3324&start=0&postdays=0&postorder=asc&highlight=&sid=12dc997430a4cb2bc99f0175699f58de

Anybody know how to turn off that particular warning with turning them all off?  I edited the installation wiki to make note of that comment incase someone new wants to know why it's happening.

jmccay
OS: WinXP, Win98 SE, & sometimes Linux

a little light reading from the wxWidgets 2.6.2 readme: A detailed 2000-page reference manual is supplied in HTML, PDF and Windows Help form: see the docs hierarchy.

takeshimiya

  • Guest
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #61 on: October 22, 2005, 11:07:59 pm »
I've read somewhere that this was a bug in a specific version of GCC, but I have a newer version, and I still get those warnings. :?

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #62 on: October 22, 2005, 11:38:57 pm »
The problem is that they use __declspec(dllexport) instead of  __attribute__ ((dllexport)) in the MinGW parts of the includes, which is not MinGW syntax.

For compatibility's sake, MinGW treats __declspec(dllexport) as an alias for __attribute__ ((dllexport)), but in a few builds, it does not work correctly and produces that warning.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline pir

  • Multiple posting newcomer
  • *
  • Posts: 48
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #63 on: October 25, 2005, 04:24:56 pm »
Very valuable thread! It actually provides much more useful information than the wxWidgets site - the instructions that come with wxWidgets v2.6.2 don't seem to work (for me!) since there is no mention of the flags that seem to be essential.

Unfortunately, it's a bit confusing trying to extract a definitive set of instructions for the latest wxWidgets version from this thread. Is it possible for some kindly soul to post an up-to-date set of instructions for building both a static and dynamic link libraries? And to explain what all the flags do? MinGW is the compiler I use although I'm sure others would be valued too. (Is the wiki an appropriate repository for such an invaluable piece of information?)

Cheers,
Peter

Offline David Perfors

  • Developer
  • Lives here!
  • *****
  • Posts: 560
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #64 on: October 25, 2005, 04:30:38 pm »
Yes the wiki should used for this.
Also I am (still) working on my computer to get linux working. Because I have noticed that is the easiest platform to create multiple kinds of documentation (probably not through, but that is what I found out) So as soon as that is done, I am able to start some write some documentation.
OS: winXP
Compiler: mingw
IDE: Code::Blocks SVN WX: 2.8.4 Wish list: faster code completion, easier debugging, refactoring

Offline pir

  • Multiple posting newcomer
  • *
  • Posts: 48
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #65 on: October 25, 2005, 04:39:37 pm »
Ooops! Just noticed that there are instructions for wxWidgets v2.6.1 on the wiki!! Just that it's 'hidden' under the 'Tutorials' section.

See http://wiki.codeblocks.org/index.php/Compiling_wxWidgets_2.6.1_to_develop_Code::Blocks_%28MSW%29

Peter

Offline jmccay

  • Almost regular
  • **
  • Posts: 202
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #66 on: October 27, 2005, 03:24:42 am »
What are the "Settings->Compiler->Directories->Resource compiler" for?  What directories do I want to make available here?

Thank you.
jmccay
OS: WinXP, Win98 SE, & sometimes Linux

a little light reading from the wxWidgets 2.6.2 readme: A detailed 2000-page reference manual is supplied in HTML, PDF and Windows Help form: see the docs hierarchy.

Offline rickg22

  • Lives here!
  • ****
  • Posts: 2283
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #67 on: October 27, 2005, 04:35:54 am »
The resource compiler directories are used to include your windows resources (bitmaps, icons, etc) in the executable. The wxWidgets for example, has a resource file including an icon. In any case, follow the rule:
If you don't know it, you don't need it :P

S_O

  • Guest
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #68 on: December 02, 2005, 08:35:19 pm »
I messed with my setup & I cannot figure out what is wrong.  Does anyone have any ideas what could cause this?


Code
$ mingw32-make -f ./makefile.gcc USE_XRC=1 SHARED=1 MONOLITHIC=1 BUILD=release 
UNICODE=0 VENDOR=cb
if not exist gcc_mswdll mkdir gcc_mswdll
/usr/bin/sh: -c: line 2: syntax error: unexpected end of file
c:\Program Files\CodeBlocks\bin\mingw32-make.exe: [gcc_mswdll] Error 258 (ignored)
if not exist ..\..\lib\gcc_dll\msw mkdir ..\..\lib\gcc_dll\msw
/usr/bin/sh: -c: line 2: syntax error: unexpected end of file
c:\Program Files\CodeBlocks\bin\mingw32-make.exe: *** [..\..\lib\gcc_dll\msw] Error 258

   I am answering my own question before I  post it in case someone else has a momentary lapse of intelligence and doesn't read the installation.  the the makefile.gcc doesn't work under msys.  It's for mingw using the windows command prompt.  :P

joe

I currently have exactly the same problem. I tried in msys and normal command prompt, exactly the same error message. What am I doing wrong? I have mingw-4.1, msys 1.0.10, Windows XP, wxWidgets 2.6.2

Offline rickg22

  • Lives here!
  • ****
  • Posts: 2283
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #69 on: December 02, 2005, 10:23:29 pm »
the windows version of wxWidgets must _NOT_ be compiled inside MSYS. See the wiki for details.

Offline David Perfors

  • Developer
  • Lives here!
  • *****
  • Posts: 560
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #70 on: December 02, 2005, 10:38:25 pm »
it is possible to compile with msys, but than you have to use the linux method: ./configure && make
But it is easier to use the command prompt of windows.
OS: winXP
Compiler: mingw
IDE: Code::Blocks SVN WX: 2.8.4 Wish list: faster code completion, easier debugging, refactoring

S_O

  • Guest
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #71 on: December 03, 2005, 01:03:22 am »
I read the wiki and I used command prompt.
But normal command prompt gives me exactly the same error message as msys:
Code
C:\wxWidgets-2.6.2\build\msw>C:\msys\1.0\bin\make -f makefile.gcc USE_XRC=1 SHAR
ED=1 MONOLITHIC=1 BUILD=release UNICODE=1 clean
if exist gcc_mswudll\*.o del gcc_mswudll\*.o
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist gcc_mswudll\*.d del gcc_mswudll\*.d
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxregexu.a del ..\..\lib\gcc_dll\libwxregexu.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxzlib.a del ..\..\lib\gcc_dll\libwxzlib.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxpng.a del ..\..\lib\gcc_dll\libwxpng.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxjpeg.a del ..\..\lib\gcc_dll\libwxjpeg.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxtiff.a del ..\..\lib\gcc_dll\libwxtiff.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxexpat.a del ..\..\lib\gcc_dll\libwxexpat.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxmsw26u_gcc_custom.dll del ..\..\lib\gcc_dll\wxmsw26
u_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u.a del ..\..\lib\gcc_dll\libwxmsw26u.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u.a del ..\..\lib\gcc_dll\libwxmsw26u.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxbase26u_gcc_custom.dll del ..\..\lib\gcc_dll\wxbase
26u_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxbase26u.a del ..\..\lib\gcc_dll\libwxbase26u.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxbase26u.a del ..\..\lib\gcc_dll\libwxbase26u.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxbase26u_net_gcc_custom.dll del ..\..\lib\gcc_dll\wx
base26u_net_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxbase26u_net.a del ..\..\lib\gcc_dll\libwxbase26u
_net.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxbase26u_net.a del ..\..\lib\gcc_dll\libwxbase26u
_net.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxmsw26u_core_gcc_custom.dll del ..\..\lib\gcc_dll\wx
msw26u_core_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_core.a del ..\..\lib\gcc_dll\libwxmsw26u_
core.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_core.a del ..\..\lib\gcc_dll\libwxmsw26u_
core.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxmsw26u_adv_gcc_custom.dll del ..\..\lib\gcc_dll\wxm
sw26u_adv_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_adv.a del ..\..\lib\gcc_dll\libwxmsw26u_a
dv.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_adv.a del ..\..\lib\gcc_dll\libwxmsw26u_a
dv.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxmsw26u_media_gcc_custom.dll del ..\..\lib\gcc_dll\w
xmsw26u_media_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_media.a del ..\..\lib\gcc_dll\libwxmsw26u
_media.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_media.a del ..\..\lib\gcc_dll\libwxmsw26u
_media.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxbase26u_odbc_gcc_custom.dll del ..\..\lib\gcc_dll\w
xbase26u_odbc_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxbase26u_odbc.a del ..\..\lib\gcc_dll\libwxbase26
u_odbc.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxbase26u_odbc.a del ..\..\lib\gcc_dll\libwxbase26
u_odbc.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxmsw26u_dbgrid_gcc_custom.dll del ..\..\lib\gcc_dll\
wxmsw26u_dbgrid_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_dbgrid.a del ..\..\lib\gcc_dll\libwxmsw26
u_dbgrid.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_dbgrid.a del ..\..\lib\gcc_dll\libwxmsw26
u_dbgrid.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxmsw26u_html_gcc_custom.dll del ..\..\lib\gcc_dll\wx
msw26u_html_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_html.a del ..\..\lib\gcc_dll\libwxmsw26u_
html.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_html.a del ..\..\lib\gcc_dll\libwxmsw26u_
html.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxmsw26u_qa_gcc_custom.dll del ..\..\lib\gcc_dll\wxms
w26u_qa_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_qa.a del ..\..\lib\gcc_dll\libwxmsw26u_qa
.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_qa.a del ..\..\lib\gcc_dll\libwxmsw26u_qa
.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxbase26u_xml_gcc_custom.dll del ..\..\lib\gcc_dll\wx
base26u_xml_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxbase26u_xml.a del ..\..\lib\gcc_dll\libwxbase26u
_xml.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxbase26u_xml.a del ..\..\lib\gcc_dll\libwxbase26u
_xml.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxmsw26u_xrc_gcc_custom.dll del ..\..\lib\gcc_dll\wxm
sw26u_xrc_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_xrc.a del ..\..\lib\gcc_dll\libwxmsw26u_x
rc.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_xrc.a del ..\..\lib\gcc_dll\libwxmsw26u_x
rc.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\wxmsw26u_gl_gcc_custom.dll del ..\..\lib\gcc_dll\wxms
w26u_gl_gcc_custom.dll
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_gl.a del ..\..\lib\gcc_dll\libwxmsw26u_gl
.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
if exist ..\..\lib\gcc_dll\libwxmsw26u_gl.a del ..\..\lib\gcc_dll\libwxmsw26u_gl
.a
/bin/sh.exe: -c: line 2: syntax error: unexpected end of file
make: [clean] Error 2 (ignored)
/usr/bin/make -C ..\..\samples -f makefile.gcc CC="gcc" CXX="g++" CFLAGS="" CXXF
LAGS="" CPPFLAGS="" LDFLAGS="" SHARED="1" WXUNIV="0" UNICODE="1" MSLU="0" BUILD=
"release" DEBUG_INFO="default" DEBUG_FLAG="default" MONOLITHIC="1" USE_GUI="1" U
SE_HTML="1" USE_XRC="1" USE_OPENGL="0" USE_ODBC="0" USE_QA="0" USE_EXCEPTIONS="1
" USE_RTTI="1" USE_THREADS="1" OFFICIAL_BUILD="0" VENDOR="custom" WX_FLAVOUR=""
WX_LIB_FLAVOUR="" CFG="" CPPUNIT_CFLAGS="" CPPUNIT_LIBS="" RUNTIME_LIBS="dynamic
" GCC_VERSION="3" clean
make: *** ....samples: No such file or directory.  Stop.
make: *** [clean] Error 2

Offline Urxae

  • Regular
  • ***
  • Posts: 376
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #72 on: December 03, 2005, 01:17:39 am »
I read the wiki and I used command prompt.
But normal command prompt gives me exactly the same error message as msys:
Code
C:\wxWidgets-2.6.2\build\msw>C:\msys\1.0\bin\make -f makefile.gcc USE_XRC=1 SHARED=1 MONOLITHIC=1 BUILD=release UNICODE=1 clean
[...]

You're still using the MSYS make. Don't do that, use the one that comes with MinGW (mingw32-make).

S_O

  • Guest
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #73 on: December 03, 2005, 01:35:38 pm »
You're still using the MSYS make. Don't do that, use the one that comes with MinGW (mingw32-make).
I yust downloaded mingw32-make (http://prdownloads.sf.net/mingw/mingw32-make-3.80.0-3.exe?download) and tried again, now the error is a little bit different:
Code
C:\wxWidgets-2.6.2\build\msw>c:\mingw\bin\mingw32-make -f makefile.gcc USE_XRC=1
 SHARED=1 MONOLITHIC=1 BUILD=release UNICODE=1 clean
if exist gcc_mswudll\*.o del gcc_mswudll\*.o
/usr/bin/sh: -c: line 2: syntax error: unexpected end of file
c:\mingw\bin\mingw32-make: [clean] Error 258 (ignored)
if exist gcc_mswudll\*.d del gcc_mswudll\*.d
/usr/bin/sh: -c: line 2: syntax error: unexpected end of file
c:\mingw\bin\mingw32-make: [clean] Error 258 (ignored)
if exist ..\..\lib\gcc_dll\libwxregexu.a del ..\..\lib\gcc_dll\libwxregexu.a
/usr/bin/sh: -c: line 2: syntax error: unexpected end of file
c:\mingw\bin\mingw32-make: [clean] Error 258 (ignored)
if exist ..\..\lib\gcc_dll\libwxzlib.a del ..\..\lib\gcc_dll\libwxzlib.a

....

c:/mingw/bin/mingw32-make -C ..\..\samples -f makefile.gcc CC="gcc" CXX="g++" CF
LAGS="" CXXFLAGS="" CPPFLAGS="" LDFLAGS="" SHARED="1" WXUNIV="0" UNICODE="1" MSL
U="0" BUILD="release" DEBUG_INFO="default" DEBUG_FLAG="default" MONOLITHIC="1" U
SE_GUI="1" USE_HTML="1" USE_XRC="1" USE_OPENGL="0" USE_ODBC="0" USE_QA="0" USE_E
XCEPTIONS="1" USE_RTTI="1" USE_THREADS="1" OFFICIAL_BUILD="0" VENDOR="custom" WX
_FLAVOUR="" WX_LIB_FLAVOUR="" CFG="" CPPUNIT_CFLAGS="" CPPUNIT_LIBS="" RUNTIME_L
IBS="dynamic" GCC_VERSION="3" clean
c:\mingw\bin\mingw32-make.exe: *** ....samples: No such file or directory.  Stop
.
c:\mingw\bin\mingw32-make: *** [clean] Error 2

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: wxWidgets 2.6 (MSW, GCC) installation instructions
« Reply #74 on: December 03, 2005, 01:46:19 pm »
People here are trying to tell you that you must not use MSYS at all.
Downloading only make, is not going to help you. You 're still using GCC from MSYS...

If you want to use makefiles to build it, you *must* not use MSYS.
To use MSYS, try the "./configure" approach.
Be patient!
This bug will be fixed soon...