2011-11-14 13 views
1
  • 私は2つのディレクトリC:\dev\wx\wxPtyhonC:\dev\wx\wxWidgetsにwxPythonをとwxWidgetsのをチェックアウト:
 
mkdir /D c:\dev\wx\ 
cd c:\dev\wx 
git clone https://github.com/wxWidgets/wxPython.git 
git clone https://github.com/wxWidgets/wxWidgets.git 
  • 私が正常に実行することにより、wxWidgetsのを構築:
 
cd wxwidgets\build\msw 
mingw32-make -f makefile.gcc MONOLITHIC=1 SHARED=1 UNICODE=1 BUILD=release 

問題はそのとき、私ですwxPythonをビルドしようとすると、それが見つからないwx.hWindows上でmingwを使ってwxPythonトランクを構築するには?

 
WXWIN=c:\dev\wx\wxWidgets 
:: Note c:\dev\wx\wxWidgets\include\wx\wx.h exists ! 

C:\dev\wx\wxPython>python setup.py COMPILER=mingw32 BUILD_GLCANVAS=0 BUILD_ACTIVEX=0 WX_CONFIG="wx-config" build_ext --inplace 
Preparing CORE...                            
Preparing STC...                             
Preparing GIZMOS...                            
running build_ext                            
running build_ext                            
building '_core_' extension                          
c:\dev\mingw\bin\gcc.exe -mno-cygwin -mdll -O -Wall -DSWIG_TYPE_TABLE=_wxPython_table -DSWIG_PYTHON_OUTPUT_TUPLE -DWXP_USE_THREA 
D=1 -UNDEBUG -Iinclude -Isrc -IC:\Python25\include -IC:\Python25\PC -c src/helpers.cpp -o build\temp.win32-2.5\Release\src\helpe 
rs.o -O3                               
In file included from src/helpers.cpp:17:0:                      
include/wx/wxPython/wxPython_int.h:35:19: fatal error: wx/wx.h: No such file or directory          
compilation terminated.                           
error: command 'gcc' failed with exit status 1 
+0

私があなただったらwxPythonメーリングリストにクロスポストします。そこに誰かがあなたを助けることができると確信しています。 –

+0

https://web.archive.org/web/20071013073037/http://www.mingw.org/cms/node/17 from [wxwidgets list](http://wxwidgets.10942.n7.nabble.com/) wxPython-built-on-windows-with-GCC-cygwin-mingw-td64819.html) – n611x007

答えて

1

Linuxでは、私は同じエラーのように思えました。 私はこの方法でエラーを取り除く:

  1. を私はリストからWX-config設定プログラム
  2. のリストを取得するためにfindコマンドを使用し、私は右の&を使用思えWX-config設定を選んだ その完全なWX_CONFIGのパス
関連する問題