We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7b6ca7b + e91a662 commit 1883499Copy full SHA for 1883499
Build/smokeview/Makefile
@@ -393,7 +393,7 @@ gnu_linux_64_check : $(src)
393
394
# ------------- linux_osx_check ----------------
395
396
-linux_osx_check : CFLAGS =
+linux_osx_check : CFLAGS = $(SMV_TESTFLAG)
397
linux_osx_check : $(linux_osx_chk)
398
$(CLANGSUMMARY) smokeview.summary
399
Build/smokeview/check/check_smokeview.sh
@@ -1,3 +1,11 @@
1
#!/bin/bash
2
3
-eval make -j 8 -f ../Makefile linux_osx_check
+if [ "`uname`" == "Darwin" ] ; then
4
+ platform="osx"
5
+ PLATFORM="SMV_TESTFLAG=\"-D pp_OSX\""
6
+else
7
+ platform="linux"
8
+ PLATFORM="SMV_TESTFLAG=\"-D pp_LINUX\""
9
+fi
10
+
11
+eval make -j 8 $PLATFORM -f ../Makefile linux_osx_check
0 commit comments