File: ignore-m32-m64.patch

package info (click to toggle)
genometools 1.6.6%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 50,576 kB
  • sloc: ansic: 271,876; ruby: 29,930; python: 5,106; sh: 3,083; makefile: 1,213; perl: 219; pascal: 159; haskell: 37; sed: 5
file content (27 lines) | stat: -rw-r--r-- 629 bytes parent folder | download
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
Description: remove explicit -m32 and -m64
Author: Sascha Steinbiss <satta@debian.org>
--- a/Makefile
+++ b/Makefile
@@ -358,22 +358,6 @@
   endif
 endif
 
-ifneq ($(x32),yes)
-  ifeq ($(m32),yes)
-    GT_CFLAGS += -m32
-    GT_LDFLAGS += -m32
-    SQLITE_CFLAGS += -m32
-  endif
-
-  ifeq ($(m64),yes)
-    ifeq (,$(filter $(MACHINE),ia64 alpha mips64 mips64el aarch64))
-      GT_CFLAGS += -m64
-      GT_LDFLAGS += -m64
-      SQLITE_CFLAGS += -m64
-    endif
-  endif
-endif
-
 ifeq ($(findstring clang,$(CC)),clang)
   # do not complain about unnecessary options and more
   GT_CFLAGS += -Qunused-arguments -Wno-parentheses