search for: path_to_wherever_llvm_gcc_lives

Displaying 2 results from an estimated 2 matches for "path_to_wherever_llvm_gcc_lives".

2009 May 26
0
[LLVMdev] LLVM-gcc for Ada
...vm-gcc is based on gcc 4.2. > > So it compiled version 4.2 and >> so gnatbind and gnatlink does not work because they are version 4.1.3. > > When you built llvm-gcc, you also built appropriate versions of gnatbind > and gnatmake. Don't mix versions: use > export PATH=path_to_wherever_llvm_gcc_lives:$PATH > before doing stuff. Since the gnatbind and gnatmake you built should be > there too, you will use consistent versions and all will be fine. > >> If I compile the same program using gcc of the gnat2007, the ali file >> says that the version is 4.1.3, the right one. >...
2009 May 26
1
[LLVMdev] LLVM-gcc for Ada
Duncan Sands wrote: > Hi Andre, > > >> In file included from ../../gcc/llvm-backend.cpp:23: >> ../../gcc/llvm-internal.h:31: fatal error: vector: No such file or directory >> compilation terminated. >> > > line 31 of llvm-internal.h is: > > #include <vector> > > so if that's failing then your C++ compiler is somehow borked. >