Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failure build sdk with clang tools included #136

Closed
reid-p opened this issue Aug 5, 2019 · 7 comments
Closed

Failure build sdk with clang tools included #136

reid-p opened this issue Aug 5, 2019 · 7 comments

Comments

@reid-p
Copy link

reid-p commented Aug 5, 2019

I'm getting the following linker error while trying to build an arm sdk with the clang tools included. Any ideas?

| projects/libcxxabi/src/CMakeFiles/cxxabi_objects.dir/cxa_guard.cpp.o(.ARM.exidx+0x0): error: undefined reference to '__aeabi_unwind_cpp_pr1'
| projects/libcxxabi/src/CMakeFiles/cxxabi_objects.dir/cxa_guard.cpp.o(.ARM.exidx+0x8): error: undefined reference to '__aeabi_unwind_cpp_pr1'
| projects/libcxxabi/src/CMakeFiles/cxxabi_objects.dir/cxa_guard.cpp.o(.ARM.exidx+0x10): error: undefined reference to '__aeabi_unwind_cpp_pr1'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_vector.cpp:0: error: undefined reference to '_Unwind_Resume'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_vector.cpp:0: error: undefined reference to '_Unwind_Resume'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_vector.cpp:0: error: undefined reference to '_Unwind_Resume'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_vector.cpp:0: error: undefined reference to '_Unwind_Resume'
| projects/libcxxabi/src/CMakeFiles/cxxabi_objects.dir/stdlib_stdexcept.cpp.o(.ARM.exidx+0x0): error: undefined reference to '__aeabi_unwind_cpp_pr1'
| /usr/lib/clang/8.0.1/include/unwind.h:235: error: undefined reference to '_Unwind_VRS_Set'
| /usr/lib/clang/8.0.1/include/unwind.h:228: error: undefined reference to '_Unwind_VRS_Get'
| /usr/lib/clang/8.0.1/include/unwind.h:228: error: undefined reference to '_Unwind_VRS_Get'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_personality.cpp:0: error: undefined reference to '__gnu_unwind_frame'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_personality.cpp:0: error: undefined reference to '_Unwind_VRS_Set'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_personality.cpp:0: error: undefined reference to '_Unwind_VRS_Set'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_personality.cpp:0: error: undefined reference to '_Unwind_VRS_Get'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_personality.cpp:0: error: undefined reference to '_Unwind_VRS_Set'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_personality.cpp:606: error: undefined reference to '_Unwind_GetLanguageSpecificData'
| /usr/lib/clang/8.0.1/include/unwind.h:228: error: undefined reference to '_Unwind_VRS_Get'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_personality.cpp:619: error: undefined reference to '_Unwind_GetRegionStart'
| projects/libcxxabi/src/CMakeFiles/cxxabi_objects.dir/cxa_aux_runtime.cpp.o(.ARM.exidx+0x0): error: undefined reference to '__aeabi_unwind_cpp_pr0'
| projects/libcxxabi/src/CMakeFiles/cxxabi_objects.dir/cxa_default_handlers.cpp.o(.ARM.exidx+0x0): error: undefined reference to '__aeabi_unwind_cpp_pr0'
| projects/libcxxabi/src/CMakeFiles/cxxabi_objects.dir/cxa_demangle.cpp.o(.ARM.exidx+0x98): error: undefined reference to '__aeabi_unwind_cpp_pr0'
| projects/libcxxabi/src/CMakeFiles/cxxabi_objects.dir/cxa_demangle.cpp.o(.ARM.exidx+0x1d0): error: undefined reference to '__aeabi_unwind_cpp_pr0'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_exception.cpp:281: error: undefined reference to '_Unwind_RaiseException'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_exception.cpp:551: error: undefined reference to '_Unwind_DeleteException'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_exception.cpp:609: error: undefined reference to '_Unwind_RaiseException'
| /builddir/v2019.07/tmp-glibc/work-shared/llvm-project-source-8.0.1-r0/git/libcxxabi/src/cxa_exception.cpp:734: error: undefined reference to '_Unwind_RaiseException'
| clang-8: error: linker command failed with exit code 1 (use -v to see invocation)
| ninja: build stopped: subcommand failed.
| WARNING: /builddir/v2019.07/tmp-glibc/work/cortexa9t2hf-neon-emit-linux-gnueabi/libcxx/8.0.1-r0/temp/run.do_compile.69709:1 exit 1 from 'ninja -v -j 12 cxxabi'
@kraj
Copy link
Owner

kraj commented Aug 6, 2019

I think we need to add -lgcc or -lunwind when building libcxx

@kraj
Copy link
Owner

kraj commented Aug 13, 2019

recipes are upgraded to use 9.x RC, please try with the latest master and report back. Also, post your build configuration so we can reproduce your case.

@kraj kraj added the feedback label Aug 13, 2019
@reid-p
Copy link
Author

reid-p commented Aug 13, 2019

Just did a quick try and failing in the configure stage.
-- Found PythonLibs: /build/tmp-glibc/work/x86_64-linux/clang-native/9.0.0-r0/recipe-sysroot-native/usr/lib/libpython3.7m.so (found version "3.7.2") CMake Error at /build/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/lldb/cmake/modules/LLDBConfig.cmake:204 (message): Found incompatible Python interpreter (3.6.8) and Python libraries (3.7.2) Call Stack (most recent call first): /build/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/lldb/CMakeLists.txt:20 (include)

3.6.8 corresponds to my native install. 3.7.2 looks to be the version built by bitbake.
I'll

What files do you need to replicate my build config?

@reid-p
Copy link
Author

reid-p commented Aug 13, 2019

I add python3native to clang_git.bb

ie:
inherit cmake cmake-native
changed to
inherit cmake cmake-native python3native

and have got past the configure step.

Waiting for the do_compile

@kraj
Copy link
Owner

kraj commented Aug 13, 2019

@reid-p thanks, can you create a pull?

@kraj kraj added the bug label Aug 13, 2019
@kraj
Copy link
Owner

kraj commented Aug 15, 2019

should be fixed with 1746d05

@kraj kraj closed this as completed Aug 15, 2019
@reid-p
Copy link
Author

reid-p commented Aug 16, 2019

@kraj
Took me a while to get a uild going, had to get a new host tool chain installed as it was failing in stage2 due to a warning about the age of the gcc compiler. Which looks to have been recently addressed.

Unfortunately still getting the failure.

02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_guard_impl.h:0: error: undefined reference to '_Unwind_Resume' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_vector.cpp:57: error: undefined reference to '_Unwind_Resume' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_vector.cpp:0: error: undefined reference to '_Unwind_Resume' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_vector.cpp:0: error: undefined reference to '_Unwind_Resume' 02:47:08 | projects/libcxxabi/src/CMakeFiles/cxxabi_shared.dir/cxa_vector.cpp.o(.ARM.exidx+0x50): error: undefined reference to '__aeabi_unwind_cpp_pr0' 02:47:08 | projects/libcxxabi/src/CMakeFiles/cxxabi_shared.dir/stdlib_stdexcept.cpp.o(.ARM.exidx+0x0): error: undefined reference to '__aeabi_unwind_cpp_pr1' 02:47:08 | projects/libcxxabi/src/CMakeFiles/cxxabi_shared.dir/stdlib_stdexcept.cpp.o(.ARM.exidx+0x8): error: undefined reference to '__aeabi_unwind_cpp_pr1' 02:47:08 | projects/libcxxabi/src/CMakeFiles/cxxabi_shared.dir/stdlib_stdexcept.cpp.o(.ARM.exidx+0x18): error: undefined reference to '__aeabi_unwind_cpp_pr1' 02:47:08 | projects/libcxxabi/src/CMakeFiles/cxxabi_shared.dir/stdlib_stdexcept.cpp.o(.ARM.exidx+0x20): error: undefined reference to '__aeabi_unwind_cpp_pr1' 02:47:08 | /usr/lib/clang/9.0.0/include/unwind.h:221: error: undefined reference to '_Unwind_VRS_Set' 02:47:08 | /usr/lib/clang/9.0.0/include/unwind.h:214: error: undefined reference to '_Unwind_VRS_Get' 02:47:08 | /usr/lib/clang/9.0.0/include/unwind.h:214: error: undefined reference to '_Unwind_VRS_Get' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_personality.cpp:0: error: undefined reference to '__gnu_unwind_frame' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_personality.cpp:0: error: undefined reference to '_Unwind_VRS_Set' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_personality.cpp:0: error: undefined reference to '_Unwind_VRS_Set' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_personality.cpp:0: error: undefined reference to '_Unwind_VRS_Get' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_personality.cpp:0: error: undefined reference to '_Unwind_VRS_Set' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_personality.cpp:605: error: undefined reference to '_Unwind_GetLanguageSpecificData' 02:47:08 | /usr/lib/clang/9.0.0/include/unwind.h:214: error: undefined reference to '_Unwind_VRS_Get' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_personality.cpp:618: error: undefined reference to '_Unwind_GetRegionStart' 02:47:08 | projects/libcxxabi/src/CMakeFiles/cxxabi_shared.dir/cxa_aux_runtime.cpp.o(.ARM.exidx+0x0): error: undefined reference to '__aeabi_unwind_cpp_pr0' 02:47:08 | projects/libcxxabi/src/CMakeFiles/cxxabi_shared.dir/cxa_default_handlers.cpp.o(.ARM.exidx+0x0): error: undefined reference to '__aeabi_unwind_cpp_pr0' 02:47:08 | projects/libcxxabi/src/CMakeFiles/cxxabi_shared.dir/cxa_demangle.cpp.o(.ARM.exidx+0x98): error: undefined reference to '__aeabi_unwind_cpp_pr0' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_exception.cpp:280: error: undefined reference to '_Unwind_RaiseException' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_exception.cpp:550: error: undefined reference to '_Unwind_DeleteException' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_exception.cpp:608: error: undefined reference to '_Unwind_RaiseException' 02:47:08 | /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work-shared/llvm-project-source-9.0.0-r0/git/libcxxabi/src/cxa_exception.cpp:733: error: undefined reference to '_Unwind_RaiseException' 02:47:08 | clang-9: error: linker command failed with exit code 1 (use -v to see invocation) 02:47:08 | ninja: build stopped: subcommand failed. 02:47:08 | WARNING: /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/cortexa9t2hf-neon-emit-linux-gnueabi/libcxx/9.0.0-r0/temp/run.do_compile.29522:1 exit 1 from 'ninja -v -j 16 cxxabi' 02:47:08 | ERROR: Function failed: do_compile (log file is located at /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/cortexa9t2hf-neon-emit-linux-gnueabi/libcxx/9.0.0-r0/temp/log.do_compile.29522) 02:47:08 NOTE: recipe libcxx-9.0.0-r0: task do_compile: Failed

Plus also getting this error when linking, google shows others having similar problems.
NixOS/nixpkgs#39170

02:48:23 | [124/3796] Linking CXX executable bin/llvm-tblgen 02:48:23 | FAILED: bin/llvm-tblgen 02:48:23 | : && /home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0/recipe-sysroot-native/usr/bin/x86_64-emitsdk-linux/x86_64-emitsdk-linux-clang++ --sysroot=/home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0/recipe-sysroot -O2 -pipe -fmacro-prefix-map=/home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0=/usr/src/debug/nativesdk-clang/9.0.0-r0 -fdebug-prefix-map=/home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0=/usr/src/debug/nativesdk-clang/9.0.0-r0 -fdebug-prefix-map=/home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0/recipe-sysroot= -fdebug-prefix-map=/home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0/recipe-sysroot-native= -fPIC -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -std=c++11 -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wstring-conversion -fdiagnostics-color -ffunction-sections -fdata-sections -flto=thin -DNDEBUG --sysroot=/home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0/recipe-sysroot -O2 -pipe -fmacro-prefix-map=/home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0=/usr/src/debug/nativesdk-clang/9.0.0-r0 -fdebug-prefix-map=/home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0=/usr/src/debug/nativesdk-clang/9.0.0-r0 -fdebug-prefix-map=/home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0/recipe-sysroot= -fdebug-prefix-map=/home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0/recipe-sysroot-native= -Wl,-O1 -Wl,-rpath-link,/home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0/recipe-sysroot/usr/local/emit-x86_64/sysroots/x86_64-emitsdk-linux/usr/lib/.. -Wl,-rpath,/usr/local/emit-x86_64/sysroots/x86_64-emitsdk-linux/usr/lib/.. -Wl,-dynamic-linker,/usr/local/emit-x86_64/sysroots/x86_64-emitsdk-linux/lib/ld-linux-x86-64.so.2 -fuse-ld=gold -Wl,-O1 -Wl,-rpath-link,/home/cleanbuild/build/workspace/soc-image-v2019.07/tmp-glibc/work/x86_64-nativesdk-emitsdk-linux/nativesdk-clang/9.0.0-r0/recipe-sysroot/usr/local/emit-x86_64/sysroots/x86_64-emitsdk-linux/usr/lib/.. -Wl,-rpath,/usr/local/emit-x86_64/sysroots/x86_64-emitsdk-linux/usr/lib/.. -Wl,-dynamic-linker,/usr/local/emit-x86_64/sysroots/x86_64-emitsdk-linux/lib/ld-linux-x86-64.so.2 -fuse-ld=gold -flto=thin -Wl,-allow-shlib-undefined -Wl,-O3 -Wl,--gc-sections utils/TableGen/CMakeFiles/llvm-tblgen.dir/AsmMatcherEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/AsmWriterEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/AsmWriterInst.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/Attributes.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/CallingConvEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/CodeEmitterGen.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/CodeGenDAGPatterns.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/CodeGenHwModes.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/CodeGenInstruction.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/CodeGenMapTable.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/CodeGenRegisters.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/CodeGenSchedule.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/CodeGenTarget.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/DAGISelEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/DAGISelMatcherEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/DAGISelMatcherGen.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/DAGISelMatcherOpt.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/DAGISelMatcher.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/DFAPacketizerEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/DisassemblerEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/ExegesisEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/FastISelEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/FixedLenDecoderEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/GlobalISelEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/InfoByHwMode.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/InstrInfoEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/InstrDocsEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/IntrinsicEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/OptParserEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/PredicateExpander.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/PseudoLoweringEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/RISCVCompressInstEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/RegisterBankEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/RegisterInfoEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/SDNodeProperties.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/SearchableTableEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/SubtargetEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/SubtargetFeatureInfo.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/TableGen.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/Types.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/X86DisassemblerTables.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/X86EVEX2VEXTablesEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/X86FoldTablesEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/X86ModRMFilters.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/X86RecognizableInstr.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/WebAssemblyDisassemblerEmitter.cpp.o utils/TableGen/CMakeFiles/llvm-tblgen.dir/CTagsEmitter.cpp.o -o bin/llvm-tblgen -Wl,-rpath,"\$ORIGIN/../lib" lib/libLLVMSupport.a lib/libLLVMTableGen.a -lpthread lib/libLLVMSupport.a -lz -lrt -ldl -lpthread -lm lib/libLLVMDemangle.a && : 02:48:23 | clang-9: error: unable to execute command: Segmentation fault (core dumped) 02:48:23 | clang-9: error: linker command failed due to signal (use -v to see invocation)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants