bug-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#18933: ATLAS fails to build on mips


From: Federico Beffa
Subject: bug#18933: ATLAS fails to build on mips
Date: Sat, 8 Nov 2014 22:45:18 +0100

I'm trying to pass an architecture parameter to configure. However, if
I do something like

...
       #:configure-flags
       `(...
         ;; On non "x86_64" / "i686" platforms, do not guess processor
         ;; architecture (because it fails) and do not use ISA extensions.
         ;; We set MACHINETYPE = 52 'generic' and ISA = 1 'none'.
         ,,(if (not (and (string-prefix? "x86_64" (%current-system))
                       (string-prefix? "i686" (%current-system))))
             "-A 52 -V 1")
...

the configure flags are not recognized. Differently from this, if I
pass each parameter as a separate string as in

"-A" "52" "-V" "1"

they are recognized. Do you have a suggestion for how to achieve this
without 4 equal 'if'?

Regards,
Fede





reply via email to

[Prev in Thread] Current Thread [Next in Thread]