xref: /illumos-gate/usr/src/Makefile.master.64 (revision 2a8d6eba)
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 2009 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25
26# rebind basic build macros to 64-bit versions
27
28CFLAGS=		$(CFLAGS64)
29CCFLAGS=	$(CCFLAGS64)
30COPTFLAG=	$(COPTFLAG64)
31CCOPTFLAG=	$(CCOPTFLAG64)
32COMPILE.c=	$(COMPILE64.c)
33COMPILE.cc=	$(COMPILE64.cc)
34COMPILE.s=	$(COMPILE64.s)
35COMPILE.d=	$(COMPILE64.d)
36LINK.c=		$(LINK64.c)
37LINK.cc=	$(LINK64.cc)
38LINT.c=		$(LINT64.c)
39
40OFFSETS_CREATE=	$(OFFSETS_CREATE64)
41
42#
43# Some library path hackery, to allow building of partial workspaces
44# and properly set the 64-bit library paths with 'ws'
45#
46LDLIBS1=	$(ENVLDLIBS1:%=%/$(MACH64))
47LDLIBS2=	$(ENVLDLIBS2:%=%/$(MACH64))
48LDLIBS3=	$(ENVLDLIBS3:%=%/$(MACH64))
49LDLIBS64 = 	$(LDLIBS1) $(LDLIBS2) $(LDLIBS3)
50#
51# Moved these up to the top level here, so they can be overridden
52#
53LDLIBS.cmd =	$(LDLIBS64)
54LDLIBS.lib =	$(LDLIBS64)
55
56#
57# Override Makefile.master's settings of SFWLIBDIR
58#
59SFWLIBDIR=	$(SFWLIBDIR64)
60
61#
62# Override Makefile.master's settings of CC, CCC, AS and LINT
63#
64CC=		$($(MACH64)_CC)
65CCC=		$($(MACH64)_CCC)
66CPP=		$($(MACH64)_CPP)
67AS=		$($(MACH64)_AS)
68LD=		$($(MACH64)_LD)
69LINT=		$($(MACH64)_LINT)
70
71REAL_CC=	$(CW_CC_CMD:sh)
72REAL_CCC=	$(CW_CCC_CMD:sh)
73
74BUILD.SO=	$(CC) $(CFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) \
75		$(PICS) -L $(ROOTLIBDIR64) $(LDLIBS)
76
77#
78# ld(1) requires the -64 option to create a 64-bit filter solely from a mapfile
79#
80MAPFILECLASS=	-64
81
82CCNEEDED =		-lCrun
83$(__GNUC64)CCNEEDED =	-L$(SFWLIBDIR) -R$(SFWLIBDIR) -lstdc++	\
84			-lgcc_s_$(MACH64)
85
86BUILDCCC.SO=    $(CCC) $(CCFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) $(PICS) $(LDLIBS) $(CCNEEDED)
87MAPFILE.NGB =	$(MAPFILE.NGB_$(MACH64))
88