hero/code022: Fix two ref positions

This commit is contained in:
Matt Mascarenhas 2019-01-01 00:02:39 +00:00
parent d84bd19364
commit fbe7872b14
1 changed files with 4 additions and 4 deletions

View File

@ -3,14 +3,14 @@
[2:22][Remove DllMain() and successfully recompile][:"hot reloading"]
[3:28][Demo :"hot reloading", and determine to reduce the update lag and enable debugging of it][:run]
[5:58][Visual Studio .pdb unloading][:speech]
[7:00][Try using cl's -Fd flag to output the .pdb to a different location, without success[ref
[7:00][Try using cl's -Fd flag[ref
site="Microsoft Docs"
page="/Fd (Program Database File Name)"
url=https://docs.microsoft.com/en-us/cpp/build/reference/fd-program-database-file-name?view=vs-2017]]
[10:32][Try using cl's -PDB\:filename linker flag to output the .pdb to a different location, successfully[ref
url=https://docs.microsoft.com/en-us/cpp/build/reference/fd-program-database-file-name?view=vs-2017] to output the .pdb to a different location, without success]
[10:32][Try using cl's -PDB\:filename linker flag[ref
site="Microsoft Docs"
page="/PDB (Use Program Database)"
url=https://docs.microsoft.com/en-us/cpp/build/reference/pdb-use-program-database?view=vs-2017]]
url=https://docs.microsoft.com/en-us/cpp/build/reference/pdb-use-program-database?view=vs-2017] to output the .pdb to a different location, successfully]
[11:16][Set the .pdb location using a batch file invocation of %date%]
[16:59][Test out :"hot reloading" to find that we create many .pdb files][:run]
[18:26][Suppress the output of del by piping it to a file]