Displaying 5 results from an estimated 5 matches for "libcxx_cxx_abi".
Did you mean:
dlibcxx_cxx_abi
2016 Dec 02
2
Failed to configure LLVM for use with Musl
...directory) and libunwind, compiler-rt, libcxx and libcxxabi (under `projects` directory). All are the latest versions cloned from GitHub mirror, branch `master`.
I'm trying to configure 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_CO...
2019 Sep 20
2
Building LLVM with LLVM with no dependence on GCC
Thus wrote David Demelier via llvm-dev:
> Also you will need to add more options to the components. See for example:
>
> LIBCXX_CXX_ABI=libcxxabi
> LIBCXX_USE_COMPILER_RT=On
> LIBCXXABI_USE_LLVM_UNWINDER=On
> LIBCXXABI_USE_COMPILER_RT=On
> LIBCXX_HAS_GCC_S_LIB=Off
> LIBUNWIND_USE_COMPILER_RT=On
>
> And as mentioned above
>
> CLANG_DEFAULT_CXX_STDLIB=libc++
> CLANG_DEFAULT_RTLIB=compiler-rt
> CLANG...
2019 Sep 17
2
Building LLVM with LLVM with no dependence on GCC
Hi folks!
I'm trying to get rid of any dependency on libgcc*, but without success so
far. The following commands were executed on a freshliy installed and updated
Ubuntu 16.04 LTS:
=== snip ===
sudo apt-get install build-essential libffi-dev cmake # see aptget.txt for packages installed
sudo mv /usr/local /usr/local.orig
git clone https://github.com/llvm/llvm-project.git
cd llvm-project; git
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
...BLE:FILEPATH=/usr/lib/google-golang/bin/go
//Build libclang as a static library (in addition to a shared one)
LIBCLANG_BUILD_STATIC:BOOL=OFF
//Version number that will be placed into the libclang library
// , in the form XX.YY
LIBCLANG_LIBRARY_VERSION:STRING=3.4
//Specify C++ ABI library to use.
LIBCXX_CXX_ABI:STRING=none
//Enable assertions independent of build mode.
LIBCXX_ENABLE_ASSERTIONS:BOOL=ON
//Enable -std=c++0x and use of c++0x language features if the compiler
// supports it.
LIBCXX_ENABLE_CXX0X:BOOL=ON
//Enable -std=c++1y and use of c++1y language features if the compiler
// supports it.
LI...