summaryrefslogtreecommitdiff
blob: 86645b961134f5f6da4b3c863bb70c5baabe67a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
--- polyml-5.6-1-orig/sha1/build	2015-09-09 03:05:54.000000000 +1000
+++ polyml-5.6-1/sha1/build	2016-12-28 19:10:36.148579115 +1100
@@ -32,34 +32,34 @@
 
 case "$target" in
   x86-linux)
-    CFLAGS="-fPIC -I. -m32"
-    LDFLAGS="-fPIC -m32 -shared"
+    CFLAGS="-O2 -march=native -ggdb -fvar-tracking-assignments -fvar-tracking -pipe -fPIC -I. -m32"
+    LDFLAGS="-Wl,-O1 -Wl,--as-needed -fPIC -m32 -shared"
     library="$target/libsha1.so"
     test_sha1="test_sha1"
     ;;
   x86_64-linux)
-    CFLAGS="-fPIC -I. -m64"
-    LDFLAGS="-fPIC -m64 -shared"
+    CFLAGS="-O2 -march=native -ggdb -fvar-tracking-assignments -fvar-tracking -pipe -fPIC -I. -m64"
+    LDFLAGS="-Wl,-O1 -Wl,--as-needed -fPIC -m64 -shared"
     library="$target/libsha1.so"
     test_sha1="test_sha1"
     ;;
   x86-darwin)
     LD=libtool
-    CFLAGS="-fPIC -I. -m32"
-    LDFLAGS="-dynamic -lc"
+    CFLAGS="-O2 -march=native -ggdb -fvar-tracking-assignments -fvar-tracking -pipe -fPIC -I. -m32"
+    LDFLAGS="-Wl,-O1 -Wl,--as-needed -dynamic -lc"
     library="$target/libsha1.so"
     test_sha1="test_sha1"
     ;;
   x86_64-darwin)
     LD=libtool
-    CFLAGS="-fPIC -I. -m64"
-    LDFLAGS="-dynamic -lc"
+    CFLAGS="-O2 -march=native -ggdb -fvar-tracking-assignments -fvar-tracking -pipe -fPIC -I. -m64"
+    LDFLAGS="-Wl,-O1 -Wl,--as-needed -dynamic -lc"
     library="$target/libsha1.so"
     test_sha1="test_sha1"
     ;;
   x86-cygwin)
-    CFLAGS="-I. -m32"
-    LDFLAGS="-shared"
+    CFLAGS="-O2 -march=native -ggdb -fvar-tracking-assignments -fvar-tracking -pipe -I. -m32"
+    LDFLAGS="-Wl,-O1 -Wl,--as-needed -shared"
     library="$target/sha1.dll"
     test_sha1="test_sha1.exe"
     ;;
@@ -105,10 +105,6 @@
 $CC $CFLAGS -o $test_sha1 test_sha1.c -ldl
 [ "$?" -ne 0 ] && { exit 1; }
 
-echo "Running tests ..."
-./$test_sha1 $library
-[ "$?" -ne 0 ] && { exit 1; }
-
-rm test_sha1 sha1.o
+exit 0
 
 fi
\ No newline at end of file