1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21# 22# Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. 23# 24 25# rebind basic build macros to 64-bit versions 26 27CFLAGS= $(CFLAGS64) 28CCFLAGS= $(CCFLAGS64) 29COPTFLAG= $(COPTFLAG64) 30CCOPTFLAG= $(CCOPTFLAG64) 31COMPILE.c= $(COMPILE64.c) 32COMPILE.cc= $(COMPILE64.cc) 33COMPILE.s= $(COMPILE64.s) 34COMPILE.d= $(COMPILE64.d) 35COMPILE.b= $(COMPILE64.b) 36LINK.c= $(LINK64.c) 37LINK.cc= $(LINK64.cc) 38LINT.c= $(LINT64.c) 39 40CTF_FLAGS= $(CTF_FLAGS_64) 41 42OFFSETS_CREATE= $(OFFSETS_CREATE64) 43 44# 45# Some library path hackery, to allow building of partial workspaces 46# and properly set the 64-bit library paths with 'ws' 47# 48LDLIBS1= $(ENVLDLIBS1:%=%/$(MACH64)) 49LDLIBS2= $(ENVLDLIBS2:%=%/$(MACH64)) 50LDLIBS3= $(ENVLDLIBS3:%=%/$(MACH64)) 51LDLIBS64 = $(LDLIBS1) $(LDLIBS2) $(LDLIBS3) 52# 53# Moved these up to the top level here, so they can be overridden 54# 55LDLIBS.cmd = $(LDLIBS64) 56LDLIBS.lib = $(LDLIBS64) 57 58# 59# Override Makefile.master's settings of SFWLIBDIR and GCCLIBDIR 60# 61SFWLIBDIR= $(SFWLIBDIR64) 62GCCLIBDIR= $(GCCLIBDIR64) 63 64# 65# Override Makefile.master's settings of CC, CCC, AS and LINT 66# 67CC= $($(MACH64)_CC) 68CCC= $($(MACH64)_CCC) 69CPP= $($(MACH64)_CPP) 70AS= $($(MACH64)_AS) 71LD= $($(MACH64)_LD) 72LINT= $($(MACH64)_LINT) 73 74REAL_CC= $(CW_CC_CMD:sh) 75REAL_CCC= $(CW_CCC_CMD:sh) 76 77BUILD.SO= $(CC) $(CFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) \ 78 $(PICS) $(EXTPICS) -L $(ROOTLIBDIR64) $(LDLIBS) 79 80# 81# ld(1) requires the -64 option to create a 64-bit filter solely from a mapfile 82# 83MAPFILECLASS= -64 84 85CCNEEDED = -lCrun 86$(__GNUC64)CCNEEDED = -L$(GCCLIBDIR) -R$(GCCLIBDIR) -lstdc++ 87$(__GNUC64)CCNEEDED += -lgcc_s 88 89BUILDCCC.SO= $(CCC) $(CCFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) \ 90 $(PICS) $(EXTPICS) $(LDLIBS) $(CCNEEDED) 91MAPFILE.NGB = $(MAPFILE.NGB_$(MACH64)) 92