mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Added -fno-strict-aliasing
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@16841 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
73e334efe3
commit
3d4f80e279
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri May 30 23:28:55 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* common.make (OBJC_FLAGS): Added -fno-strict-aliasing.
|
||||
|
||||
2003-05-29 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* target.make (TARGET_SYSTEM_LIBS): Remove -ldl (added when necessary
|
||||
|
|
|
@ -327,7 +327,10 @@ endif
|
|||
#
|
||||
# Overridable compilation flags
|
||||
#
|
||||
OBJCFLAGS = $(OBJC_NO_IMPORT_FLAGS)
|
||||
# FIXME: We use -fno-strict-aliasing to prevent annoying gcc3.3 compiler warnings.
|
||||
# But we really need to investigate why the warning appear in the first place,
|
||||
# if they are serious or not, and what can be done about it.
|
||||
OBJCFLAGS = $(OBJC_NO_IMPORT_FLAGS) -fno-strict-aliasing
|
||||
CFLAGS =
|
||||
OBJ_DIR_PREFIX =
|
||||
|
||||
|
|
Loading…
Reference in a new issue