- Jun
- 98
- 0
Hello.
There is an issue with "Color 00" command.
Some code
Some calls:
Good
Good
Not good
Why this issue is important for me?
Building boost library (any version) under TCC fails due to mentioned issue.
Example invocation of boost script: "bootstrap.bat mingw" - parameter mingw is not recognized and default (empty value) is used.
Inside the build.bat "color 00" is used to set non-zero value of errorlevel, under TCC it is not set.
There is an issue with "Color 00" command.
Some code
Code:
@Echo off
*Set ok=OK
*Color %1 2>nul
If ErrorLevel=1 Set ok=FAIL
color
echo %1 %ok
Some calls:
Code:
c.btm 01
01 OK
Code:
c.btm 11
11 FAIL
Code:
c.btm 00
00 OK
Why this issue is important for me?
Building boost library (any version) under TCC fails due to mentioned issue.
Example invocation of boost script: "bootstrap.bat mingw" - parameter mingw is not recognized and default (empty value) is used.
Inside the build.bat "color 00" is used to set non-zero value of errorlevel, under TCC it is not set.