In my previous attempts building LLVM and gnustep, I always fell into some bugs that is preventing me from success. Now I am using a bootstrap-then-discard to try installing LLVM properly on Ubuntu 12.04 (oh yes I love this being a LTS)
Steps to go: install clang from Ubuntu sources: $ sudo apt-get install clang # I got clang 3.0 here $ ./get-llvm # a little script to grab LLVM from svn and build it (no install yet) $ sudo apt-get remove clang # discarding the clang 3.0 used to bootstrap $ sudo apt-get autoremove # clean off LLVM debris came with clang 3.0 $ sudo make install # now I got a working clang 3.3 built using clang here. $ ./get-gnustep # another stuff grabbing script. The flags used to configure LLVM is "--disable-assertions --enable-optimizations --prefix=/usr" 发自我的 iPad _______________________________________________ Etoile-discuss mailing list [email protected] https://mail.gna.org/listinfo/etoile-discuss
