We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d30dc2 commit 55e01a7Copy full SHA for 55e01a7
1 file changed
tools/make/lib/deps/openblas.mk
@@ -2,12 +2,19 @@
2
# VARIABLES #
3
4
# Determine the OS:
5
+#
6
+# [1]: https://en.wikipedia.org/wiki/Uname#Examples
7
+# [2]: http://stackoverflow.com/a/27776822/2225624
8
OS := $(shell uname)
9
ifneq (, $(findstring MINGW,$(OS)))
10
OS := WINNT
11
else
12
ifneq (, $(findstring MSYS,$(OS)))
13
14
+else
15
+ifneq (, $(findstring CYGWIN,$(OS)))
16
+ OS := WINNT
17
+endif
18
endif
19
20
0 commit comments