diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-03-10 22:52:29 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-03-10 22:52:29 +0000 |
commit | 358f9165fbd44de6c27a9f33d388a6e8ba47b199 (patch) | |
tree | 437d4f97bf0f65ce5c57f8f7ac943f725d3730c0 /distrib/special | |
parent | e1a3edc21c7709af85bd392515bcf0ee02640354 (diff) |
Build install media with -fno-asynchronous-unwind-tables to further
reduce size. Allows a clang 11 amd64 release to complete without
overflowing the floppy image.
ok kettenis@ deraadt@
Diffstat (limited to 'distrib/special')
-rw-r--r-- | distrib/special/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/distrib/special/Makefile.inc b/distrib/special/Makefile.inc index 733d4964d8b..bc3c3ab6a96 100644 --- a/distrib/special/Makefile.inc +++ b/distrib/special/Makefile.inc @@ -1,6 +1,7 @@ # options for all the directories below -COPTS+=-Oz -fno-stack-protector -fno-unwind-tables +COPTS+=-Oz -fno-stack-protector +COPTS+=-fno-unwind-tables -fno-asynchronous-unwind-tables MAN= LDSTATIC=-static NOPIE= |