Hi Mark, It sounds like even though you have llvm-3.7.0 built, you are still somehow using the llvm-3.5 on your system. Maybe this is because you system is earlier in your $PATH. iInn the wiki instructions, I had placed the newly installed llvm-3.7.0 at the *end* of the $PATH. Maybe your existing llvm is conflicting.
To fix, rather than: export PATH=$PATH:~/llvm/build/bin export CC=clang export CXX=clang++ can you instead try: export PATH=~/llvm/build/bin:$PATH export CC=clang export CXX=clang++ and report back? This command places the new 3.7.0 llvm at the beginning of your $PATH, giving it priority over the old 3.5 one you have installed, and should help ensure you use the new 3.7.0 llvm/clang. Best regards, Patryk
_______________________________________________ Discuss-gnustep mailing list [email protected] https://lists.gnu.org/mailman/listinfo/discuss-gnustep
