3

C++ Primer、第 5 版で C++ を学んでいます。

C++ 11 機能を備えた単純な C++ プログラムを clang++ でコンパイルしようとしていますが、有効なコードであるはずのコンパイル エラーが発生します。

これは例です:

#include <iostream>
#include <vector>
#include <string>

using namespace std;

int main(){
  int n = 0;
  auto *p = &n; //<-- this compiles  

  cout << *p << endl;

  vector<string> articles = {"a", "an", "the"}; //<-- this fails; copied from the book

  return 0;
}

そして、これは完全なエラーです:

$ clang++ -std=c++11 -v test.cpp -o test
clang version 3.2 (tags/RELEASE_32/final)
Target: x86_64-apple-darwin10.8.0
Thread model: posix
 "/usr/local/Cellar/llvm/3.2/bin/clang" -cc1 -triple x86_64-apple-macosx10.6.0 -emit-obj -mrelax-all -disable-free -main-file-name test.cpp -mrelocation-model pic -pic-level 2 -mdisable-fp-elim -masm-verbose -munwind-tables -target-cpu core2 -target-linker-version 127.2 -v -resource-dir /usr/local/Cellar/llvm/3.2/bin/../lib/clang/3.2 -fmodule-cache-path /var/folders/pk/pkIeYbRaF-yeeUH3Q6Q5AE+++TI/-Tmp-/clang-module-cache -std=c++11 -fdeprecated-macro -fdebug-compilation-dir /Users/Oton/Desktop -ferror-limit 19 -fmessage-length 150 -stack-protector 1 -mstackrealign -fblocks -fobjc-runtime=macosx-10.6.0 -fobjc-dispatch-method=mixed -fobjc-default-synthesize-properties -fencode-extended-block-signature -fcxx-exceptions -fexceptions -fdiagnostics-show-option -fcolor-diagnostics -o /var/folders/pk/pkIeYbRaF-yeeUH3Q6Q5AE+++TI/-Tmp-/test-w65CaF.o -x c++ test.cpp
clang -cc1 version 3.2 based upon LLVM 3.2svn default target x86_64-apple-darwin10.8.0
#include "..." search starts here:
#include <...> search starts here:
 /usr/include/c++/4.2.1
 /usr/include/c++/4.2.1/i686-apple-darwin10/x86_64
 /usr/include/c++/4.2.1/backward
 /usr/include/c++/4.0.0
 /usr/include/c++/4.0.0/i686-apple-darwin8
 /usr/include/c++/4.0.0/backward
 /usr/local/include
 /usr/local/Cellar/llvm/3.2/bin/../lib/clang/3.2/include
 /usr/include
 /System/Library/Frameworks (framework directory)
 /Library/Frameworks (framework directory)
End of search list.
test.cpp:13:18: error: no matching constructor for initialization of 'vector<string>'
  vector<string> articles = {"a", "an", "the"};
                 ^          ~~~~~~~~~~~~~~~~~~
/usr/include/c++/4.2.1/bits/stl_vector.h:255:9: note: candidate constructor [with _InputIterator = const char *] not viable: no known conversion from
      'const char [4]' to 'const allocator_type' (aka 'const std::allocator<std::basic_string<char> >') for 3rd argument
        vector(_InputIterator __first, _InputIterator __last,
        ^
/usr/include/c++/4.2.1/bits/stl_vector.h:213:7: note: candidate constructor not viable: no known conversion from 'const char [2]' to 'size_type'
      (aka 'unsigned long') for 1st argument
      vector(size_type __n, const value_type& __value = value_type(),
      ^
/usr/include/c++/4.2.1/bits/stl_vector.h:201:7: note: candidate constructor not viable: allows at most single argument '__a', but 3 arguments were
      provided
      vector(const allocator_type& __a = allocator_type())
      ^
/usr/include/c++/4.2.1/bits/stl_vector.h:231:7: note: candidate constructor not viable: requires single argument '__x', but 3 arguments were provided
      vector(const vector& __x)
      ^
1 error generated.

私はMac、10.6.8を使用しています。オプション付きの自作でllvm/clangを構築しました:

brew install llvm -v --all-targets --rtti --shared --with-asan --with-clang --use-clang

私は何を間違っていますか?

4

2 に答える 2

6

このエラーは、初期化子リストを取る std::vector コンストラクターがないことを示しています。問題は、使用している標準ライブラリの実装が C++11 用に更新されていないことです。C++11 よりも何年も前に作成された libstdc++ の gcc 4.2 バージョンを使用しています。

C++11 用に更新されたライブラリに切り替える必要があります。libc++ がインストールされている場合は、フラグを使用するだけで済みます-stdlib=libc++。libc++ バイナリは OS X 10.6.8 の一部だと思いますが、ヘッダーも必要です。自作にレシピがあるかもしれませんし、http: //libcxx.llvm.org/からダウンロードして適切な場所に貼り付けて見つけて使用することもできます-stdlib=libc++

または、通常の C++ 標準ライブラリ ヘッダー (この場合は gcc 4.2 ヘッダー) を手動で除外し、-nostdinc++ヘッダーを貼り付ける場所にインクルード ディレクトリを手動で追加し、バイナリがある場所にライブラリ検索ディレクトリを追加します (ビルドすることもできます)。バイナリを自分で) リンク フラグを追加します-lc++

于 2013-02-13T23:26:16.823 に答える
5

これが良い基準かどうかはわかりませんが、私自身の質問に答えます。これが他の人に役立つことを願っています。

(初心者なので間違っていたら指摘お願いします。)

上記の例をビルドする唯一の方法は次のとおりです。

-std=c++11 -stdlib=libc++ -nostdinc++ -I/path/to/new/libcxx/include

問題は、他の人がここで言っているように、gcc のバージョンが非常に古い Snow Leopard です。上記のオプションを使用すると、 が原因でリンクに失敗しますld: library not found for -lc++

そのため、最近のバージョンの libcxx をビルドする必要がありました。macports ポートはありますが、自作のレシピはありません。手動で作成しましたが、成功するためにいくつかのことが必要でした。

homebrew で llvm をインストールし、パスが適切に設定されていると仮定します: which clang++ -> /usr/local/bin/clang++.

最初に libc++abi を取得します。svn co http://llvm.org/svn/llvm-project/libcxxabi/trunk libcxxabi

次に libc++: を取得しますsvn co http://llvm.org/svn/llvm-project/libcxx/trunk libcxx

編集libc++abi/lib/buildit

EXTRA_FLAGS="...
             -I/usr/llvm-gcc-4.2/lib/gcc/i686-apple-darwin10/4.2.1/include \
             -I/PATH/TO/libcxx/include"
(Add the last two lines, note that the last include should point to the include folder inside libcxx from svn.)

LDSHARED_FLAGS="...-install_name /usr/local/lib/libc++abi.dylib"
(My libc++abi.dylib will reside inside /usr/local/lib.)

libc++abi をビルドします。

- cd libc++abi/lib 
- export TRIPLE=-apple-
- ./buildit

すべてのサードパーティ ライブラリを自作で管理したいので、これはオプションです。

- mkdir -p /usr/local/Cellar/libc++abi/HEAD/lib
- mkdir -p /usr/local/Cellar/libc++abi/HEAD/include
- cp -a *.dylib /usr/local/Cellar/libc++abi/HEAD/lib/
- cp -R /path/to/libcxxabi/include/ /usr/local/Cellar/libc++abi/HEAD/include/libc++abi
  (Note the / after include!)
- brew link libc++abi

今編集libc++/lib/buildit

if [ "$MACOSX_DEPLOYMENT_TARGET" == "10.6" ]
then
    EXTRA_FLAGS="... -I/usr/local/include/libc++abi"
    LDSHARED_FLAGS="...
        -install_name /usr/local/lib/libc++.1.dylib \
        ..."

libc++ をビルドします。

- cd libc++abi/lib 
- export TRIPLE=-apple-
- export MACOSX_DEPLOYMENT_TARGET=10.6
- ./buildit

そして再びオプション:

- mkdir -p /usr/local/Cellar/libc++/HEAD/lib
- cp -a *.dylib /usr/local/Cellar/libc++/HEAD/lib
- mkdir -p /usr/local/Cellar/libc++/HEAD/include
- cp -R /path/to/libcxx/include/ /usr/local/Cellar/libc++/HEAD/include/libc++
- brew link libc++

これで、前の例を次のようにビルドできます。

clang++ -std=c++11 -stdlib=libc++ -nostdinc++ -I/usr/local/include/libc++ -O2 -g -v test.cpp -o test 
于 2013-02-14T11:13:41.423 に答える