usr/src/Makefile.master.64
author Jon Tibble <meths@btinternet.com>
Mon, 04 May 2015 14:04:39 +0100
branchoi_151a
changeset 254 9c2a4ac793f0
parent 0 b34509ac961f
permissions -rw-r--r--
Bash patch catchup including shellshock

#
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#pragma ident	"@(#)Makefile.master.64	1.4	07/02/21 SMI"

# rebind basic build macros to 64-bit versions

CFLAGS=		$(CFLAGS64)
CCFLAGS=	$(CCFLAGS64)
COPTFLAG=	$(COPTFLAG64)
CCOPTFLAG=	$(CCOPTFLAG64)
COMPILE.c=	$(COMPILE64.c)
COMPILE.s=	$(COMPILE64.s)
COMPILE.cc=	$(COMPILE64.cc)
LINK.c=		$(LINK64.c)
LINK.cc=	$(LINK64.cc)
LINT.c=		$(LINT64.c)

#
# Some library path hackery, to allow building of partial workspaces
# and properly set the 64-bit library paths with 'ws'
#
LDLIBS1=	$(ENVLDLIBS1:%=%/$(MACH64))
LDLIBS2=	$(ENVLDLIBS2:%=%/$(MACH64))
LDLIBS3=	$(ENVLDLIBS3:%=%/$(MACH64))
LDLIBS64 = 	$(LDLIBS1) $(LDLIBS2) $(LDLIBS3)
#
# Moved these up to the top level here, so they can be overridden
#
LDLIBS.cmd =	$(LDLIBS64)
LDLIBS.lib =	$(LDLIBS64)

#
# Override Makefile.master's settings of CC, CCC, and AS
#
CC=		$($(MACH64)_CC)
CCC=		$($(MACH64)_CCC)
AS=		$($(MACH64)_AS)
LD=		$($(MACH64)_LD)


BUILD.SO=	$(CC) $(CFLAGS) -o $@ -G $(DYNFLAGS) $(PICS) \
		-L $(ROOTLIBDIR64) $(LDLIBS)
BUILDCCC.SO=    $(CCC) -o $@ -G $(DYNFLAGS) $(PICS) $(LDLIBS) -lCrun