gnu: lua: Cross compile.
* gnu/packages/lua.scm (lua)[arguments]: Use cc-for-target in make-flags. Set SYSLIBS to include readline.master
parent
1f048676b6
commit
50836eb724
|
@ -64,13 +64,16 @@
|
|||
(build-system gnu-build-system)
|
||||
(inputs `(("readline" ,readline)))
|
||||
(arguments
|
||||
'(#:modules ((guix build gnu-build-system)
|
||||
`(#:modules ((guix build gnu-build-system)
|
||||
(guix build utils)
|
||||
(srfi srfi-1))
|
||||
#:test-target "test"
|
||||
#:make-flags
|
||||
'("MYCFLAGS=-fPIC -DLUA_DL_DLOPEN"
|
||||
"linux")
|
||||
(list "MYCFLAGS=-fPIC -DLUA_DL_DLOPEN"
|
||||
(string-append "CC=" ,(cc-for-target))
|
||||
(string-append "SYSLIBS=-L" (assoc-ref %build-inputs "readline")
|
||||
"/lib")
|
||||
"linux")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
|
|
Reference in New Issue