diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-09-13 14:27:26 -0400 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-09-13 14:27:26 -0400 |
commit | 818e7f35fada4884b0f5dbb8778bf4379db4f2d5 (patch) | |
tree | 9217613ffc0512c3d45e2a20726b522e8e323a0a | |
parent | 2d46415b1346f164088a49638e21a088562f0b67 (diff) |
Kbuild: squelch warnings for stack limit on broken kernel configs
1280 is considered the absolute minimum for 64bit archs.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | src/Kbuild | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5,6 +5,7 @@ ccflags-y := -O3 -fvisibility=hidden ccflags-$(CONFIG_WIREGUARD_DEBUG) += -DDEBUG -g ccflags-y += -D'pr_fmt(fmt)=KBUILD_MODNAME ": " fmt' +ccflags-y += -Wframe-larger-than=2048 wireguard-y := main.o noise.o device.o peer.o timers.o queueing.o send.o receive.o socket.o peerlookup.o allowedips.o ratelimiter.o cookie.o netlink.o |