Advertisement
Guest User

Untitled

a guest
Jul 1st, 2013
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. -include config/feature-tests.mak
  2.  
  3. ifeq ($(call try-cc,$(SOURCE_HELLO),-Werror -fstack-protector-all),y)
  4. CFLAGS := $(CFLAGS) -fstack-protector-all
  5. endif
  6.  
  7. ifeq ($(call try-cc,$(SOURCE_HELLO),-Werror -Wstack-protector),y)
  8. CFLAGS := $(CFLAGS) -Wstack-protector
  9. endif
  10.  
  11. ifeq ($(call try-cc,$(SOURCE_HELLO),-Werror -Wvolatile-register-var),y)
  12. CFLAGS := $(CFLAGS) -Wvolatile-register-var
  13. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement