MFC r181997:

Add -fno-omit-frame-pointer to CFLAGS used to compile crt1.c on amd64.
This commit is contained in:
Konstantin Belousov 2008-08-29 09:02:53 +00:00
parent 8d75e62c3f
commit 1ecee6f486
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/7/; revision=182438

View File

@ -7,6 +7,7 @@ OBJS= ${SRCS:N*.h:R:S/$/.o/g}
OBJS+= gcrt1.o OBJS+= gcrt1.o
CFLAGS+= -I${.CURDIR}/../common \ CFLAGS+= -I${.CURDIR}/../common \
-I${.CURDIR}/../../libc/include -I${.CURDIR}/../../libc/include
CFLAGS+= -fno-omit-frame-pointer
all: ${OBJS} all: ${OBJS}