You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
618 B

  1. From d37fe6af97a45f0567c47932fd5c66d451fcb128 Mon Sep 17 00:00:00 2001
  2. From: Yousong Zhou <yszhou4tech@gmail.com>
  3. Date: Fri, 20 Mar 2020 17:07:03 +0800
  4. Subject: [PATCH] build: tools: fix build failure
  5. Tools build can fail because -stack-protector-all is missing
  6. Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
  7. ---
  8. tools/Makefile.am | 1 +
  9. 1 file changed, 1 insertion(+)
  10. diff --git a/tools/Makefile.am b/tools/Makefile.am
  11. index 702fcdd1..7dc70c4e 100644
  12. --- a/tools/Makefile.am
  13. +++ b/tools/Makefile.am
  14. @@ -8,6 +8,7 @@ AM_CPPFLAGS = \
  15. AM_LDFLAGS = \
  16. $(LIBRT) \
  17. + $(WARN_LDFLAGS) \
  18. $(NULL)
  19. if !OS_WIN32