stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1 | # |
| 2 | # CDDL HEADER START |
| 3 | # |
| 4 | # The contents of this file are subject to the terms of the |
rie | 24da5b3 | 2007-05-17 16:27:31 -0700 | [diff] [blame] | 5 | # Common Development and Distribution License (the "License"). |
| 6 | # You may not use this file except in compliance with the License. |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 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 | # |
Rod Evans | 1e49577 | 2010-06-28 15:32:48 -0700 | [diff] [blame] | 22 | # Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. |
Garrett D'Amore | 538aa54 | 2014-07-06 12:52:24 -0700 | [diff] [blame] | 23 | # Copyright 2014 Garrett D'Amore <garrett@damore.org> |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 24 | # |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 25 | |
| 26 | # rebind basic build macros to 64-bit versions |
| 27 | |
| 28 | CFLAGS= $(CFLAGS64) |
| 29 | CCFLAGS= $(CCFLAGS64) |
| 30 | COPTFLAG= $(COPTFLAG64) |
| 31 | CCOPTFLAG= $(CCOPTFLAG64) |
| 32 | COMPILE.c= $(COMPILE64.c) |
| 33 | COMPILE.cc= $(COMPILE64.cc) |
| 34 | COMPILE.s= $(COMPILE64.s) |
| 35 | COMPILE.d= $(COMPILE64.d) |
dh142964 | 4c06356 | 2009-09-30 13:40:27 -0600 | [diff] [blame] | 36 | COMPILE.b= $(COMPILE64.b) |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 37 | LINK.c= $(LINK64.c) |
| 38 | LINK.cc= $(LINK64.cc) |
| 39 | LINT.c= $(LINT64.c) |
| 40 | |
Richard Lowe | 2d4be7a | 2012-09-07 23:51:24 -0400 | [diff] [blame] | 41 | CTF_FLAGS= $(CTF_FLAGS_64) |
| 42 | |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 43 | OFFSETS_CREATE= $(OFFSETS_CREATE64) |
| 44 | |
| 45 | # |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 46 | # Moved these up to the top level here, so they can be overridden |
| 47 | # |
| 48 | LDLIBS.cmd = $(LDLIBS64) |
| 49 | LDLIBS.lib = $(LDLIBS64) |
| 50 | |
| 51 | # |
Richard PALO | cdf815b | 2015-04-11 18:31:04 +0200 | [diff] [blame] | 52 | # Override Makefile.master's settings of GCCLIBDIR |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 53 | # |
Richard Lowe | 6a3e8e8 | 2012-04-14 20:29:22 -0400 | [diff] [blame] | 54 | GCCLIBDIR= $(GCCLIBDIR64) |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 55 | |
| 56 | # |
| 57 | # Override Makefile.master's settings of CC, CCC, AS and LINT |
| 58 | # |
| 59 | CC= $($(MACH64)_CC) |
| 60 | CCC= $($(MACH64)_CCC) |
| 61 | CPP= $($(MACH64)_CPP) |
| 62 | AS= $($(MACH64)_AS) |
| 63 | LD= $($(MACH64)_LD) |
| 64 | LINT= $($(MACH64)_LINT) |
| 65 | |
| 66 | BUILD.SO= $(CC) $(CFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) \ |
Rod Evans | 1e49577 | 2010-06-28 15:32:48 -0700 | [diff] [blame] | 67 | $(PICS) $(EXTPICS) -L $(ROOTLIBDIR64) $(LDLIBS) |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 68 | |
Rod Evans | 2a8d6eb | 2009-05-07 16:01:18 -0700 | [diff] [blame] | 69 | # |
| 70 | # ld(1) requires the -64 option to create a 64-bit filter solely from a mapfile |
| 71 | # |
| 72 | MAPFILECLASS= -64 |
| 73 | |
wesolows | 159cf8a | 2005-08-18 18:05:02 -0700 | [diff] [blame] | 74 | CCNEEDED = -lCrun |
Keith M Wesolowski | 494f7e1 | 2013-07-17 17:05:07 -0700 | [diff] [blame] | 75 | $(__GNUC64)CCNEEDED = -L$(GCCLIBDIR) -lstdc++ |
Richard Lowe | 1a5ea53 | 2012-06-25 21:03:47 -0400 | [diff] [blame] | 76 | $(__GNUC64)CCNEEDED += -lgcc_s |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 77 | |
Rod Evans | 1e49577 | 2010-06-28 15:32:48 -0700 | [diff] [blame] | 78 | BUILDCCC.SO= $(CCC) $(CCFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) \ |
| 79 | $(PICS) $(EXTPICS) $(LDLIBS) $(CCNEEDED) |
rie | 24da5b3 | 2007-05-17 16:27:31 -0700 | [diff] [blame] | 80 | MAPFILE.NGB = $(MAPFILE.NGB_$(MACH64)) |