Hi, There's a list of appropriate gcc versions and command line settings here:
http://llvm.org/docs/GettingStarted.html#brokengcc --enable-optimized didn't work for me in my previous try. I think I was hit by this: "GCC 3.4.2 on linux/x86 (32-bit): GCC miscompiles portions of the code generator at -O3, as with 3.4.0. However gcc 3.4.2 (unlike 3.4.0) correctly compiles LLVM at -O2. A work around is to build release LLVM builds with "make ENABLE_OPTIMIZED=1 OPTIMIZE_OPTION=-O2 ..." I removed --enable-optimized and I got it to build. Maybe you want to try with ENABLE_OPTIMIZED=1 and OPTIMIZE_OPTION=-O2 Cheers, Antonio 2010/11/1 Apostolos Syropoulos <[email protected]>: > > Hello, > > I followed your instructions and I successfully compiled llvm but > in the end I got the following message: > > llvm[0]: ***** Completed Debug+Asserts Build > llvm[0]: ***** Note: Debug build can be 10 times slower than an > llvm[0]: ***** optimized build. Use make ENABLE_OPTIMIZED=1 to > llvm[0]: ***** make an optimized build. Alternatively you can > llvm[0]: ***** configure with --enable-optimized. > > > I will try again tomorrow with --enable-optimized. > > A.S. > > > ---------------------- > Apostolos Syropoulos > Xanthi, Greece > > > > > > _______________________________________________ > Discuss mailing list > [email protected] > http://lists.illumos.org/m/listinfo/discuss > _______________________________________________ Discuss mailing list [email protected] http://lists.illumos.org/m/listinfo/discuss
