diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2019-04-01 03:53:22 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2019-04-01 03:53:22 +0000 |
commit | 2e3b76572cf2a91732afcb78347a5e73bd2d1c9c (patch) | |
tree | 5e9591192c38777d51b75e2e82662ca788c395c0 /lib | |
parent | e11c8b75c52d83ac12b237b17128625452fb4f3c (diff) |
Compile with -gdwarf-4 to suppress wrnings about DWARF2 in assembly code
that includes retguard code.
ok mortimer@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/arch/aarch64/Makefile.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/arch/aarch64/Makefile.inc b/lib/libc/arch/aarch64/Makefile.inc index 20eea05c66b..320c45cfaa4 100644 --- a/lib/libc/arch/aarch64/Makefile.inc +++ b/lib/libc/arch/aarch64/Makefile.inc @@ -1,6 +1,9 @@ -# $OpenBSD: Makefile.inc,v 1.1 2017/01/11 18:09:24 patrick Exp $ +# $OpenBSD: Makefile.inc,v 1.2 2019/04/01 03:53:21 kettenis Exp $ # $NetBSD: Makefile.inc,v 1.5 2002/07/10 04:29:06 thorpej Exp $ .include <bsd.own.mk> +# Suppress DWARF2 warnings +DEBUG?= -gdwarf-4 + CERROR= cerror.S |