Essayez d'installer openMP/Clang sur mac

Je vais avoir des problèmes lors de l'installation openMP sur mon mac (10.9.1).

L'installation des directions que je suis en train de suivre êtes ici: http://clang-omp.github.io/

J'ai sucessfuly construit clang avec openMP support en suivant les instructions sur: http://clang.llvm.org/get_started.html

mon fichier de build est dans ce répertoire après ces étapes
/Utilisateurs/Mitchell/Desktop/PriceWithDocsAndSampleJob130506/construire

Maintenant que je veux l'utiliser nouvellement installé le compilateur, je suis en train d'ajouter à mon parcours à l'aide de ces commandes:

$ export PATH=/install/prefix/bin:$PATH
$ export C_INCLUDE_PATH=/install/prefix/include:/Users/Mitchell/Desktop/PriceWithDocsAndSampleJob130506/build/include:$C_INCLUDE_PATH
$ export CPLUS_INCLUDE_PATH=/install/prefix/include:/Users/Mitchell/Desktop/PriceWithDocsAndSampleJob130506/build/include:$CPLUS_INCLUDE_PATH
$ export LIBRARY_PATH=/install/prefix/lib:/Users/Mitchell/Desktop/PriceWithDocsAndSampleJob130506/build/lib:$LIBRARY_PATH
$ export DYLD_LIBRARY_PATH=/install/prefix/lib:/Users/Mitchell/Desktop/PriceWithDocsAndSampleJob130506/build/lib:$DYLD_LIBRARY_PATH

mais quand j'essaie de compiler un fichier avec -fopenmp-je obtenir par exemple:

g++ -fopenmp -O -c ParamsCycleManagement.cpp -o ParamsCycleManagement.o
clang: warning: argument unused during compilation: '-fopenmp'
In file included from ParamsCycleManagement.cpp:22:
In file included from ./ParamsCycleManagement.h:33:
In file included from ./ExtendCycle.h:26:
In file included from ./ReadPairFilter.h:36:
./ScoredSeqCollectionBwt.h:31:10: fatal error: 'omp.h' file not found

Suis-je ajouter à mon chemin de manière incorrecte ou fait quelque chose de mal? Merci pour toute aide.

OriginalL'auteur Mitchell | 2013-12-27