We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1279771 commit 14507f5Copy full SHA for 14507f5
src/test/run-make-fulldeps/issue-36710/Makefile
src/test/run-make-fulldeps/issue-36710/foo.cpp
src/test/run-make-fulldeps/issue-36710/foo.rs
src/test/run-make-fulldeps/tools.mk
@@ -59,14 +59,12 @@ endif
59
60
ifdef IS_MSVC
61
COMPILE_OBJ = $(CC) -c -Fo:`cygpath -w $(1)` $(2)
62
-COMPILE_OBJ_CXX = $(CXX) -c -Fo:`cygpath -w $(1)` $(2)
63
NATIVE_STATICLIB_FILE = $(1).lib
64
NATIVE_STATICLIB = $(TMPDIR)/$(call NATIVE_STATICLIB_FILE,$(1))
65
OUT_EXE=-Fe:`cygpath -w $(TMPDIR)/$(call BIN,$(1))` \
66
-Fo:`cygpath -w $(TMPDIR)/$(1).obj`
67
else
68
COMPILE_OBJ = $(CC) -c -o $(1) $(2)
69
-COMPILE_OBJ_CXX = $(CXX) -c -o $(1) $(2)
70
NATIVE_STATICLIB_FILE = lib$(1).a
71
NATIVE_STATICLIB = $(call STATICLIB,$(1))
72
OUT_EXE=-o $(TMPDIR)/$(1)
0 commit comments