<div dir="ltr"><div class="gmail_extra">Hi Ivan,<br><br><div class="gmail_quote">On Thu, Apr 3, 2014 at 11:56 PM, Ivan A. Kosarev <span dir="ltr"><<a href="mailto:ivan@ivan-labs.com" target="_blank">ivan@ivan-labs.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello Alexey,<br>
<br>
I just worked out the config for the FreeBSD 9.2 buildbot (follows below). One important thing about this config is that the C++11 headers are set up at the /usr/include/c++/v1 directory--it's where clang expects them to be on FreeBSD, so no need for the "-I" options in the CMAKE_CXX_FLAGS variable. Unfortunately, clang (both v3.3 used to be the default compiler on FreeBSD 9.2 and recent revisions) do not add the libcxxrt run-time lib to ld options what means we have to ask cmake to add it for us (see the cmake invocation at the end of the config list). This approach let us build and run the common sanitizers tests with no unexpected failures. The only issue is that the HAVE_UNIT64_T & Co. tests fail to link due to omitted reference to libcxxrt. The quick fix is trivial:<br>

<br>
---<br>
Index: cmake/config-ix.cmake<br>
==============================<u></u>==============================<u></u>=======<br>
--- cmake/config-ix.cmake    (revision 205543)<br>
+++ cmake/config-ix.cmake    (working copy)<br>
@@ -17,6 +17,7 @@<br>
   # Used by check_symbol_exists:<br>
   set(CMAKE_REQUIRED_LIBRARIES m)<br>
 endif()<br>
+list(APPEND CMAKE_REQUIRED_LIBRARIES ${LLVM_CONFIG_TEST_LIBRARIES})<br>
<br>
 # Helper macros and functions<br>
 macro(add_cxx_include result files)<br>
---<br>
<br>
Do you think this fix would make sense for building llvm on other platforms? I mean, do you think it looks acceptable to be sent for review and commit? Please let me know.<br></blockquote><div><br></div><div>Personally, I think it's fine to just add "cxxrt" to CMAKE_REQUIRED_LIBRARIES in config-ix.cmake on the platforms that require it (FreeBSD 9.2?). </div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Also, I believe I should prepare a patch that adds the -lcxxrt option for a linker on FreeBSD so one day we can build llvm on FreeBSD without all these tricky things.<br></blockquote><div><br></div><div>Yes, please!</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
The config is this:<br>
---<br>
# The proposed buildbot config for FreeBSD 9.2<br>
<br>
# we have to install these from ports as the packages versions are too old<br>
cd /usr/ports/devel/subversion<br>
sudo make BATCH=1 install clean<br>
<br>
cd /usr/ports/devel/libc++<br>
sudo make BATCH=1<br>
sudo make PREFIX=/usr install clean<br>
<br>
cd /usr/src/lib/libcxxrt<br>
sudo make<br>
sudo make install clean<br>
<br>
cd /usr/ports/shells/bash<br>
sudo make BATCH=1 install clean<br>
<br>
cd /usr/ports/textproc/gnugrep<br>
sudo make BATCH=1 install clean<br>
<br>
wget -c <a href="ftp://ftp.gnu.org/gnu/binutils/binutils-2.24.tar.gz" target="_blank">ftp://ftp.gnu.org/gnu/<u></u>binutils/binutils-2.24.tar.gz</a><br>
./configure --prefix=/usr --enable-language=c,c++<br>
gmake<br>
sudo gmake install<br>
<br>
# these are necessary to pass LLVM :: BugPoint/compile-custom.ll<br>
sudo pkg install gcc<br>
sudo pkg install python<br>
<br>
CC=clang CXX=clang++ cmake \<br>
    -DCMAKE_CXX_FLAGS="-std=c++11 -stdlib=libc++" \<br>
    -DCMAKE_CXX_COMPILER_WORKS=1 \<br></blockquote><div> </div><div>^^^</div><div>Why do you need this line?</div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

    -DCMAKE_EXE_LINKER_FLAGS="-<u></u>lcxxrt" \<br>
    -DLLVM_CONFIG_TEST_LIBRARIES="<u></u>cxxrt" \<br>
    ../llvm<br>
---<br>
<br>
Thanks!<span class="HOEnZb"><font color="#888888"><br>
<br>
-- <br>
<br>
</font></span></blockquote></div><br><br clear="all"><div><br></div>-- <br><div>Alexey Samsonov, MSK</div>
</div></div>