search for: libcxx

Displaying 20 results from an estimated 604 matches for "libcxx".

2018 Feb 06
2
libc++ cross-compile linux-armv7 and math function problems
...mv7a-plex-linux-gnueabihf-g++ CFLAGS=-fPIC -DPIC -mfloat-abi=hard -march=armv7-a -Os -mfpu=vfpv3-d16 --sysroot=<path> CXXFLAGS=-fPIC -DPIC -mfloat-abi=hard -march=armv7-a -Os -mfpu=vfpv3-d16 --sysroot=<path> LDFLAGS=-static-libgcc --sysroot=<path> then run cmake: cmake -GNinja -DLIBCXXABI_USE_LLVM_UNWINDER=ON DLLVM_TARGET_ARCH=ARM -DLLVM_DEFAULT_TARGET_TRIPLE=arm-linux-gnueabihf -DLLVM_TARGETS_TO_BUILD=ARM -DCMAKE_CROSSCOMPILING=True .. This errors out as shown below. It's like it's missing some definitions of different math functions that I can't seem to be able to...
2018 Feb 06
0
libc++ cross-compile linux-armv7 and math function problems
...CFLAGS=-fPIC -DPIC -mfloat-abi=hard -march=armv7-a -Os -mfpu=vfpv3-d16 --sysroot=<path> > CXXFLAGS=-fPIC -DPIC -mfloat-abi=hard -march=armv7-a -Os -mfpu=vfpv3-d16 --sysroot=<path> > LDFLAGS=-static-libgcc --sysroot=<path> > > then run cmake: > > cmake -GNinja -DLIBCXXABI_USE_LLVM_UNWINDER=ON DLLVM_TARGET_ARCH=ARM -DLLVM_DEFAULT_TARGET_TRIPLE=arm-linux-gnueabihf -DLLVM_TARGETS_TO_BUILD=ARM -DCMAKE_CROSSCOMPILING=True .. > > This errors out as shown below. It's like it's missing some definitions of different math functions that I can't seem to b...
2018 Feb 06
1
libc++ cross-compile linux-armv7 and math function problems
Hello Dimitry and thanks for your answer. I am pretty sure it does indeed support long double. It's configured with vfpv3-d16 - but I noticed that c++config.h in gcc has _GLIBCXX__HAS_FABSL and friends are undefined. I think I need to look deeper at the configuration of our toolchain. long double support is required in libc++ then I gather? -- Tobias On Tue, Feb 6, 2018 at 11:47 AM, Dimitry Andric <dimitry at andric.com> wrote: > At first glance, it looks like...
2014 Oct 07
2
[LLVMdev] Can libc++ build for arm cross compiler?
Hi cschen, It seems that libunwind (the one included in libcxxabi) is mandatory at the moment. Use the second build command instead: $ CROSS_COMPILING=arm ENABLE_LIBUNWIND=1 ./scripts/compile-all.sh Logan On Tue, Oct 7, 2014 at 5:32 PM, gamma_chen <gamma_chen at yahoo.com.tw> wrote: > After do "sudo apt-get update", the following are pa...
2018 Feb 05
0
Cross-compiling libc++ to linux-armv7hf gives undefined symbols in cmath / math.h
...mv7a-plex-linux-gnueabihf-g++ CFLAGS=-fPIC -DPIC -mfloat-abi=hard -march=armv7-a -Os -mfpu=vfpv3-d16 --sysroot=<path> CXXFLAGS=-fPIC -DPIC -mfloat-abi=hard -march=armv7-a -Os -mfpu=vfpv3-d16 --sysroot=<path> LDFLAGS=-static-libgcc --sysroot=<path> then run cmake: cmake -GNinja -DLIBCXXABI_USE_LLVM_UNWINDER=ON DLLVM_TARGET_ARCH=ARM -DLLVM_DEFAULT_TARGET_TRIPLE=arm-linux-gnueabihf -DLLVM_TARGETS_TO_BUILD=ARM -DCMAKE_CROSSCOMPILING=True .. This errors out as shown below. It's like it's missing some definitions of different math functions that I can't seem to be able to...
2014 Oct 03
3
[LLVMdev] Can libc++ build for arm cross compiler?
On 10/3/14 10:16 AM, Dan Albert wrote: >> >> I try to build libc++ and libc++abi for host x86_64(linux) and target >> arm(linux) but fail. >> > > Failing in what way? If this isn't working out of the box, we've done > something wrong. Yeah, it would help to know more specifics about where you're getting stuck. > > jroelofs might know more... For
2017 Jun 05
3
libc++ failed to link against musl
I'm trying to build LLVM, Clang, LLD, compiler-rt, libc++, libc++abi and libunwind with musl-based toolchain. The configuration is the following: LIBCXX_HAS_MUSL_LIBC=ON LIBCXX_HAS_GCC_S_LIB=OFF CLANG_DEFAULT_CXX_STDLIB=libc++ CLANG_DEFAULT_LINKER=lld CLANG_DEFAULT_RTLIB=compiler-rt LLVM_DEFAULT_TARGET_TRIPLE=x86_64-pc-linux-musl LLVM_TARGET_ARCH=x86_64 LLVM_TARGETS_TO_BUILD=X86 When linking libc++.so there are a...
2016 Mar 14
2
LLVM-3.8.0 libcxx in-tree build fails with cmath error ::signbit has not been declared
cmake -E cmake_progress_report llvm-3.8.0.src_bld_x86_64-rhel6.4-linux-gnu/CMakeFiles In file included from llvm-3.8.0.src/projects/libcxx/include/__hash_table:19:0, from llvm-3.8.0.src/projects/libcxx/src/hash.cpp:10: llvm-3.8.0.src/projects/libcxx/include/cmath:310:9: error: '::signbit' has not been declared using ::signbit; ^ llvm-3.8.0.src/projects/libcxx/include/cmath:311:9: error: '::fpclass...
2015 Sep 27
2
libcxx build error.
Hi, I am trying to build llvm 3.4.2 on Centos 6.6. I am getting this below build error , while building the libcxx. I followed the build procedure based of http://clang.llvm.org/get_started.html. I cannot move to a higher version, Since we need to develop on CentOS 6.6 and LLVM 3.4.2 ,is the last version that supports gcc 3.4.2. Starting from LLVM 3.5.0, there has been a huge jump to gcc 4.7.0. I am just sta...
2020 Jun 25
2
[libcxx-dev] How to include abi and unwind tests in libcxx test suite in standalone mode
...5fa936705bef56f55ab611 Author: Louis Dionne <ldionne at apple.com> Date: Thu Jun 25 11:46:00 2020 -0400 [libc++abi] Allow specifying custom Lit config files This is the libc++abi counterpart of 0c66af970c80. Louis > On Jun 25, 2020, at 11:28, Louis Dionne via libcxx-dev <libcxx-dev at lists.llvm.org> wrote: > > > >> On Jun 25, 2020, at 08:14, Dominik Montada <dominik.montada at hightec-rt.com> wrote: >> >> Hi Louis, >> >> sorry for bothering you once more about the libcxx test suite! I was wondering wheth...
2019 Oct 18
2
Zorg migration to GitHub/monorepo
...vx2-linux-perf * clang-cmake-x86_64-sde-avx512-linux * clang-solaris11-amd64 * clang-x64-ninja-win7 * clang-solaris11-sparcv9 * clang-cmake-armv7-full * clang-cmake-thumbv7-full-sh * clang-cmake-armv8-lld * clang-cmake-aarch64-full * clang-armv7-linux-build-cache * clang-aarch64-linux-build-cache * libcxx-libcxxabi-x86_64-linux-debian * libcxx-libcxxabi-x86_64-linux-debian-noexceptions * libcxx-libcxxabi-libunwind-x86_64-linux-debian * libcxx-libcxxabi-singlethreaded-x86_64-linux-debian * libcxx-libcxxabi-x86_64-linux-ubuntu-cxx03 * libcxx-libcxxabi-x86_64-linux-ubuntu-cxx11 * libcxx-libcxxabi-x86_6...
2019 Oct 28
2
Zorg migration to GitHub/monorepo
Hi Galina, It seems that our libcxx bots are now triggering builds for any changes to llvm: http://lab.llvm.org:8011/builders/libcxx-libcxxabi-libunwind-aarch64-linux/builds/2434 Should I file a bug report for this? Thanks, Diana On Sat, 19 Oct 2019 at 11:36, Galina Kistanova via cfe-commits <cfe-commits at lists.llvm.org> w...
2018 Mar 17
0
Buildbot numbers for the week of 2/25/2018 - 3/03/2018
...r was red during the week: buildername | was_red ---------------------------------------------------------+--------- clang-x86-windows-msvc2015 | 85:23:18 clang-x64-ninja-win7 | 81:13:04 libcxx-libcxxabi-libunwind-aarch64-linux | 50:42:01 libcxx-libcxxabi-libunwind-armv8-linux-noexceptions | 50:41:57 lldb-x86_64-ubuntu-14.04-android | 46:42:43 clang-s390x-linux-lnt | 41:07:18 clang-s390x-linux-multistage...
2016 Jun 14
2
Buildbot numbers for the last week of 6/05/2016 - 6/11/2016
...| 12:52:45 llvm-clang-lld-x86_64-scei-ps4-windows10pro-fast | 11:58:08 perf-x86_64-penryn-O3-polly-before-vectorizer-detect-only | 11:23:05 clang-ppc64le-linux | 10:55:20 perf-x86_64-penryn-O3-polly | 10:09:52 libcxx-libcxxabi-x86_64-linux-debian | 06:31:45 clang-cmake-armv7-a15-selfhost | 04:54:20 clang-ppc64le-linux-multistage | 04:39:08 clang-cmake-mipsel | 04:07:57 lldb-x86_64-darwin-13.4...
2018 Mar 30
0
Buildbot numbers for the week of 3/18/2018 - 3/24/2018
...| 19:43:14 clang-with-thin-lto-ubuntu | 19:34:19 clang-cmake-armv7-quick | 19:27:14 clang-cmake-thumbv7-full-sh | 19:08:17 clang-hexagon-elf | 19:06:53 libcxx-libcxxabi-x86_64-linux-ubuntu-gcc-tot-latest-std | 18:53:23 clang-cmake-armv8-quick | 18:08:31 clang-cmake-armv8-full | 17:47:23 sanitizer-ppc64be-linux | 16:58:18 lldb-x86_64-darwin-13.4...
2018 May 30
0
Buildbot numbers for the week of 5/6/2018 - 5/12/2018
...result per active builder (response time). Thanks Galina The longest time each builder was red during the week: buildername | was_red --------------------------------------------------+--------- lldb-x86_64-ubuntu-14.04-android | 55:37:38 libcxx-libcxxabi-x86_64-linux-ubuntu-cxx17 | 34:11:32 libcxx-libcxxabi-x86_64-linux-ubuntu-cxx2a | 33:59:13 libcxx-libcxxabi-x86_64-linux-ubuntu-cxx11 | 33:58:46 libcxx-libcxxabi-x86_64-linux-ubuntu-32bit | 33:55:55 libcxx-libcxxabi-libunwind-x86_64-linux-ubuntu | 33:48:37 l...
2018 Feb 10
0
Buildbot numbers for the week of 1/21/2018 - 1/27/2018
...| 27:49:42 lldb-x86_64-ubuntu-14.04-android | 25:51:31 lldb-x86_64-ubuntu-14.04-cmake | 25:22:41 clang-x86_64-linux-selfhost-modules | 23:58:46 clang-x86_64-linux-selfhost-modules-2 | 23:49:12 libcxx-libcxxabi-singlethreaded-x86_64-linux-debian | 22:09:49 libcxx-libcxxabi-x86_64-linux-debian | 21:53:34 libcxx-libcxxabi-x86_64-linux-debian-noexceptions | 21:36:00 libcxx-libcxxabi-libunwind-x86_64-linux-debian | 21:20:43 clang-cmake-armv7-a15-selfhost-neon...
2019 Oct 29
2
Zorg migration to GitHub/monorepo
I think what she is referring to was that the build seemed to be triggered by a commit to a project that shouldn't trigger builds on a libcxx bot (i.e. the change was in llvm). I have a somewhat orthogonal but related question. In the past, commits to compiler-rt did not trigger builds on llvm/clang/sanitizer bots. Has this behaviour been rectified with the move to github? I am really sorry if you already answered this question and I ju...
2018 Apr 28
0
Buildbot numbers for the week of 4/8/2018 - 4/14/2018
...pro-fast | 29:41:24 clang-x64-ninja-win7 | 29:00:50 clang-cmake-aarch64-full | 22:30:44 clang-with-thin-lto-windows | 21:33:19 clang-ppc64le-linux-multistage | 20:40:44 libcxx-libcxxabi-libunwind-x86_64-linux-debian | 18:22:48 clang-with-thin-lto-ubuntu | 17:05:03 clang-with-lto-ubuntu | 16:12:58 clang-cmake-armv7-selfhost | 12:12:30 clang-s390x-linux-multistage...
2018 May 08
0
Buildbot numbers for the week of 4/29/2018 - 5/5/2018
...verage waiting time for a revision to get build result per active builder (response time). Thanks Galina The longest time each builder was red during the week: buildername | was_red ---------------------------------------------------------+--------- libcxx-libcxxabi-libunwind-armv8-linux | 87:08:24 libcxx-libcxxabi-libunwind-armv8-linux-noexceptions | 87:08:06 libcxx-libcxxabi-x86_64-linux-ubuntu-cxx17 | 85:42:47 libcxx-libcxxabi-libunwind-x86_64-linux-ubuntu | 85:42:17 libcxx-libcxxabi-x86_64-linux-ubun...