3 votes

clang++ mac os x c++11 linker issue

J'ai un problème pour compiler un programme avec "-std=c++11 -stdlib=libc++" sous mac os x 10.8.3 en utilisant clang++ depuis xcode 4.6.2.

Lorsque j'essaie d'utiliser std::mem_fn() ou (déprécié) std::mem_fun_ref(), j'obtiens une erreur de linker "symbol(s) not found". Le même code (avec std::mem_fun_ref au lieu de std::mem_fn) se compile et se lie sans aucun problème sous la norme c++03.

Si j'appelle la même fonction membre sur un objet sans y faire référence via mem_fn ou mem_fun_ref, le programme se compile et s'exécute sans aucun problème. Est-ce un problème de clang++, un problème de mac os, ou est-ce que je fais quelque chose de mal ?

Le code :

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

using namespace std;

int main(int argc, char **arvc)
{

  /* The beginning of the function compiles without any errors */

  string str = "It's a test)";
  if (str.empty())
  {
    cout << "String is empty!!!" << endl;
  }
  vector<string> v1;
  v1.push_back("str1");
  v1.push_back("str2");
  v1.push_back("");
  v1.push_back("str4");
  v1.push_back("");
  v1.push_back("str6");

  /* The code after this point leads to linker error  */

  vector<string>::iterator it = remove_if(v1.begin(), v1.end(), mem_fn(&string::empty));
  v1.erase(it, v1.end());
  for (it = v1.begin(); it < v1.end(); ++it)
  {
    cout << "   '" << *it << "'" << endl;
  }

  return 0;
}

Le journal de la compilation :

$ xcrun clang++ -v -std=c++11 -stdlib=libc++ ../src/test_cxx.cpp
Apple LLVM version 4.2 (clang-425.0.28) (based on LLVM 3.2svn)
Target: x86_64-apple-darwin12.3.0
Thread model: posix
 "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.8.0 -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -main-file-name test_cxx.cpp -pic-level 2 -mdisable-fp-elim -masm-verbose -munwind-tables -target-cpu core2 -target-linker-version 136 -v -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/4.2 -isysroot / -fmodule-cache-path /var/folders/nz/0x05d6p14gddzxxn8ymnn74c0000gn/T/clang-module-cache -stdlib=libc++ -std=c++11 -fdeprecated-macro -fdebug-compilation-dir /Volumes/Work/projects/web/sp3/build -ferror-limit 19 -fmessage-length 80 -stack-protector 1 -mstackrealign -fblocks -fobjc-runtime=macosx-10.8.0 -fobjc-dispatch-method=mixed -fobjc-default-synthesize-properties -fcxx-exceptions -fexceptions -fdiagnostics-show-option -fcolor-diagnostics -o /var/folders/nz/0x05d6p14gddzxxn8ymnn74c0000gn/T/test_cxx-kAQ3wk.o -x c++ ../src/test_cxx.cpp
clang -cc1 version 4.2 based upon LLVM 3.2svn default target x86_64-apple-darwin12.3.0
ignoring nonexistent directory "/usr/include/c++/v1"
#include "..." search starts here:
#include <...> search starts here:
 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/c++/v1
 /usr/local/include
 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/4.2/include
 /usr/include
 /System/Library/Frameworks (framework directory)
 /Library/Frameworks (framework directory)
End of search list.
 "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.8.0 -syslibroot / -o a.out /var/folders/nz/0x05d6p14gddzxxn8ymnn74c0000gn/T/test_cxx-kAQ3wk.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/4.2/lib/darwin/libclang_rt.osx.a
Undefined symbols for architecture x86_64:
  "std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::empty() const", referenced from:
      _main in test_cxx-kAQ3wk.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

5voto

Howard Hinnant Points 59526

C'est un bogue dans clang. Je ne peux pas trouver un rapport de bogue à ce sujet. Un rapport de bogue serait très apprécié.

Le problème est que string::empty est marqué "always_inline", mais aussi l'élément string est marqué extern, ce qui signifie qu'il a déjà été instancié pour vous.

Pour une raison quelconque, lorsque nous avons cette combinaison, et que vous formez un pointeur de fonction membre vers le membre always_inline, clang refuse de le contourner pour qu'il puisse pointer vers lui. Il ne refuse que si l'instanciation est marquée comme extern.

Si vous désactivez soit l'extern, soit le always_inline, alors le code fonctionnera. Vous pouvez désactiver le premier en incluant ceci dans "C++ Other Flags" :

-D'_LIBCPP_EXTERN_TEMPLATE(...)='

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X