Discussion:
[Scons-users] SCons as build tool for renesas rx600 microcontroller
Marco Pastorelli
2017-10-05 10:06:43 UTC
Permalink
Hi everybody,

I'm trying to use SCons as build tool for a project based on a renesas
rx600 microcontroller.

I run into several problem with the CC-RX compiler
https://www.renesas.com/en-eu/products/software-tools/tools/compiler-assembler/compiler-package-for-rx-family.html

I setup the environment for that toolchain but for example the compiler
won't recognize the '-o' option


I just wondering if anybody has experience using SCons as a microcontroller
project build tool, and maybe give me a hint


Thank you so much!
Marco
Dan Čermák
2017-10-05 10:45:39 UTC
Permalink
Hi Marco,

I using SCons for more or less the same but with a Cortex-M4 and with
arm-none-eabi-gcc and Texas Instrument's ARM compiler.

For Texas Instrument's compiler I had to do some funny business, because
it behaves oddly in some cases and uses completely different option
names. You can achieve most of the changes (like -o being -whatever) by
overriding the CCCOM, CXXCOM and LINKCOM variables (these essentially
tell scons how to invoke your compiler). You can find the documentation
here: http://www.scons.org/doc/2.3.0/HTML/scons-user/a5025.html


Hope this helps,

Dan
Post by Marco Pastorelli
Hi everybody,
I'm trying to use SCons as build tool for a project based on a renesas
rx600 microcontroller.
I run into several problem with the CC-RX compiler
https://www.renesas.com/en-eu/products/software-tools/tools/compiler-assembler/compiler-package-for-rx-family.html
I setup the environment for that toolchain but for example the compiler
won't recognize the '-o' option
I just wondering if anybody has experience using SCons as a microcontroller
project build tool, and maybe give me a hint
Thank you so much!
Marco
_______________________________________________
Scons-users mailing list
https://pairlist4.pair.net/mailman/listinfo/scons-users
Loading...