Lines Matching +full:target +full:- +full:module
4 Subject: [PATCH] module/system/base/target.scm: support riscv32
8 system/base/target.scm:132:16: In procedure triplet-pointer-size:
12 - http://autobuild.buildroot.org/results/6705630c1484239ec8b73d57ebc2e2570fbfc8f8
14 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
15 ---
16 module/system/base/target.scm | 1 +
19 diff --git a/module/system/base/target.scm b/module/system/base/target.scm
21 --- a/module/system/base/target.scm
22 +++ b/module/system/base/target.scm
23 @@ -116,6 +116,7 @@
25 ((string-match "^x86_64-.*-gnux32" triplet) 4) ; x32
27 + ((string-match "32$" cpu) 4)
28 ((string-match "64$" cpu) 8)
29 ((string-match "64_?[lbe][lbe]$" cpu) 8)
31 --