Revision 3fea56ef77a33273bf5af6f432163b30c0a0e1dc authored by jsmall-nvidia on 10 March 2023, 19:19:48 UTC, committed by GitHub on 10 March 2023, 19:19:48 UTC
* #include an absolute path didn't work - because paths were taken to always be relative.

* Add versioning to CompileOptions for DownstreamCompiler so we can add new options without breaking binary interface.

* Add support for debug info format to API/command line processing.

* Small simplification.

* Add support for adding PDB output from a compilation.

* Use builtin offset of directly.

* Fix typo in debug.
1 parent e39893e
Raw File
build_toc.ps1
$job = Start-Job -ArgumentList $PSScriptRoot -ScriptBlock {
    Set-Location $args[0]
    $code = (Get-Content -Raw -Path "scripts/Program.cs").ToString()
    $assemblies = ("System.Core", "System.IO", "System.Collections")
    Add-Type -ReferencedAssemblies $assemblies -TypeDefinition $code -Language CSharp
    $path = Join-Path -Path $args[0] -ChildPath "user-guide"
    [toc.Builder]::Run($path);
    $path = Join-Path -Path $args[0] -ChildPath "gfx-user-guide"
    [toc.Builder]::Run($path);
}
Wait-Job $job
Receive-Job -Job $job
back to top