mescc: Make -m64 work again.
* module/mescc/mescc.scm (arch-get-machine): Make that -m64 on the command line, which sets machine to "64", returns "64" and not "32".
This commit is contained in:
parent
be4514c4de
commit
191d822e95
|
@ -363,7 +363,7 @@
|
||||||
(let* ((machine (option-ref options 'machine #f))
|
(let* ((machine (option-ref options 'machine #f))
|
||||||
(arch (option-ref options 'arch #f))
|
(arch (option-ref options 'arch #f))
|
||||||
(machine (or machine arch "32")))
|
(machine (or machine arch "32")))
|
||||||
(cond ((member machine '("x86_64")) "64")
|
(cond ((member machine '("64" "x86_64")) "64")
|
||||||
((member machine '("arm")) "32")
|
((member machine '("arm")) "32")
|
||||||
(else "32"))))
|
(else "32"))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue