问题
我在 QT Creator 中实现 g++48 编译器时遇到问题。我使用 MacPorts 构建了这个编译器。QT Creator 似乎忽略了我的编译器并默认使用 xcode g++42。如何正确设置编译器来覆盖它?
故障排除
您是否正确安装了 gcc/g++ 并且它是主要选择的吗? 通过执行以下操作,我确保 gcc 已正确安装并且路径正确:
:~ which gcc:
/opt/local/bin/g++
:~ g++ --version:
g++ (MacPorts gcc48 4.8.1_3) 4.8.1
你用的是什么系统? 我的系统:Mac OSX 10.9 Mavericks。QT Creator 2.8.1 基于 QT 5.1.0。
工具链设置:在 QT Creator 中,我通过进入 Compilers_Add_GCC 并放入编译器路径来指定自定义 GCC 编译器/opt/local/bin/g++
。如果我将鼠标悬停在 *.cpp 中的任何 #include 行上,则它会正确显示路径/opt/local/include/gcc48/{headerName}
。我怀疑这个问题与 QT Mkspecs 有关,但我真的不明白这是什么或如何为我的自定义 gcc 安装编写自定义的(如有必要)。这可以解释吗?
QT Creator 中更新了套件? 该套件已按照此处的说明进行更新:Qt Creator use another GCC Version located in another Place
为什么您怀疑正在使用 g++42?这是基于我检查构建日志文件得到的结果。
12:30:19: Running steps for project untitled...
12:30:19: Configuration unchanged, skipping qmake step.
12:30:19: Starting: "/usr/bin/make"
/Applications/Xcode.app/Contents/Developer/usr/bin/g++ -c -pipe -std=c++11 -g -gdwarf-2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk -mmacosx-version-min=10.6 -Wall -W -fPIE -DQT_QML_DEBUG -DQT_DECLARATIVE_DEBUG -I/Users/raymondvaldes/Qt/5.1.0/clang_64/mkspecs/macx-g++ -I/Users/raymondvaldes/Documents/code/untitled -I. -o main.o /Users/raymondvaldes/Documents/code/untitled/main.cpp
/Users/raymondvaldes/Documents/code/untitled/main.cpp:4:10: fatal error: 'random' file not found
#include <random>
^
1 error generated.
make: *** [main.o] Error 1
12:30:20: The process "/usr/bin/make" exited with code 2.
Error while building/deploying project untitled (kit: gcc48)
When executing step 'Make'
12:30:20: Elapsed time: 00:01.
和
RAYMONDs-MacBook-Air:~ raymondvaldes$ /Applications/Xcode.app/Contents/Developer/usr/bin/g++ --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
Target: x86_64-apple-darwin13.0.0
Thread model: posix
最后,这是我的简单工作示例:
#include <iostream>
#include <complex>
#include <cmath>
#include <random>
int main()
{
std::cout << "Hello World!" << std::endl;
return 0;
}
和我的专业档案。
cache()
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
QMAKE_CXXFLAGS += -std=c++11
SOURCES += main.cpp
谢谢你。