diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-23 11:39:13 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-23 11:39:13 +0000 |
commit | 82f8788acc1705a735cfa752b3f37b0de32ba390 (patch) | |
tree | cbccd3103dc783dfd56e9f4c562aec445d650ab6 /arch | |
parent | b5bb40f088e8618fa108753099f24f43b17fea21 (diff) | |
download | busybox-82f8788acc1705a735cfa752b3f37b0de32ba390.tar.gz |
- call cc-option to check if the compiler supports the flags we asked to use
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/Makefile b/arch/i386/Makefile index 595868ec5..385dd52be 100644 --- a/arch/i386/Makefile +++ b/arch/i386/Makefile @@ -2,4 +2,4 @@ # Build system # ========================================================================== -CFLAGS += -march=i386 -mpreferred-stack-boundary=2 +CFLAGS += $(call cc-option,-march=i386 -mpreferred-stack-boundary=2,) |