gnu: axoloti-patcher: Fix include paths.
* gnu/packages/axoloti.scm (axoloti-patcher)[arguments]: Add missing "c++" sub-directory to search paths. Change-Id: Ia3297cb24e02f92ad7af40881b9021af25093e67master
parent
a512bbd23a
commit
1adf1e36d2
gnu/packages
|
@ -320,9 +320,9 @@ runtime.")
|
||||||
(toolchain (assoc-ref inputs "cross-toolchain"))
|
(toolchain (assoc-ref inputs "cross-toolchain"))
|
||||||
(includes (string-append
|
(includes (string-append
|
||||||
toolchain
|
toolchain
|
||||||
"/arm-none-eabi/include:"
|
"/arm-none-eabi/include/c++:"
|
||||||
toolchain
|
toolchain
|
||||||
"/arm-none-eabi/include/arm-none-eabi/armv7e-m")))
|
"/arm-none-eabi/include/c++/arm-none-eabi/armv7e-m")))
|
||||||
(display
|
(display
|
||||||
(string-append "#!" (which "sh") "\n"
|
(string-append "#!" (which "sh") "\n"
|
||||||
"export CROSS_CPATH=" includes "\n"
|
"export CROSS_CPATH=" includes "\n"
|
||||||
|
|
Reference in New Issue