Reputation: 311
Am using scons with renesas compiler.
i am able to compile and link my project. But while linking i am getting following message:
"Software license problem:Internal error in licensing or accessing feature UNKNOWN"
even though i have a trial license of Renesas compiler.
I am able to generate executable (.abs file for renesas) for small application even with the above message. when i tried to create executable for a bigger application i am getting following message while linking:
"Software license problem:Internal error in licensing or accessing feature UNKNOWN" Maximum link size limited to 64KB code+data.
I tried creating executables for the above appliations using SCONS on a machine which has valid Renesas license. Even on this machine i saw the same messages and i am not able to generate .abs file. ( In this machine i am able to create executables without using scons)
can any one help me in overcoming this issue. I don't have clues whether the message i am getting is from SCONS or Renesas tool chain.
Thanks
Upvotes: 0
Views: 205
Reputation: 9354
It's possible that your tool chain sets up some environment variables telling the compiler where to find the licence files. scons wipes out your environment, pretty much, and you may not be propagating the information it needs.
Upvotes: 1