Strange Warning
I wonder if anyone has an explanation for this little nugget?
From the output log of a build.
c:program files (x86)embarcaderorad studio12.0BinCodeGear.Delphi.Targets : warning W1030: W1030 Invalid compiler directive: ‘true’
Strange Warning
I wonder if anyone has an explanation for this little nugget?
From the output log of a build.
c:program files (x86)embarcaderorad studio12.0BinCodeGear.Delphi.Targets : warning W1030: W1030 Invalid compiler directive: ‘true’
Never see anything like this before.
I think, CodeGear have to be false 🙂
Kiss Nándor
To further confuse the IP ownership curious, the brcc32 still emits
Borland Resource Compiler Version 5.40
Copyright (c) 1990, 1999 Inprise Corporation. All rights reserved.
Go figure 🙂
Under XE5, “Debug Information”setting now has three three states: No Debug info, Limited Debug info (new and for mobile devices, I believe) and Debug info. Previously, “Debug Information” was a true/false value, and using the .dproj from before XE5 to XE5 doesn’t change the setting to something valid 🙁
Search in dproj for true
and replace with
2
Also
false
with
0
Thanks, guys!