1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Use -ieee alpha flag for gcc and egcs only.

This commit is contained in:
Bruce Momjian
1999-07-20 16:48:58 +00:00
parent 41b60ba7ad
commit 7944d501f4
6 changed files with 186 additions and 85 deletions

View File

@@ -4,7 +4,7 @@
# Makefile for utils/adt
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.23 1999/07/20 02:44:09 momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.24 1999/07/20 16:48:55 momjian Exp $
#
#-------------------------------------------------------------------------
@@ -15,8 +15,13 @@ CFLAGS += -I../..
# seems to be required for some date/time stuff 07/19/1999 bjm
ifeq ($(CPU),alpha)
ifeq ($(CC), gcc)
CFLAGS+= -mieee
endif
ifeq ($(CC), egcs)
CFLAGS+= -mieee
endif
endif
ifdef MULTIBYTE
CFLAGS+= $(MBFLAGS)