Steps to repro:
- run Compiler against
hello.c with "--ast-dump": dotnet run --project Cesium.Compiler -- .\Cesium.Samples\hello.c --out out.exe --nologo --ast-dump
- there is no ".\out.exe" file is generated
- run Compiler against
hello.c without "--ast-dump": dotnet run --project Cesium.Compiler -- .\Cesium.Samples\hello.c --out out.exe --nologo
- there is generated ".\out.exe" file
It seems the new output file is not produced when "--ast-dump" is used.
Steps to repro:
hello.cwith "--ast-dump":dotnet run --project Cesium.Compiler -- .\Cesium.Samples\hello.c --out out.exe --nologo --ast-dumphello.cwithout "--ast-dump":dotnet run --project Cesium.Compiler -- .\Cesium.Samples\hello.c --out out.exe --nologoIt seems the new output file is not produced when "--ast-dump" is used.