Skip to content

Commit 3b45466

Browse files
committed
run-make on MSVC: Do not generate object files in the source directory
1 parent aeadc81 commit 3b45466

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/run-make/cdylib/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ all: $(call RUN_BINFILE,foo)
88

99
ifdef IS_MSVC
1010
$(call RUN_BINFILE,foo): $(call DYLIB,foo)
11-
$(CC) $(CFLAGS) foo.c $(TMPDIR)/foo.dll.lib -Fe:`cygpath -w $@`
11+
$(CC) $(CFLAGS) foo.c $(TMPDIR)/foo.dll.lib $(call OUT_EXE,foo)
1212
else
1313
$(call RUN_BINFILE,foo): $(call DYLIB,foo)
1414
$(CC) $(CFLAGS) foo.c -lfoo -o $(call RUN_BINFILE,foo) -L $(TMPDIR)

0 commit comments

Comments
 (0)