summaryrefslogtreecommitdiff
blob: dfa1642c7d7ee0ef3cfe925f4cbee5974ae60f91 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
diff -aurN a/galerautils/src/SConscript b/galerautils/src/SConscript
--- a/galerautils/src/SConscript	2019-02-25 10:37:25.000000000 -0500
+++ b/galerautils/src/SConscript	2019-03-07 09:51:27.163226469 -0500
@@ -1,4 +1,4 @@
-Import('env', 'x86', 'sysname', 'machine')
+Import('env', 'sysname', 'machine')
 
 libgalerautils_env = env.Clone()
 
@@ -39,22 +39,6 @@
 crc32c_sources = [ '#/www.evanjones.ca/crc32c.c' ]
 crc32c_objs = crc32c_env.SharedObject(crc32c_sources)
 
-if x86:
-    if machine != 'ppc64' and machine != 'ppc64le':
-        crc32c_env.Append(CFLAGS = ' -msse4.2')
-    if sysname == 'sunos':
-        # Ideally we want to simply strip SSE4.2 flag from the resulting
-        # crc32.pic.o
-        # (see http://ffmpeg.org/pipermail/ffmpeg-user/2013-March/013977.html)
-        # but that requires some serious scons-fu, so we just don't
-        # compile hardware support in if host CPU does not have it.
-        from subprocess import check_call
-        try:
-            check_call("isainfo -v | grep sse4.2 >/dev/null 2>&1", shell=True);
-        except:
-            libgalerautils_env.Append(CPPFLAGS = ' -DCRC32C_NO_HARDWARE')
-            crc32c_env.Append(CPPFLAGS = ' -DCRC32C_NO_HARDWARE')
-
 libgalerautils_env.StaticLibrary('galerautils',
                                  libgalerautils_objs + crc32c_objs)
 
diff -aurN a/SConstruct b/SConstruct
--- a/SConstruct	2019-03-07 09:44:38.588841625 -0500
+++ b/SConstruct	2019-03-07 09:50:06.305952407 -0500
@@ -67,7 +67,7 @@
 build_target = 'all'
 
 # Optimization level
-opt_flags    = ' -g -O3 -DNDEBUG'
+opt_flags    = ' -DNDEBUG'
 
 # Architecture (defaults to build host type)
 compile_arch = ''
@@ -120,33 +120,6 @@
 if gcov:
     opt_flags = opt_flags + ' --coverage -g'
 
-if sysname == 'sunos':
-    compile_arch = ' -mtune=native'
-elif x86:
-    if bits == 32:
-        if machine == 'x86_64':
-            compile_arch = ' -mx32'
-        else:
-            compile_arch = ' -m32 -march=i686'
-            if sysname == 'linux':
-                link_arch = ' -Wl,-melf_i386'
-    else:
-        if machine == 'ppc64':
-          compile_arch = ' -mtune=native'
-          link_arch = ' -Wl,-melf64ppc'
-        elif machine == 'ppc64le':
-          compile_arch = ' -mtune=native'
-          link_arch = ' -Wl,-melf64lppc'
-        else:
-          compile_arch = ' -m64'
-          if sysname == 'linux':
-            link_arch = ' -Wl,-melf_x86_64'
-        link_arch = compile_arch + link_arch
-elif machine == 's390x':
-    compile_arch = ' -mzarch'
-    if bits == 32:
-        compile_arch += ' -m32'
-
 boost      = int(ARGUMENTS.get('boost', 1))
 boost_pool = int(ARGUMENTS.get('boost_pool', 0))
 system_asio= int(ARGUMENTS.get('system_asio', 1))