Displaying 4 results from an estimated 4 matches for "release_800".
Did you mean:
release_400
2019 Jun 06
2
clang: error: linker command failed due to signal (use -v to see invocation)
...BinaryFormat.a lib/libLLVMRemarks.a lib/libLLVMSupport.a -lz
-lrt -ldl -ltinfo -lpthread -lm lib/libLLVMDemangle.a && :
clang: error: unable to execute command: Killed
clang: error: linker command failed due to signal (use -v to see invocation)
---------------
clang version 8.0.0-3 (tags/RELEASE_800/final) - installed from Ubuntu
repository
Ubuntu 19.04
From https://llvm.org/docs/GettingStarted.html
git clone https://github.com/llvm/llvm-project.git - obtained yesterday
afternoon
Neil Nelson
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lis...
2019 Aug 31
3
Usage of the jumptable attribute
...jump-tables"="false"
; ... many more attributes ...
}
attributes #1 = {
; ... many more attributes ...
}
!llvm.module.flags = !{!0}
!llvm.ident = !{!1}
!0 = !{i32 1, !"wchar_size", i32 4}
!1 = !{!"clang version 8.0.0 (tags/RELEASE_800/final)"}
Finally, I executed:
build/bin/llc -o test.out.s test.out.ll
clang -o test.out.native test.out.s
objdump --disassemble-all test.out.native
I hoped to see some kind of jump table being used for the call to foo
(maybe even the plt mechanism the dynamic library calls u...
2019 Aug 03
3
conflicting builtins in clang with musl (stddef.h)
...ectories.
/include/stddef.h
/lib/clang/8.0.0/include/stddef.h
Usually, compiling a sample program works:
$ cat test.cpp
#include <stddef.h>
#include <limits>
#include <type_traits>
int main() {
}
$ clang++ -std=c++17 -v test.cpp
Vanilla Linux clang version 8.0.0 (tags/RELEASE_800/final) (based on
LLVM 8.0.0)
Target: x86_64-unknown-linux-musl
Thread model: posix
InstalledDir: /bin
"/bin/clang-8" -cc1 -triple x86_64-unknown-linux-musl -emit-obj
-mrelax-all -disable-free -disable-llvm-verifier -discard-value-names
-main-file-name test.cpp -mrelocation-model pic -pic...
2019 Mar 25
3
Trying to create a pure LLVM toolchain on musl based distribution
...TLIB=compiler-rt
-DCLANG_VENDOR="Vanilla Linux"
Everything built fine, now the problem is the location of compiler-rt
libraries which are not the correct place where clang/ld.lld searches.
As the following output shows:
clang -v /tmp/test.c
Vanilla Linux clang version 8.0.0 (tags/RELEASE_800/final) (based on
LLVM 8.0.0)
Target: x86_64-unknown-linux-musl
Thread model: posix
InstalledDir: /usr/bin
"/usr/bin/clang-8" -cc1 -triple x86_64-unknown-linux-musl -emit-obj
-mrelax-all -disable-free -disable-llvm-verifier -discard-value-names
-main-file-name test.c -mrelocation-mode...