diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-10-29 11:21:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-10-29 11:21:43 +0000 |
commit | 9d947f19358a6d094e4d9e6be5da35b919519fef (patch) | |
tree | 66dc5401540574048668587c8a29120fc02f6cfb /postproc/Makefile | |
parent | abd140db79badd9039af41f377ff9148d9b7d3fa (diff) | |
download | ffmpeg-9d947f19358a6d094e4d9e6be5da35b919519fef.tar.gz |
-fomit-frame-pointer is needed for the PIC code
Originally committed as revision 7957 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/Makefile')
-rw-r--r-- | postproc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postproc/Makefile b/postproc/Makefile index 1c2d244ce0..b1e5940f3d 100644 --- a/postproc/Makefile +++ b/postproc/Makefile @@ -42,7 +42,7 @@ cs_test: $(CS_TEST_OBJS) $(CC) $(CS_TEST_OBJS) -o cs_test postprocess_pic.o: postprocess.c - $(CC) -c $(CFLAGS) -fPIC -DPIC -o $@ $< + $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $< $(SPPLIB): $(SPPOBJS) $(CC) -shared -Wl,-soname,$(SPPLIB).0 \ |