summaryrefslogtreecommitdiffstats
path: root/loader/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-24 00:42:44 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-24 00:42:44 +0000
commit15597c329fd4141fbd994cc6a0fdc9ba63733951 (patch)
treecafd6cb2e90ea249ac7165c484ed9199570b0c57 /loader/Makefile
parente983eb482c662fea2c704815b3fc8ce9276d07d3 (diff)
downloadmpv-15597c329fd4141fbd994cc6a0fdc9ba63733951.tar.bz2
mpv-15597c329fd4141fbd994cc6a0fdc9ba63733951.tar.xz
Remove bug workarounds for ancient gcc and libc versions.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21185 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/Makefile')
-rw-r--r--loader/Makefile13
1 files changed, 2 insertions, 11 deletions
diff --git a/loader/Makefile b/loader/Makefile
index 14b624f5d0..11ad63fca2 100644
--- a/loader/Makefile
+++ b/loader/Makefile
@@ -4,6 +4,8 @@ include ../config.mak
DEFINES=-DMPLAYER -D__WINE__ #-Ddbg_printf=__vprintf \
#-DTRACE=__vprintf # -DDETAILED_OUT
+CFLAGS=-I. -I.. $(OPTFLAGS)
+
SRCS= driver.c afl.c vfl.c
ifneq ($(TARGET_WIN32),yes)
SRCS+= ldt_keeper.c pe_image.c module.c ext.c win32.c \
@@ -13,17 +15,6 @@ endif
OBJS = $(SRCS:.c=.o)
OBJS := $(OBJS:.S=.o)
-# gcc-3.0 produces buggy code for acmStreamOpen() with
-# "-O3 -fomit-frame-pointer" or "-O2 -fomit-frame-pointer
-# -finline-functions -frename-registers" (code is OK with sole -O2),
-# the bad code accesses parameters via %ebp without setting up a
-# propper %ebp first!
-# -fno-omit-frame-pointer works around this gcc-3.0 bug. gcc-2.95.2 is OK.
-# Note: -D_FILE_OFFSET_BITS=32 is required to disable using mmap64(),
-# as it's broken in glibc 2.1.2 (bad header) and 2.1.3 (bad code)
-CFLAGS=-I. -I.. $(OPTFLAGS) -U_FILE_OFFSET_BITS -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
-#CFLAGS=-I. -I.. -O -g #-fno-omit-frame-pointer
-
all: libloader.a
clean: