새로운 설치를 시도하고 있습니다. 저는 32 비트 Windows 8 Pro 노트북을 사용 중입니다. MinGW-builds 'GCC 4.8.1을 다운로드했습니다. 나는 LLVM & CLang (트렁크의 SVN 복사본에서 3.4+)을 컴파일하는데 사용했다. 둘 다 내 PATH에 있습니다.Windows 및 CodeLite 용 wxWidgets은 어떻게 설정합니까?
MinGW/GCC 4.7.1 사본과 함께 제공된 CodeLite 5.2를 다운로드했습니다. 순수 콘솔 튜토리얼 예제가 작동하고 있지만 wxWidgets 예제가 작동하지 않습니다. (그것은 Quick Start입니다.) wxWidgets이 설치된 &을 다운로드했습니다. (항상 좋은 첫 걸음.) MinGW-4.8.1로 만들었습니다. 오류 노트를 읽고 "C : \ wxWidgets-2.9.5"에 WXWIN
및 ".. \ build \ msw \ gcc_mswud"에 WXCFG
에 두 개의 환경 변수를 추가했습니다. (처음에는 WXCFG
이 절대 경로가 될 것이라고 생각했지만, "%WXWIN%\lib\
"을 기반으로했습니다.) MinGW 및 LLVM을 "C : \ Program Files"에서 "C : \"로 이동하여 자신의 공간에 공간이 생기는 것을 피했습니다. 경로. 내가 F7으로 빌드 할 때
다음은 (여전히) 오류 출력입니다 : 어떤 점에서
C:\WINDOWS\system32\cmd.exe /c "mingw32-make.exe -j 2 -e -f Makefile"
"----------Building project:[ Test1_2 - Debug ]----------"
Please use the --wxcfg flag (as in wx-config --wxcfg=gcc_dll\mswud)
or set the environment variable WXCFG (as in WXCFG=gcc_dll\mswud)
to specify which configuration exactly you want to use.
Please use the --wxcfg flag (as in wx-config --wxcfg=gcc_dll\mswud)
or set the environment variable WXCFG (as in WXCFG=gcc_dll\mswud)
to specify which configuration exactly you want to use.
Please use the --wxcfg flag (as in wx-config --wxcfg=gcc_dll\mswud)
or set the environment variable WXCFG (as in WXCFG=gcc_dll\mswud)
to specify which configuration exactly you want to use.
Please use the --wxcfg flag (as in wx-config --wxcfg=gcc_dll\mswud)
or set the environment variable WXCFG (as in WXCFG=gcc_dll\mswud)
to specify which configuration exactly you want to use.
mingw32-make.exe[1]: Entering directory `C:/Users/Daryle/Documents/CodeLite/Test1/Test1_2'
g++: error: wx-config: No such file or directory
g++: error: Error:: Invalid argument
g++: error: No: No such file or directory
g++: error: valid: No such file or directory
g++: error: setup.h: No such file or directory
g++: error: of: No such file or directory
g++: error: wxWidgets: No such file or directory
g++: error: has: No such file or directory
g++: error: been: No such file or directory
g++: error: found: No such file or directory
g++: error: at: No such file or directory
g++: error: location:: Invalid argument
g++: error: C:\wxWidgets-2.9.5\lib\..\build\msw\gcc_mswud\wx\setup.h: No such file or directory
g++: error: wx-config: No such file or directory
g++: error: Error:: Invalid argument
g++: error: No: No such file or directory
g++: error: valid: No such file or directory
g++: error: setup.h: No such file or directory
g++: error: of: No such file or directory
g++: error: wxWidgets: No such file or directory
g++: error: has: No such file or directory
g++: error: been: No such file or directory
g++: error: found: No such file or directory
g++: error: at: No such file or directory
g++: error: location:: Invalid argument
g++: error: C:\wxWidgets-2.9.5\lib\..\build\msw\gcc_mswud\wx\setup.h: No such file or directory
mingw32-make.exe[1]: *** [Debug/test1_2_frame.o.d] Error 1
mingw32-make.exe[1]: *** Waiting for unfinished jobs....
mingw32-make.exe[1]: *** [Debug/test1_2_app.o.d] Error 1
Test1_2.mk:102: recipe for target `Debug/test1_2_frame.o.d' failed
Test1_2.mk:94: recipe for target `Debug/test1_2_app.o.d' failed
mingw32-make.exe[1]: Leaving directory `C:/Users/Daryle/Documents/CodeLite/Test1/Test1_2'
mingw32-make.exe: *** [All] Error 2
Makefile:4: recipe for target `All' failed
0 errors, 0 warnings
는, 컴파일러 단계는 오류 메시지를 분출하고 다음 단계는 실제 매개 변수로 해석! (표준 출력 대신 표준 오류에 오류를 전송해야합니까?)
업데이트
내 실제 작업에 이동 한 후, 나는 오류를 얻고 CodeLite 여전히 함께 제공된는 MinGW 4.7.1을 사용하는 것으로 나타났습니다 다운로드 한 4.8.1 대신 CodeLite를 다운로드하십시오. 검색 디렉토리를 내 4.8.1로 변경하면 문제가 생길 수 있습니다. 나는 모든 것을 지우고 다시 시작할 것입니다.
이 일을 했습니까?동일한 오류가 발생했습니다. – Gary