Module Name: src
Committed By: mrg
Date: Sun Jun 9 01:56:49 UTC 2019
Modified Files:
src/external/mit/xorg/lib/gallium: Makefile
Log Message:
add ARMDisassembler for the arm section. fixes linkage issue.
unfortunately, this doesn't work. something generates code
with an R_ARM_REL32 relocation and the
llvm::RuntimeDyldELF::resolveARMRelocation() function doesn not
support this and boom:
500 switch (Type) {
501 default:
502 llvm_unreachable("Not implemented relocation type!");
To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/external/mit/xorg/lib/gallium/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/mit/xorg/lib/gallium/Makefile
diff -u src/external/mit/xorg/lib/gallium/Makefile:1.31 src/external/mit/xorg/lib/gallium/Makefile:1.32
--- src/external/mit/xorg/lib/gallium/Makefile:1.31 Fri Jun 7 12:11:43 2019
+++ src/external/mit/xorg/lib/gallium/Makefile Sun Jun 9 01:56:49 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.31 2019/06/07 12:11:43 mrg Exp $
+# $NetBSD: Makefile,v 1.32 2019/06/09 01:56:49 mrg Exp $
# Link the gallium mega driver.
@@ -1013,6 +1013,7 @@ LLVMRT_LIBS+= \
# XXX duplicates
LLVMRT_LIBS+= \
ARMCodeGen \
+ ARMDisassembler \
ARMTargetInfo \
ARMMCTargetDesc \
ARMAsmParser \