]> rtime.felk.cvut.cz Git - omk.git/commitdiff
Support for target specific flags is broken in sysless
authorMichal Sojka <sojkam1@fel.cvut.cz>
Fri, 22 Nov 2013 16:49:44 +0000 (17:49 +0100)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Fri, 22 Nov 2013 16:49:44 +0000 (17:49 +0100)
tests/libraries
tests/shlibs

index 25efc35b05c78a692b8271a2732700056201d122..26ab40604305628c64af7947dba312bfd30b7d31 100755 (executable)
@@ -44,6 +44,12 @@ case $OMK_RULES in
 esac
 WVPASS make -C app
 
+
+case $OMK_RULES in
+    sysless) # Sysless rules do not support this (yet)
+       exit 0;;
+esac
+
 WVSTART "Static library with specific CFLAGS"
 cat > 'lib.c' <<EOF
 #if SYM != 123
index 4b800f85601b806d8ea7205e79677ae029e60473..fb539360ea948f577602ace28608808c9986eef2 100755 (executable)
@@ -45,6 +45,11 @@ EOF
 needs_valid_CC
 WVPASS make
 
+case $OMK_RULES in
+    sysless) # Sysless rules do not support this (yet)
+       exit 0;;
+esac
+
 WVSTART "Dynamic library with specific CFLAGS"
 cat > 'lib.c' <<EOF
 #if SYM != 123