me
/
guix
Archived
1
0
Fork 0

gnu: axoloti-patcher: Fix include paths.

* gnu/packages/axoloti.scm (axoloti-patcher)[arguments]: Add missing "c++"
sub-directory to search paths.

Change-Id: Ia3297cb24e02f92ad7af40881b9021af25093e67
master
Ricardo Wurmus 2023-12-20 00:58:56 +01:00
parent a512bbd23a
commit 1adf1e36d2
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 2 additions and 2 deletions

View File

@ -320,9 +320,9 @@ runtime.")
(toolchain (assoc-ref inputs "cross-toolchain"))
(includes (string-append
toolchain
"/arm-none-eabi/include:"
"/arm-none-eabi/include/c++:"
toolchain
"/arm-none-eabi/include/arm-none-eabi/armv7e-m")))
"/arm-none-eabi/include/c++/arm-none-eabi/armv7e-m")))
(display
(string-append "#!" (which "sh") "\n"
"export CROSS_CPATH=" includes "\n"