We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01fa440 commit 2b5ddc2Copy full SHA for 2b5ddc2
1 file changed
make/compiler_flags
@@ -70,6 +70,13 @@ CXX_VERSION := $(shell $(CXX) -dumpfullversion -dumpversion 2>&1)
70
CXX_MAJOR := $(word 1,$(subst ., ,$(CXX_VERSION)))
71
CXX_MINOR := $(word 2,$(subst ., ,$(CXX_VERSION)))
72
73
+# disable Make's implicit suffix rules
74
+# see: https://www.gnu.org/software/make/manual/html_node/Implicit-Rules.html
75
+# this should make Make slightly faster, as well as avoiding some unexpected
76
+# behavior when there are other files lying around with the same name as
77
+# Stan models
78
+.SUFFIXES:
79
+
80
################################################################################
81
# Set optional compiler flags for performance
82
#
0 commit comments