I would like to introduce logic in my teensy firmware such that I can read and write audio data to an SD card. I'm currently evaluating libsndfile, but I'm running into problems with cross compiling the library. When configuring libsndfile for cross compilation, it errors out while compiling a test program with the following error:
You can read a more verbose output here, in this gist.
Interestingly enough, it seems as though that my current toolchain only knows about the following multilibs:
Is there something I'm missing? Is there a preferred cross-compile toolchain for the Teensy3?
Thanks in advance!
Code:
arm-none-eabi-gcc: fatal error: selected multilib '.' not recognized
You can read a more verbose output here, in this gist.
Interestingly enough, it seems as though that my current toolchain only knows about the following multilibs:
Code:
$ arm-none-eabi-gcc -print-multi-lib
.;
thumb2;@mthumb@march=armv7
Is there something I'm missing? Is there a preferred cross-compile toolchain for the Teensy3?
Thanks in advance!