diff --git a/configs/pic32mz-starterkit/README.txt b/configs/pic32mz-starterkit/README.txt index a1b9f9cccff..949c958b1f5 100644 --- a/configs/pic32mz-starterkit/README.txt +++ b/configs/pic32mz-starterkit/README.txt @@ -11,6 +11,7 @@ Contents Board Overview On Board Debug Support Creating Compatible NuttX HEX files + Tool Issues Serial Console LEDs Configurations @@ -161,6 +162,22 @@ Creating Compatible NuttX HEX files # to the top-level build directory. It is the only # required input to mkpichex. +Tool Issues +=========== + + If you use the Pinguino toolchain, you will probably see this error: + + C:\pinguino-11\compilers\p32\bin\p32-ld.exe: target elf32-tradlittlemips not found + + This is due to linker differences in the toolchains. The linker script + at configs/pic32mz-starterkit has: + + OUTPUT_FORMAT("elf32-tradlittlemips") + + This error can be eliminated with the Pinguino toolchain by changing this to: + + OUTPUT_FORMAT("elf32-littlemips") + Serial Console ==============