[cfe-dev] Can't build CLang with CLang on FreeBSD
Jay Sullivan
notfed at gmail.com
Fri Apr 16 08:41:58 PDT 2010
> ----Here's the outputs for the builds:----
>
> Debug (build fails)
> $ env CC=clang CXX=clang++ ./configure --enable-profiling
> Output: http://petio.org/2010/04/16/clang_debug_configure
> $ gmake VERBOSE=1
> Output: http://petio.org/2010/04/16/clang_debug_make
>
> Debug+Profile (build fails)
> $ env CC=clang CXX=clang++ ./configure --enable-profiling
> Output: http://petio.org/2010/04/16/clang_debug_profile_configure
> $ gmake VERBOSE=1
> Output: http://petio.org/2010/04/16/clang_debug_profile_make
>
> Release (build fails)
> $ env CC=clang CXX=clang++ ./configure --enable-optimized --enable-profiling
> Output: http://petio.org/2010/04/16/clang_release_configure
> $ gmake VERBOSE=1
> Output: http://petio.org/2010/04/16/clang_release_make
>
> Release+Profile (build fails)
> $ env CC=clang CXX=clang++ ./configure --enable-optimized --enable-profiling
> Output: http://petio.org/2010/04/16/clang_release_profile_configure
> $ gmake VERBOSE=1
> Output: http://petio.org/2010/04/16/clang_release_profile_make
>
> --
> Jay Sullivan
>
Oops, I got the options wrong. I meant to say :
Debug (build fails)
$ env CC=clang CXX=clang++ ./configure
Debug+Profile (build fails)
$ env CC=clang CXX=clang++ ./configure --enable-profiling
Release (build fails)
$ env CC=clang CXX=clang++ ./configure --enable-optimized
Release+Profile (build fails)
$ env CC=clang CXX=clang++ ./configure --enable-optimized --enable-profiling
The output logs are still correct; I just made a typo in the email.
--
Jay Sullivan
More information about the cfe-dev
mailing list