We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8defb3f commit 94bf4bfCopy full SHA for 94bf4bf
src/tbb/build/common_rules.inc
@@ -110,6 +110,12 @@ LINK_FILES+=$(TEST_LIBS)
110
cpp <$< | grep -v '^#' >$*.tmp
111
$(ASM) $(ASM_FLAGS) -o $@ $*.tmp
112
113
+ifdef rtools
114
+# Line 70 doesn't work with rtool's version of make. The symptom being that the asm rule kicks off instead, and these rules are cl only
115
+%.$(OBJ): %.cpp
116
+ $(CPLUS) $(OUTPUTOBJ_KEY)$@ $(COMPILE_ONLY) $(CPLUS_FLAGS) $(CXX_ONLY_FLAGS) $(CXX_WARN_SUPPRESS) $(INCLUDES) $<
117
+endif
118
+
119
# Rule for generating .E file if needed for visual inspection
120
# Note that ICL treats an argument after PREPROC_ONLY as a file to open,
121
# so all uses of PREPROC_ONLY should be immediately followed by a file name
0 commit comments