View | Details | Raw Unified | Return to bug 204281
Collapse All | Expand All

(-)devel/llvm36/files/patch-utils_llvm-build_llvmbuild_main.py (-2 / +3 lines)
Lines 1-11 Link Here
1
--- utils/llvm-build/llvmbuild/main.py.orig
1
--- utils/llvm-build/llvmbuild/main.py.orig
2
+++ utils/llvm-build/llvmbuild/main.py
2
+++ utils/llvm-build/llvmbuild/main.py
3
@@ -660,7 +660,17 @@
3
@@ -718,7 +718,18 @@
4
 
4
 
5
     # We handle a few special cases of target names here for historical
5
     # We handle a few special cases of target names here for historical
6
     # reasons, as these are the names configure currently comes up with.
6
     # reasons, as these are the names configure currently comes up with.
7
-    native_target_name = { 'x86' : 'X86',
7
-    native_target_name = { 'x86' : 'X86',
8
+    native_target_name = { 'amd64' : 'X86',
8
+    native_target_name = { 'aarch64' : 'AArch64',
9
+			   'amd64' : 'X86',
9
+			   'arm' : 'ARM',
10
+			   'arm' : 'ARM',
10
+			   'armeb' : 'ARM',
11
+			   'armeb' : 'ARM',
11
+			   'armv6' : 'ARM',
12
+			   'armv6' : 'ARM',

Return to bug 204281