search for: extralangs

Displaying 15 results from an estimated 15 matches for "extralangs".

Did you mean: extra_args
2010 Dec 13
1
[LLVMdev] problems while building llvm-gcc 4.2.2-8
...ake ENABLE_OPTIMIZED=1 It succeded. Then, I tried to built llvm-gcc in an 'obj' directory different from the soucre directory, using: $./llvm-gcc-4.2-2.8.source/configure --prefix=`pwd`/../install --program-prefix=llvm- --enable-llvm=/home/qali/install/llvm-2.8 --enable-languages=c,c++$EXTRALANGS --target=i686-pc-linux-gnu --with-tune=generic --with-arch=pentium4 $make LLVM_VERSION_INFO=2.8 Here came the error: /home/qali/install/llvm_gcc/obj/./gcc/as: line 2: exec: -Q: invalid option exec: usage: exec [-cl] [-a name] [command [arguments ...]] [redirection ...] make[2]: *** [crtbegin...
2007 Aug 24
1
[LLVMdev] Documentation error in http://llvm.org/docs/LinkTimeOptimization.html
.../docs/CFEBuildInstrs.html to Subversion HEAD (by virtue of an "svn co"). Then you're supposed to look at README.LLVM. And there you're told to configure like this: ../llvm-gcc4-x.y.source/configure --prefix=`pwd`/../install \ --enable-llvm=$LLVMOBJDIR --enable-languages=c,c++$EXTRALANGS $TARGETOPTIONS (You can check this at http://llvm.org/svn/llvm-project/llvm-gcc-4.0/trunk/README.LLVM) And if I follow this part of the documentation, then I don't get an "llvm-gcc4". So either this documentation or the other one should be fixed, because they're out-of-sync....
2008 Oct 10
3
[LLVMdev] 2.4 Pre-release (v1) Available for Testing
LLVMers, The 2.4 pre-release is available for testing: http://llvm.org/prereleases/2.4/ If you have time, I'd appreciate anyone who can help test the release. Please do the following: 1) Download/compile llvm source, and either compile llvm-gcc source or use llvm-gcc binary. 2) Run make check, send me the testrun.log 3) Run "make TEST=nightly report" and send me the
2006 Aug 09
2
[LLVMdev] llvm 1.8 release notes draft
Thanks all, I've incorporated all the feedback so far: http://llvm.org/ChrisLLVM/projects/llvm-www/releases/1.8/docs/ReleaseNotes.html -Chris On Tue, 8 Aug 2006, Bil wrote: > On Aug 8, 2006, at 10:28 AM, Chris Lattner wrote: >> >> Hi All, >> >> Here's the first draft of the LLVM 1.8 release notes. Please take a look >> and send me any comments
2006 Aug 09
0
[LLVMdev] llvm 1.8 release notes draft
one more misspelling: in readme.llvm from llvm-gcc4 front-end source directory there is the following line (51): $ ../llvm-gcc4-x.y.source/configure --prefix=`pwd`/../install/ --enable-llvm=$LLVMOBJDIR --enable-languages=c,c++$EXTRALANGS $TARGETOPTIONS the value of the --prefix key ends with slash and it's not right. at least the front-end fails to build under cygwin because one more slash is appended automatically by building script. glad if it'll be helpful to somebody. thanks -------------- next part -------------- An...
2007 Aug 24
0
[LLVMdev] Documentation error in http://llvm.org/docs/LinkTimeOptimization.html
On Aug 24, 2007, at 1:45 PM, Holger Schurig wrote: > In the gray block below "Example of link time optimization" there are > some source files and then a list of commands to execute: > > $ llvm-gcc4 --emit-llvm -c a.c -o a.o > $ llvm-gcc4 -c main.c -o main.o > $ llvm-gcc4 a.o main.o -o main > > 1) in current LLVM (e.g. llvm itself, cfe, llvm-gcc-4.0) no binary
2008 Dec 29
0
[LLVMdev] Error when attempting to build llvm-gcc-1.5 on Mac OS X 10.5.6
2008/12/28 Elvis Dowson <elvis.dowson at mac.com> > Where can I get gccas ? I am running Mac OS X 10.5.6 and I get the > following error: > gccas is one of the LLVM tools; you have to build them before building llvm-gcc and you should configure llvm-gcc with the --enable-llvm=[...] flag unless the LLVM tools are in your PATH. See
2008 Jan 14
0
[LLVMdev] Multiple definitions of _floor_log2
...e tar file for the 4.2 version. - I built llvm (but not the optimized version) - I untarred the src for llvm-gcc4.2-2.1, made the proper directories and ran ../llvm-gcc4.2-2.1.source/configure --prefix=/seth/courses/745/srcs/llvm-gcc/install \ --enable-llvm=$LLVMOBJDIR --enable-languages=c,c++$EXTRALANGS --enable-checking and then make It chugs along for quite some time and then gets the following when trying to link cc1-dummy.exe: libbackend.a(toplev.o): In function `floor_log2': /seth/courses/745/srcs/llvm-gcc/obj/gcc/../../llvm-gcc4.2-2.1.source/gcc /toplev.c:578: multiple definition of `...
2008 Dec 28
0
[LLVMdev] Error when attempting to build llvm-gcc-4.2-2.4.source on Mac OS X 10.5.6
Hello, Elvis > $ ../src/configure --program-prefix=llvm- --disable-bootstrap > --enable-checking --enable-languages=c,c++ You haven't configured llvm-gcc properly. Please do read readme.llvm file. However, afair, Trident was LLVM 1.5-based, and it will require massive rewrite to use LLVM 2.x (bytecode format was also changed) -- With best regards, Anton Korobeynikov Faculty of
2008 Dec 29
3
[LLVMdev] Error when attempting to build llvm-gcc-1.5 on Mac OS X 10.5.6
Hi Anton, Where can I get gccas ? I am running Mac OS X 10.5.6 and I get the following error: xgcc: installation problem, cannot exec `gccas': No such file or directory make[2]: *** [libgcc/./_muldi3.o] Error 1 make[2]: *** Waiting for unfinished jobs.... xgcc: installation problem, cannot exec `gccas': No such file or directory make[2]: *** [libgcc/./_negdi2.o] Error 1 make[1]:
2008 Dec 28
3
[LLVMdev] Error when attempting to build llvm-gcc-4.2-2.4.source on Mac OS X 10.5.6
Hi, I'm new to LLVM and I want to setup the Trident Compiler system on Mac OS X. I downloaded the llvm-gcc-4.2-2.4.source.tar.gz package, created a build directory and ran the following command to configure $ ../src/configure --program-prefix=llvm- --disable-bootstrap --enable- checking --enable-languages=c,c++ $ make -j 2 Configure works fine, but I get the following error
2010 Mar 05
2
[LLVMdev] LLVM-gcc for Ada
...c-4.2 (svn) mkdir llvm-objects mkdir llvm-gcc-4.2-objects mkdir install mkdir install/lib Built and installed llvm without problems. In install/lib: ln -sf /usr/lib/libstdc++.6.dylib . ln -sf /usr/lib/libstdc++.6.dylib libstdc++.dylib export CC=/opt/gnat-gpl-2009/bin/gcc export CXX=/usr/bin/g++ EXTRALANGS=,ada,fortran,objc,obj-c++ export TRIPLE=i686-apple-darwin10 In llvm-gcc-4.2/gcc/Makefile.in change all occurrences of -mdynamic-no-pic to -dynamic-no-pic In config/mh-x86-darwin change BOOT_CFLAGS=-g -O2 -mdynamic-no-pic to BOOT_CFLAGS=-g -O2 -dynamic-no-pic in gcc/ada/ali.adb at line 1692 c...
2007 Aug 24
6
[LLVMdev] Documentation error in http://llvm.org/docs/LinkTimeOptimization.html
The web page "LLVM Link Time Optimization: Design and Implementation" contains errors. In the gray block below "Example of link time optimization" there are some source files and then a list of commands to execute: $ llvm-gcc4 --emit-llvm -c a.c -o a.o $ llvm-gcc4 -c main.c -o main.o $ llvm-gcc4 a.o main.o -o main 1) in current LLVM (e.g. llvm itself, cfe, llvm-gcc-4.0) no
2010 Feb 07
3
[LLVMdev] Help with Mac OS X 10.6.2 build
...install Notes for llvm-gcc frontend Follow the instructions for Darwin/X86 (32- and 64bit support), note the 32 bit instructions would not compile on 10.6.2: ../llvm-gcc4.2-2.6.source/configure --prefix=`pwd`/../install --program-prefix=llvm- --enable-llvm=$LLVMOBJDIR --enable-languages=c,c++$EXTRALANGS $TARGETOPTIONS --with-gxx-include-dir=/usr/include/c++/4.0.0 --build=$TRIPLE --host=$TRIPLE --target=$TRIPLE make $BUILDOPTIONS make install ln -sf /usr/lib/libstdc++.6.dylib `pwd`/../install/lib ln -sf /usr/lib/libstdc++.6.dylib `pwd`/../install/lib/libstdc++.dylib To build the toy program in the...
2010 Feb 07
0
[LLVMdev] Help with Mac OS X 10.6.2 build
...rontend > Follow the instructions for Darwin/X86 (32- and 64bit support), note > the 32 bit instructions would not compile on 10.6.2: > > ../llvm-gcc4.2-2.6.source/configure --prefix=`pwd`/../install > --program-prefix=llvm- --enable-llvm=$LLVMOBJDIR > --enable-languages=c,c++$EXTRALANGS $TARGETOPTIONS > --with-gxx-include-dir=/usr/include/c++/4.0.0 --build=$TRIPLE > --host=$TRIPLE --target=$TRIPLE > make $BUILDOPTIONS > make install > ln -sf /usr/lib/libstdc++.6.dylib `pwd`/../install/lib > ln -sf /usr/lib/libstdc++.6.dylib `pwd`/../install/lib/libstdc++.dylib &g...