...
This commit is contained in:
@@ -59,7 +59,7 @@ var cFilePath = Path.Combine(".build", "out.c");
|
||||
|
||||
File.WriteAllText(cFilePath, c);
|
||||
|
||||
using var process = Process.Start("gcc", ["-ffreestanding", "-nostartfiles", "-c", "-o", Path.Combine(".build", "out.o"), cFilePath]);
|
||||
using var process = Process.Start("gcc", ["-ffreestanding", "-nostartfiles", "-std=c23", "-g", "-c", "-o", Path.Combine(".build", "out.o"), cFilePath]);
|
||||
|
||||
process.WaitForExit();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user