search for: dllvm_use_split_dwarf

Displaying 11 results from an estimated 11 matches for "dllvm_use_split_dwarf".

Did you mean: llvm_use_split_dwarf
2016 Oct 18
3
[help] How to speed up compilation?
On 18 October 2016 at 07:51, Renato Golin via llvm-dev <llvm-dev at lists.llvm.org> wrote: > A few hints: Another one for debug builds on Linux is using split debug info: -DLLVM_USE_SPLIT_DWARF=ON. This speeds up links dramatically (and reduces memory consumption) as long as you've got a new enough gdb (I think lldb is still not quite up to it). It has no effect on macOS though, because a similar configuration is just how things work there. Tim.
2017 Oct 04
2
Unit tests in compiler-rt not rebuilding with changes to runtimes?
...urces in llvm/projects/compiler-rt. > Lastly, can you provide your CMake configuration command line? cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -G Ninja -DCMAKE_CXX_COMPILER=clang++-3.9 -DCMAKE_C_COMPILER=clang-3.9 -DCMAKE_ASM_COMPILER=clang-3.9 -DLLVM_USE_LINKER=gold -DLLVM_USE_SPLIT_DWARF=On -DBUILD_SHARED_LIBS=ON -DLLVM_OPTIMIZED_TABLEGEN=On -DCOMPILER_RT_BUILD_XRAY=On -DLLVM_ENABLE_ASSERTIONS=On -DCOMPILER_RT_INCLUDE_TESTS=On -DLLVM_ENABLE_SPHINX=On -DSPHINX_WARNINGS_AS_ERRORS=On -DCMAKE_CXX_FLAGS="-Wpedantic" -DCMAKE_CXX_COMPILER_LAUNCHER=ccache ../llvm I'm buildin...
2017 Dec 21
5
llc: Unknown command line argument '-debug-only=isel'
Hi LLVM developers, llc -march=mips -debug-only=isel was able to work in Nov 8 2017 https://reviews.llvm.org/D39723 But it doesn't work now: $ clang --version LLVM China clang version 6.0.0 (git at github.com:llvm-mirror/clang.git 9b7b03045ee9b5622028537266aafeb9ea218ac1) (git at github.com:llvm-mirror/llvm.git 3a26601a88394c02603b8756527c55df9ab94d78) (based on LLVM 6.0.0svn) Target:
2016 Oct 18
2
[help] How to speed up compilation?
Hi,It's first time to post question on community, so I'm not sure this is right way to ask. I'm hoping that someone can help me figure out how to speed up compilation. I'm working on LLVM 4.0 and modifying clang for my own purpose. It seems like after LLVM switches its compilation framework to cmake, the compile time is largely increased. It took almost over an hour even though I
2017 Oct 03
2
Unit tests in compiler-rt not rebuilding with changes to runtimes?
Hi llvm-dev, I have unit tests set up in the XRay implementation (compiler-rt/lib/xray/tests/unit) following the pattern that the TSAN and other sanitiser unit tests. However, I'm running into the following problem: When I make changes to the runtime (in this case, XRay) and do `ninja all check-xray`, it seems that the unit tests don't get re-liked to the new version of the runtime. It
2016 Oct 18
3
[help] How to speed up compilation?
...AM, Tim Northover via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > > On 18 October 2016 at 07:51, Renato Golin via llvm-dev > <llvm-dev at lists.llvm.org> wrote: > > A few hints: > > > Another one for debug builds on Linux is using split debug info: > -DLLVM_USE_SPLIT_DWARF=ON. This speeds up links dramatically (and > reduces memory consumption) as long as you've got a new enough gdb (I > think lldb is still not quite up to it). It has no effect on macOS > though, because a similar configuration is just how things work there. > > Tim. > _________...
2018 Apr 27
0
Size of produced binaries when compiling llvm & clang sources
On Fri, Apr 27, 2018 at 6:21 PM, Manuel Yguel via llvm-dev <llvm-dev at lists.llvm.org> wrote: > Dear llvm developpers, > I followed the tutorial to build llvm and clang provided here: > https://clang.llvm.org/get_started.html > > The sources are in sync with subversion repository, and I ended up with more > than 30GB of binaries in llvm/bin as shown at the end of this
2018 Apr 27
3
Size of produced binaries when compiling llvm & clang sources
Dear llvm developpers, I followed the tutorial to build llvm and clang provided here: https://clang.llvm.org/get_started.html The sources are in sync with subversion repository, and I ended up with more than 30GB of binaries in llvm/bin as shown at the end of this message. I assume I did something wrong, but I did not find any entry in the doc that helps me understand how to reduce the size of
2017 Mar 11
2
Use of host/target compiler when building compiler-rt
...with xray again). But when I place compiler-rt in runtimes I do have problems. Here's my cmake command: cmake -G Ninja -DCMAKE_INSTALL_PREFIX=$HOME/dev/llvm/install -DCMAKE_BUILD_TYPE=Debug ../../src/ -DCMAKE_C_COMPILER=$HOME/install/bin/clang -DCMAKE_CXX_COMPILER=$HOME/install/bin/clang++ -DLLVM_USE_SPLIT_DWARF=ON -DLLVM_ENABLE_WERROR=ON -DLLVM_BUILD_EXAMPLES=ON -DLLVM_INCLUDE_GO_TESTS=OFF & here's the result of "ninja check-all": [3671/3683] cd /usr/local/google/home/blaikie/dev/llvm/build/default...fault/runtimes/runtimes-bins/ --target check-runtimes --config Debug [318/409] Generat...
2016 Jul 23
3
[llvm-toolchain v3.8.1] LTO: Linking clang hangs with ld.gold and LLVMgold.so plugin
> On Jul 23, 2016, at 1:53 PM, Sedat Dilek via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > > On Sat, Jul 23, 2016 at 7:48 PM, Piotr Padlewski <prazek at google.com <mailto:prazek at google.com>> wrote: >> How big is your project? >> LTO eats RAM even faster than chrome. For example linking clang with LTO >>
2017 Mar 09
2
Use of host/target compiler when building compiler-rt
On Thu, Mar 9, 2017 at 11:25 AM Chris Bieneman <beanz at apple.com> wrote: > On Mar 8, 2017, at 4:42 PM, David Blaikie <dblaikie at gmail.com> wrote: > > > > On Wed, Mar 8, 2017 at 3:23 PM Chris Bieneman <beanz at apple.com> wrote: > > On Mar 8, 2017, at 3:16 PM, David Blaikie <dblaikie at gmail.com> wrote: > > > > On Wed, Mar 8, 2017 at