mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 07:40:07 +02:00
23 lines
584 B
Plaintext
23 lines
584 B
Plaintext
From 85cd06b9f153fa8b77e82d20cd561f0ac9bbba4c Mon Sep 17 00:00:00 2001
|
|
From: Adrien Destugues <pulkomandy@gmail.com>
|
|
Date: Sat, 25 Jul 2015 09:14:21 +0200
|
|
Subject: gcc2 fix.
|
|
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index 92fd825..2cc78d1 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -2,7 +2,7 @@
|
|
# Makefile for exomizer
|
|
#
|
|
WFLAGS = -Wall -Wstrict-prototypes
|
|
-CFLAGS = $(WFLAGS) -O3 -ffast-math -mtune=i686 -fomit-frame-pointer -fgcse -pedantic
|
|
+CFLAGS = $(WFLAGS) -O3 -ffast-math -march=i686 -fomit-frame-pointer -fgcse -pedantic
|
|
LDFLAGS = -s
|
|
|
|
#CFLAGS = -g -mtune=i686 $(WFLAGS)
|
|
--
|
|
2.2.2
|
|
|