Passing additional enviroment variables to amu for use in MakeFiles
Rick Murray (539) 13840 posts |
I am looking to rebuild my hacked-about version of DeskLib on new hardware. While I rolled my own 32 bit conversion and compiled it with an old toolset on a RiscPC, there are big problems with the build process with all-new kit because the tools run in a 26 bit world. This was not difficult. I removed the arcane and freaky pile of scripts and assorted programs and just replaced it with a short BASIC program that goes through and deletes all the The reason for this post. I don’t fancy patching all of the MakeFiles to specify a (26/)32 bit world. Though, I don’t think I have to, for the macros in each are like this:
The important part is The commands I generate are:
What would I need to add to this line to define CCExtra as “-apcs 3/32 -Wxxx -exxx”, and ASMExtra as “—throwback —32”? |
GavinWraith (26) 1563 posts |
I do not see any h commandline flag in the Acorn DDE manual. |
Colin (478) 2433 posts |
amu variable=value see amu -h |
Jeffrey Lee (213) 6048 posts |
It’s as simple as:
|
Rick Murray (539) 13840 posts |
That’s it? Just define it on the command line? Whoo. So simple! ;-) |