update stepping test to produce a fixed exe on windows

This commit is contained in:
Nikita Smith
2026-06-02 12:10:13 -07:00
committed by Ryan Fleury
parent f59784bba0
commit 2ded251f7e
+4 -2
View File
@@ -2,8 +2,8 @@
/// windows: { /// windows: {
/// compile: "/Od /Z7 /c main.c /Fo:main.obj" /// compile: "/Od /Z7 /c main.c /Fo:main.obj"
/// compile: "/Od /Z7 /c foo.c /Fo:foo.obj" /// compile: "/Od /Z7 /c foo.c /Fo:foo.obj"
/// link: "/debug:full /dll foo.obj /out:foo.dll /implib:foo.lib" /// link: "/fixed /debug:full /dll foo.obj /out:foo.dll /implib:foo.lib"
/// link: "/debug:full main.obj foo.lib /out:main.exe" /// link: "/fixed /debug:full main.obj foo.lib /out:main.exe"
/// launch: "main.exe" /// launch: "main.exe"
/// } /// }
/// linux: { /// linux: {
@@ -11,6 +11,8 @@
/// launch: "./main" /// launch: "./main"
/// } /// }
/// } /// }
///
// TODO: linux: -no-pie crashes the tracer
/// file: "foo.c" /// file: "foo.c"