diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 2002-01-16 19:29:14 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 2002-01-16 19:29:14 +0000 |
commit | c5602f5c4efcef436367c56c264fa2202c28f310 (patch) | |
tree | 2893b94b19b53d8a8cd4122b4abc34c5224c390e /lib | |
parent | 07fc1384db3cbf81689ddc7c28039dcec79f40fb (diff) |
compile sparc64 version of sha1.go with -O0, too. OK jason@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/hash/Makefile.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/hash/Makefile.inc b/lib/libc/hash/Makefile.inc index f8518dc4546..2bc91cd618b 100644 --- a/lib/libc/hash/Makefile.inc +++ b/lib/libc/hash/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.11 2001/09/25 14:27:18 drahn Exp $ +# $OpenBSD: Makefile.inc,v 1.12 2002/01/16 19:29:13 marc Exp $ # hash functions .PATH: ${LIBCSRCDIR}/hash @@ -20,4 +20,7 @@ sha1.po: ${CC} ${CFLAGS} ${CPPFLAGS} -O0 -c ${.IMPSRC} -o $@ sha1.so: ${CC} ${CFLAGS} ${CPPFLAGS} -O0 ${PICFLAG} -DPIC -c ${.IMPSRC} -o $@ +sha1.go: + ${CC} ${CFLAGS} ${CPPFLAGS} -O0 -g -c ${.IMPSRC} -o $@ + .endif |