aboutsummaryrefslogtreecommitdiffstats
path: root/testing/ponyc/makefile-remove-march-mtune.patch
blob: 3bee239b16de643de04176dd05284e483ddb1b88 (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
Don't hassle with -march and -mtune, use gcc defaults.

diff --git a/Makefile-ponyc b/Makefile-ponyc
index 50f4936..8f28e1a 100644
--- a/Makefile-ponyc
+++ b/Makefile-ponyc
@@ -108,9 +108,9 @@ else
 endif
 
 LIB_EXT ?= a
-BUILD_FLAGS = -march=$(arch) -mtune=$(tune) -Werror -Wconversion \
+BUILD_FLAGS = -Werror -Wconversion \
   -Wno-sign-conversion -Wextra -Wall
-LINKER_FLAGS = -march=$(arch) -mtune=$(tune) $(LDFLAGS)
+LINKER_FLAGS = $(LDFLAGS)
 AR_FLAGS ?= rcs
 ALL_CFLAGS = -std=gnu11 -fexceptions \
   -DPONY_VERSION=\"$(tag)\" -DLLVM_VERSION=\"$(llvm_version)\" \
@@ -120,7 +120,7 @@ ALL_CFLAGS = -std=gnu11 -fexceptions \
   -DPONY_VERSION_STR=\"$(version_str)\" \
   -D_FILE_OFFSET_BITS=64
 ALL_CXXFLAGS = -std=gnu++11 -fno-rtti
-LL_FLAGS = -mcpu=$(cpu)
+LL_FLAGS =
 
 # Determine pointer size in bits.
 BITS := $(bits)
@@ -135,11 +135,6 @@ ifeq ($(BITS),64)
   endif
 endif
 
-ifneq ($(fpu),)
-  BUILD_FLAGS += -mfpu=$(fpu)
-  LINKER_FLAGS += -mfpu=$(fpu)
-endif
-
 PONY_BUILD_DIR   ?= build/$(config)
 PONY_SOURCE_DIR  ?= src
 PONY_TEST_DIR ?= test