web-dev-qa-db-ja.com

Xcode 4.3およびC ++ 11インクルードパス

Xcode 4.3をインストールし、このC++ 11プログラムをテストしたいと思います。

#include <type_traits>

int main()
{
}

ただし、type_traitsヘッダーは見つかりません。

~ $ c++ -o test main.cpp
main.cpp:1:10: fatal error: 'type_traits' file not found
#include <type_traits>
         ^
1 error generated.

私は正しいコンパイラを使用しているようです:

~ $ c++ -v
Apple clang version 3.1 (tags/Apple/clang-318.0.45) (based on LLVM 3.1svn)
Target: x86_64-Apple-darwin11.3.0
Thread model: posix

私はデフォルトのインクルードパスをチェックしました:

~ $ `c++ --print-prog-name=cc1plus` -v
ignoring nonexistent directory "/usr/include/c++/4.2.1/i686-Apple-darwin11"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2/lib/gcc/i686-Apple-darwin11/4.2.1/../../../../i686-Apple-darwin11/include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/include/c++/4.2.1
 /usr/include/c++/4.2.1/backward
 /usr/local/include
 /Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2/lib/gcc/i686-Apple-darwin11/4.2.1/include
 /usr/include
 /System/Library/Frameworks (framework directory)
 /Library/Frameworks (framework directory)
End of search list.

上記のパスには実際にtype_traitsヘッダーが含まれていません。検索コマンドにより、次の2つの場所にあることがわかります。

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/usr/include/c++/v1/type_traits
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/c++/v1/type_traits

どうやら私のコンパイラのデフォルトに何か問題があります。 type_traitsヘッダーが正しい場所にあるようにコンパイラーを構成するにはどうすればよいですか?

更新

@seheの提案に従ってください。

~ $ clang++ -v -fshow-source-location -std=c++0x main.cpp
Apple clang version 3.1 (tags/Apple/clang-318.0.45) (based on LLVM 3.1svn)
Target: x86_64-Apple-darwin11.3.0
Thread model: posix
 "/usr/bin/clang" -cc1 -triple x86_64-Apple-macosx10.7.3 -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -main-file-name main.cpp -pic-level 1 -mdisable-fp-elim -relaxed-aliasing -masm-verbose -munwind-tables -target-cpu core2 -target-linker-version 128.2 -v -resource-dir /usr/bin/../lib/clang/3.1 -fmodule-cache-path /var/folders/d6/sf96r2ps457230x3v8yj52s40000gp/T/clang-module-cache -std=c++0x -fdeprecated-macro -fdebug-compilation-dir /Users/francis -ferror-limit 19 -fmessage-length 174 -stack-protector 1 -fblocks -fobjc-runtime-has-arc -fobjc-runtime-has-weak -fobjc-dispatch-method=mixed -fcxx-exceptions -fexceptions -fdiagnostics-show-option -fcolor-diagnostics -o /var/folders/d6/sf96r2ps457230x3v8yj52s40000gp/T/main-sUcT7k.o -x c++ main.cpp
clang -cc1 version 3.1 based upon llvm 3.1svn default target x86_64-Apple-darwin11.3.0
ignoring nonexistent directory "/usr/include/c++/4.2.1/i686-Apple-darwin10/x86_64"
ignoring nonexistent directory "/usr/include/c++/4.0.0"
ignoring nonexistent directory "/usr/include/c++/4.0.0/i686-Apple-darwin8/"
ignoring nonexistent directory "/usr/include/c++/4.0.0/backward"
#include "..." search starts here:
#include <...> search starts here:
 /usr/include/c++/4.2.1
 /usr/include/c++/4.2.1/backward
 /usr/local/include
 /usr/bin/../lib/clang/3.1/include
 /usr/include
 /System/Library/Frameworks (framework directory)
 /Library/Frameworks (framework directory)
End of search list.
main.cpp:1:10: fatal error: 'type_traits' file not found
#include <type_traits>
         ^
1 error generated.

Xcode.appバンドルをまったく見ていません。

考えられる理由の1つは、Xcodeと「Xcodeのコマンドラインツール」の両方をインストールしたことです。後者は、/usrフォルダーにバイナリをインストールしました。

type_traitsヘッダーは/usr/includeにもあることがわかりました。

~ $ find /usr/include -type f -name type_traits
/usr/include/c++/4.2.1/tr1/type_traits
/usr/include/c++/v1/type_traits
25
StackedCrooked

必要なもの:

-std=c++0x

c ++ 11を選択します。そして、あなたは必要です:

-stdlib=libc++

libc ++ を選択します。デフォルトでは、gcc 4.2に同梱されているstd :: libが使用されます。これはC++ 11より前のバージョンです。

25
Howard Hinnant

Howard Hinnantの回答(修正あり)は、コマンドラインの正解です。

Xcode内で新しいC++ 11標準ライブラリを使用するには:

  • プロジェクトの「ビルド設定」タブで、「Apple LLVM Compiler 4.1-Language」までスクロールします
  • 設定「C++言語方言」を「C++ 11 [-std = c ++ 11]」に設定します
  • 「C++標準ライブラリ」の設定を「libc ++(C++ 11をサポートするLLVM標準C++ライブラリ)」に設定します。
6
John Brewer