无法为 MacOSX 编译 wxWidget 应用程序
我正在尝试使用 wxWidgets 2.9.3 编译 WxWidgets 应用程序。我在 Linux 下编译了相同的源代码,效果很好,我认为主要错误是:
#error "Carbon does not support 64bit"
并且我不知道如何正确设置它。 编译我使用了以下命令:
g++ hellomac.cpp -o hellomac `/opt/bin/wx-config --cxxflags --libs`
有人可以帮助我吗? /opt/bin 是我的 wxWidget 的安装位置。我的 OSX 版本是 10.6.8
I am trying to compile an application for WxWidgets using wxWidgets 2.9.3. I compiled the same source under Linux pretty fine and I think the main error is :
#error "Carbon does not support 64bit"
and I did not get how to set this correctly.
to compile I used the follow command:
g++ hellomac.cpp -o hellomac `/opt/bin/wx-config --cxxflags --libs`
Could someone help me on this?
/opt/bin is where my wxWidget is installed. My OSX is version 10.6.8
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不久前,在 Snow Leopard 上,我使用以下配置设置为 OSX 构建 wxWidgets:
../configure --with-cocoa --with-macosx-version-min=10.6 --enable-unicode --disable-共享 --enable-debug --enable-universal-binaries
重要的选项是
--with-cocoa
和--enable-universal-binaries
使其在 64 位 OSX 下工作。之后只需再次执行
make
即可编译wxWidgets。请注意,
/opt/bin/
中可能存在旧版本的 wxWidgets。由于新的 wxWidget 升级,我更喜欢将 wxWidgets 的编译版本放在我的主文件夹中,以密切关注所有文件。如果将其安装在系统路径中,您可能会失去概览。现在,您可能没有使用您想要使用的 wx-config 版本。要编译您自己的 wxWidget 应用程序,我建议创建您自己的 Makefile。
你的编译命令看起来已经很好了,但让我给你一个建议。在
--libs
尝试使用core
和base
等标志来保存所有 OSX 框架将添加到您的编译中。这是一个简单的 Makefile 示例,您可以根据需要使用。它还创建一个 OSX 可执行文件。
A while ago on Snow Leopard I used the following configuration settings to build wxWidgets for OSX:
../configure --with-cocoa --with-macosx-version-min=10.6 --enable-unicode --disable-shared --enable-debug --enable-universal-binaries
The important options are
--with-cocoa
and--enable-universal-binaries
to make it work under 64bit OSX.After this just do
make
to compile wxWidgets again.Be aware there could be an older version of wxWidgets in
/opt/bin/
. Because of new wxWidget upgrades I prefer to put the compiled version of wxWidgets in my home folder to keep an eye on all files. If you install it in your system paths you might lose the overview. Now it could happen you're not using the wx-config version you wanted to use.To compile your own wxWidget apps I recommend to create your own Makefile.
Your compiling command looks already good, but let me give you an advice. After
--libs
try using flags likecore
andbase
to keep save all OSX Frameworks will be added to your compilation.Here a simple Makefile example you can use if you want to. It also creates an OSX executable.