3

我正在尝试新的设置。我使用的是 32 位 Windows 8 Pro 笔记本电脑。我已经下载了 MinGW-builds 的 GCC 4.8.1。我用它来编译 LLVM 和 CLang(来自主干的 SVN 副本的 3.4+)。这两个都在我的路径中。

我已经下载了 CodeLite 5.2,它附带 MinGW/GCC 4.7.1 的副本。我得到了纯控制台教程示例,但我无法让 wxWidgets 示例正常工作。(这是快速入门。)我下载并安装了 wxWidgets。(总是一个很好的第一步。)我用 MinGW-4.8.1 构建了它。我已经阅读了错误说明并添加了两个(第一个是本地的,现在是系统的)环境变量:WXWIN在“C:\wxWidgets-2.9.5”和WXCFG“..\build\msw\gcc_mswud”。(我最初认为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

在某些时候,编译器步骤发出错误消息,下一步将其解释为实际参数!(应该在 stderr 而不是 stdout 上发送错误?)

更新

在继续我的实际工作后,我遇到了错误,并注意到 CodeLite 仍在使用 CodeLite 下载附带的 MinGW 4.7.1,而不是使用我下载的 4.8.1。我可能通过将搜索目录更改为我的 4.8.1 来搞砸了。我想我会抹去一切,重新开始......

4

2 回答 2

3

用于 Windows 的 wx-config.exe 工具使用 2 个环境变量:WXCFG 和 WXWIN 您需要提供它们,以便 wx-config.exe 能够找到 wx-config 文件。推荐的方法是在 IDE 中而不是在系统范围内设置它们。

为此,请从主菜单中转到:设置 -> 环境变量

并添加 2 个条目:

WXWIN=\Path\to\wxWidgets\Folder
WXCFG=gcc_dll\mswu

另外,您提到 Codelite 使用的是 GCC4.7.1 而不是您的 4.8.1。您应该知道,在 Windows 上使用 GCC 时,您应该使用相同的 GCC 版本构建所有组件。所以请确保您不要使用我们(codelite 团队)提供的 wxWidgets,因为它是使用 GCC4.7.1 构建的,否则您可能会遇到一些奇怪的崩溃。

要强制 codelite 使用另一个 GCC,只需从 codelite 中更改 PATH:

设置 -> 环境变量

PATH=\Path\To\MinGW-4.8.1\bin;$PATH

伊兰

于 2013-07-27T04:35:45.803 回答
1

错误信息似乎表明WXCFG未设置环境变量,您是否在设置后重新启动了IDE?请记住,编辑环境变量不会更改已运行进程的环境变量。

于 2013-07-26T14:31:27.323 回答