diff options
-rw-r--r-- | mdk-stage1/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mdk-stage1/Makefile.common b/mdk-stage1/Makefile.common index cc9e602da..04c070fc2 100644 --- a/mdk-stage1/Makefile.common +++ b/mdk-stage1/Makefile.common @@ -43,9 +43,9 @@ endif #- flags used by all stuff ifeq (ppc, $(ARCH)) -CFLAGS = -Os -pipe -Wall -fomit-frame-pointer +CFLAGS = -Os -pipe -Wall -fomit-frame-pointer -fno-strict-aliasing else -CFLAGS = -Os -pipe -Wall -Werror -W -fomit-frame-pointer +CFLAGS = -Os -pipe -Wall -Werror -W -fomit-frame-pointer -fno-strict-aliasing endif DIETLIBC_INCLUDES = -I$(top_dir)/dietlibc/include -I. -I$(top_dir)/bzlib |