xref: /illumos-gate/usr/src/Makefile.master.64 (revision aa9ef484)
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# Copyright 2014 Garrett D'Amore <garrett@damore.org>
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)
36COMPILE.b=	$(COMPILE64.b)
37LINK.c=		$(LINK64.c)
38LINK.cc=	$(LINK64.cc)
39LINT.c=		$(LINT64.c)
40
41CTF_FLAGS=	$(CTF_FLAGS_64)
42
43OFFSETS_CREATE=	$(OFFSETS_CREATE64)
44
45#
46# Moved these up to the top level here, so they can be overridden
47#
48LDLIBS.cmd =	$(LDLIBS64)
49LDLIBS.lib =	$(LDLIBS64)
50
51#
52# Override Makefile.master's settings of GCCLIBDIR
53#
54GCCLIBDIR=	$(GCCLIBDIR64)
55
56#
57# Override Makefile.master's settings of CC, CCC, AS and LINT
58#
59CC=		$($(MACH64)_CC)
60CCC=		$($(MACH64)_CCC)
61CPP=		$($(MACH64)_CPP)
62AS=		$($(MACH64)_AS)
63LD=		$($(MACH64)_LD)
64LINT=		$($(MACH64)_LINT)
65
66BUILD.SO=	$(CC) $(CFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) \
67		$(PICS) $(EXTPICS) -L $(ROOTLIBDIR64) $(LDLIBS)
68
69#
70# ld(1) requires the -64 option to create a 64-bit filter solely from a mapfile
71#
72MAPFILECLASS=	-64
73
74CCNEEDED =		-lCrun
75$(__GNUC64)CCNEEDED =	-L$(GCCLIBDIR) -lstdc++
76$(__GNUC64)CCNEEDED +=	-lgcc_s
77
78BUILDCCC.SO=    $(CCC) $(CCFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) \
79		$(PICS) $(EXTPICS) $(LDLIBS) $(CCNEEDED)
80MAPFILE.NGB =	$(MAPFILE.NGB_$(MACH64))
81