Displaying 4 results from an estimated 4 matches for "binutils220".
2012 Jul 15
3
[LLVMdev] Compiling llvm and Clang on Linux
...r=/usr/share/man
--infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla
--enable-bootstrap --enable-shared --enable-threads=posix
--enable-checking=release --with-system-zlib --enable-__cxa_atexit
--disable-libunwind-exceptions --disable-gnu-unique-object
--with-as=/usr/libexec/binutils220/as --enable-languages=c,c++,fortran
--disable-libgcj
--with-mpfr=/builddir/build/BUILD/gcc-4.4.6-20110824/obj-i386-redhat-linux6E/mpfr-install/
--with-ppl=/builddir/build/BUILD/gcc-4.4.6-20110824/obj-i386-redhat-linux6E/ppl-install
--with-cloog=/builddir/build/BUILD/gcc-4.4.6-20110824/obj-i386-re...
2012 Jul 15
0
[LLVMdev] Compiling llvm and Clang on Linux
...nfodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla
> --enable-bootstrap --enable-shared --enable-threads=posix
> --enable-checking=release --with-system-zlib --enable-__cxa_atexit
> --disable-libunwind-exceptions --disable-gnu-unique-object
> --with-as=/usr/libexec/binutils220/as --enable-languages=c,c++,fortran
> --disable-libgcj
> --with-mpfr=/builddir/build/BUILD/gcc-4.4.6-20110824/obj-i386-redhat-linux6E/mpfr-install/
>
> --with-ppl=/builddir/build/BUILD/gcc-4.4.6-20110824/obj-i386-redhat-linux6E/ppl-install
>
> --with-cloog=/builddir/build/BUILD/gc...
2012 Jul 15
0
[LLVMdev] Compiling llvm and Clang on Linux
PS: Do you actually have gcc-4.4 installed and in your path? What do the
commands
gcc44 -v
and
g++44 -v
output?
On 15/07/12 10:59, Duncan Sands wrote:
> Hi Sitvanit,
>
>> I tried
>>
>> CC=gcc44 CXX=g++44 ../llvm/configure
>>
>> and got
>>
>> CC=gcc44: Command not found
>>
>> So the syntax is indeed as wriiten in the help.
>
2012 Jul 15
2
[LLVMdev] Compiling llvm and Clang on Linux
Hi Sitvanit,
> I tried
>
> CC=gcc44 CXX=g++44 ../llvm/configure
>
> and got
>
> CC=gcc44: Command not found
>
> So the syntax is indeed as wriiten in the help.
actually, no, this just means that you are using a shell that doesn't support
this syntax. What shell are you using? Try
export CC=gcc44
export CXX=g++44
../llvm/configure
Ciao, Duncan.
>