search for: default_sysroot

Displaying 15 results from an estimated 15 matches for "default_sysroot".

2012 Apr 18
4
[LLVMdev] Build warnings and errors
This is what I get when I try to build: http://pastie.org/private/tkvb5dz3xmzbgyvi7w At the top, there are a ton of warnings emitted by tablegen building Hexagon .inc files. At the bottom there is a failure when building the clang driver, complaining about finding `DEFAULT_SYSROOT` I'm building with ninja (generated by CMake). --Sean Silva -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120418/70d0b17f/attachment.html>
2012 Apr 18
2
[LLVMdev] Build warnings and errors
...Chandler Carruth <chandlerc at google.com> wrote: > Jim's comment handles the tablegen stuff... > > On Wed, Apr 18, 2012 at 10:50 AM, Sean Silva <silvas at purdue.edu> wrote: > At the bottom there is a failure when building the clang driver, complaining about finding `DEFAULT_SYSROOT` > > I'm building with ninja (generated by CMake). > > Have you updated both LLVM and Clang? This was a relatively recent change, but everything is working on my end (and on others' ends)... Andy was having this problem yesterday as well. Did you end up figuring out why Andy?...
2015 Jul 16
4
[LLVMdev] [3.7 Release] RC1 has been tagged, Testing Phase I begins
...e thing by applying... > > Index: CMakeLists.txt > =================================================================== > --- CMakeLists.txt (revision 242425) > +++ CMakeLists.txt (working copy) > @@ -182,7 +182,7 @@ set(GCC_INSTALL_PREFIX "" CACHE PATH "Di > set(DEFAULT_SYSROOT "" CACHE PATH > "Default <path> to all compiler invocations for --sysroot=<path>." ) > > -set(CLANG_DEFAULT_OPENMP_RUNTIME "libgomp" CACHE STRING > +set(CLANG_DEFAULT_OPENMP_RUNTIME "libomp" CACHE STRING > "Default OpenMP...
2016 Dec 02
2
Failed to configure LLVM for use with Musl
...gure with the following options: CLANG_DEFAULT_CXX_STDLIB = libc++ CLANG_DEFAULT_RTLIB = compiler-rt LIBCXX_CXX_ABI = libcxxabi LLVM_DEFAULT_TARGET_TRIPLE = x86_64-pc-linux-musl LIBCXXABI_TARGET_TRIPLE = x86_64-pc-linux-musl LIBUNWIND_TARGET_TRIPLE = x86_64-pc-linux-musl DEFAULT_SYSROOT = /path/to/musl GCC_INSTALL_PREFIX = /path/to/gcc-stub LLVM_TARGETS_TO_BUILD = X86 LIBCXXABI_USE_COMPILER_RT = ON LIBCXXABI_USE_LLVM_UNWINDER = ON LIBCXX_HAS_MUSL_LIBC = ON LIBCXX_USE_COMPILER_RT = ON LLVM_ENABLE_LIBCXX = ON LLVM_ENABLE_LLD = ON When I try to config...
2012 Apr 18
0
[LLVMdev] Build warnings and errors
Jim's comment handles the tablegen stuff... On Wed, Apr 18, 2012 at 10:50 AM, Sean Silva <silvas at purdue.edu> wrote: > At the bottom there is a failure when building the clang driver, > complaining about finding `DEFAULT_SYSROOT` > > I'm building with ninja (generated by CMake). > Have you updated both LLVM and Clang? This was a relatively recent change, but everything is working on my end (and on others' ends)... -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://l...
2012 Apr 18
0
[LLVMdev] Build warnings and errors
...;chandlerc at google.com> wrote: > >> Jim's comment handles the tablegen stuff... >> >> On Wed, Apr 18, 2012 at 10:50 AM, Sean Silva <silvas at purdue.edu> wrote: >> At the bottom there is a failure when building the clang driver, complaining about finding `DEFAULT_SYSROOT` >> >> I'm building with ninja (generated by CMake). >> >> Have you updated both LLVM and Clang? This was a relatively recent change, but everything is working on my end (and on others' ends)... > > Andy was having this problem yesterday as well. Did you end...
2012 May 22
1
[LLVMdev] Issues with clang build
Hi, I am on r157251. When I try to build clang, I get this error. Driver.cpp:52:47: error: use of undeclared identifier 'DEFAULT_SYSROOT' ClangExecutable(ClangExecutable), SysRoot(DEFAULT_SYSROOT), ^ 1 error generated. make[4]: *** [/home/ganapathy/projects/llvm/tools/clang/lib/Driver/Release+Asserts/Driver.o] Error 1 Can someone help me with that ? Thanks -- Thank you Balacha...
2012 Apr 18
1
[LLVMdev] Build warnings and errors
....com> wrote: >> >>> Jim's comment handles the tablegen stuff... >>> >>> On Wed, Apr 18, 2012 at 10:50 AM, Sean Silva <silvas at purdue.edu> wrote: >>> At the bottom there is a failure when building the clang driver, complaining about finding `DEFAULT_SYSROOT` >>> >>> I'm building with ninja (generated by CMake). >>> >>> Have you updated both LLVM and Clang? This was a relatively recent change, but everything is working on my end (and on others' ends)... >> >> Andy was having this problem yester...
2015 Jul 17
2
[LLVMdev] [3.7 Release] RC1 has been tagged, Testing Phase I begins
...Lists.txt >> > =================================================================== >> > --- CMakeLists.txt (revision 242425) >> > +++ CMakeLists.txt (working copy) >> > @@ -182,7 +182,7 @@ set(GCC_INSTALL_PREFIX "" CACHE PATH "Di >> > set(DEFAULT_SYSROOT "" CACHE PATH >> > "Default <path> to all compiler invocations for --sysroot=<path>." ) >> > >> > -set(CLANG_DEFAULT_OPENMP_RUNTIME "libgomp" CACHE STRING >> > +set(CLANG_DEFAULT_OPENMP_RUNTIME "libomp" CACHE...
2015 Jul 21
2
[LLVMdev] [3.7 Release] RC1 has been tagged, Testing Phase I begins
...======================================================= >> >> > --- CMakeLists.txt (revision 242425) >> >> > +++ CMakeLists.txt (working copy) >> >> > @@ -182,7 +182,7 @@ set(GCC_INSTALL_PREFIX "" CACHE PATH "Di >> >> > set(DEFAULT_SYSROOT "" CACHE PATH >> >> > "Default <path> to all compiler invocations for >> --sysroot=<path>." ) >> >> > >> >> > -set(CLANG_DEFAULT_OPENMP_RUNTIME "libgomp" CACHE STRING >> >> > +set(CLANG_DE...
2012 Apr 18
0
[LLVMdev] sysroot configury broken?
Hi all, I see this in configure.ac: AC_ARG_WITH(sysroot, AS_HELP_STRING([--with-default-sysroot], [Add --sysroot=<path> to all compiler invocations.]),, withval="") AC_DEFINE_UNQUOTED(DEFAULT_SYSROOT,"$withval", [Default <path> to all compiler invocations for --sysroot=<path>.]) The macro seems to suggest that I should write "--with-sysroot", while the help string is pushing me towards "--with-default-sysroot". Which is the official...
2015 Jul 16
23
[LLVMdev] [3.7 Release] RC1 has been tagged, Testing Phase I begins
Dear testers, 3.7.0-rc1 was just tagged; please start your testing engines :-) Upload binaries to the sftp and report your results to this thread. I'm sorry for the delay between branching and tagging. The changes to the release script took a little longer than I hoped. Thanks for helping with the release, and do let me know of any issues, questions, etc. The tracking bug for release
2016 Mar 17
2
Building with LLVM_PARALLEL_XXX_JOBS
On Mon, Mar 14, 2016 at 5:30 PM, Chris Bieneman <cbieneman at apple.com> wrote: [ brutal-snip ] ... > [ TODO#S: Before doing a 2nd build (and in a 3rd run using more > optimized binaries) ] > > How do I anable LTO via CMAKE? > > > LLVM_ENALBLE_LTO=On > [ v4 of my build-script attached ] Hi Chris, thanks for the response! That seems to work (see below). $ cd
2017 Feb 11
2
Asan self host problems: Failed to deallocate
Trying to run a self host "ninja check-clang" with ASan enabled I hit a /lot/ of errors like this (strangely I hit none of these in check-llvm, only in check-clang): Any ideas? ==10525==ERROR: AddressSanitizer failed to deallocate 0x10800 (67584) bytes at address 0x631000014800 ==10525==AddressSanitizer CHECK failed:
2017 Feb 15
2
Asan self host problems: Failed to deallocate
...x86_64-linux-gnu/libncurses.so //The curses panel library CURSES_PANEL_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libpanel.so //Colon separated list of directories clang will search for headers. C_INCLUDE_DIRS:STRING= //Default <path> to all compiler invocations for --sysroot=<path>. DEFAULT_SYSROOT:PATH= //Path to a library. DL_LIBRARY_PATH:FILEPATH=/usr/lib/x86_64-linux-gnu/libdl.so //Graphviz Dot tool for using Doxygen DOXYGEN_DOT_EXECUTABLE:FILEPATH=/usr/bin/dot //Doxygen documentation generation tool (http://www.doxygen.org) DOXYGEN_EXECUTABLE:FILEPATH=/usr/bin/doxygen //Path to a pro...