-
Hi, I am trying to use an avr32-bit compiler toolchain located in a local directory next to my native-file: # avr32.ini
[binaries]
c = 'avr32-toolchain/bin/avr32-gcc'
cpp = 'avr32-toolchain/bin/avr32-g++' And then I use meson setup --native-file avr32.ini build The result message seems to indicate that the compiler chosen is my system gcc, and not the one specified.
Running ninja confirms this: ninja -C build
I have tried using both EDIT: Versions
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The toolchain must be in the system path, otherwise, you need to use something like @GLOBAL_SOURCE_ROOT@ to refer to the current path.
now try
|
Beta Was this translation helpful? Give feedback.
The toolchain must be in the system path, otherwise, you need to use something like @GLOBAL_SOURCE_ROOT@ to refer to the current path.
add in your avr32.ini
now try