Print this page
9128 cw(1onbld) should be able to run multiple shadows
9129 file-locking tests shouldn't build multiple source files in one compiler invocation
9130 DTrace tst.gcc.d isn't useful
9132 cw(1onbld) shouldn't shadow pure preprocessing
Reviewed by: Toomas Soome <tsoome@me.com>
Reviewed? by: Yuri Pankov <yuripv@yuripv.net>
Reviewed? by: Robert Mustacchi <rm@joyent.com>
Reviewed? by: Jason King <jason.king@joyent.com>
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/Makefile.master.64
+++ new/usr/src/Makefile.master.64
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21 #
22 22 # Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
23 23 # Copyright 2014 Garrett D'Amore <garrett@damore.org>
24 24 #
25 25
26 26 # rebind basic build macros to 64-bit versions
27 27
28 28 CFLAGS= $(CFLAGS64)
29 29 CCFLAGS= $(CCFLAGS64)
30 30 COPTFLAG= $(COPTFLAG64)
31 31 CCOPTFLAG= $(CCOPTFLAG64)
32 32 COMPILE.c= $(COMPILE64.c)
33 33 COMPILE.cc= $(COMPILE64.cc)
34 34 COMPILE.s= $(COMPILE64.s)
35 35 COMPILE.d= $(COMPILE64.d)
36 36 COMPILE.b= $(COMPILE64.b)
37 37 LINK.c= $(LINK64.c)
38 38 LINK.cc= $(LINK64.cc)
39 39 LINT.c= $(LINT64.c)
40 40
41 41 CTF_FLAGS= $(CTF_FLAGS_64)
42 42
43 43 OFFSETS_CREATE= $(OFFSETS_CREATE64)
44 44
45 45 #
46 46 # Moved these up to the top level here, so they can be overridden
47 47 #
48 48 LDLIBS.cmd = $(LDLIBS64)
49 49 LDLIBS.lib = $(LDLIBS64)
50 50
51 51 #
52 52 # Override Makefile.master's settings of GCCLIBDIR
53 53 #
54 54 GCCLIBDIR= $(GCCLIBDIR64)
55 55
↓ open down ↓ |
55 lines elided |
↑ open up ↑ |
56 56 #
57 57 # Override Makefile.master's settings of CC, CCC, AS and LINT
58 58 #
59 59 CC= $($(MACH64)_CC)
60 60 CCC= $($(MACH64)_CCC)
61 61 CPP= $($(MACH64)_CPP)
62 62 AS= $($(MACH64)_AS)
63 63 LD= $($(MACH64)_LD)
64 64 LINT= $($(MACH64)_LINT)
65 65
66 -REAL_CC= $(CW_CC_CMD:sh)
67 -REAL_CCC= $(CW_CCC_CMD:sh)
68 -
69 66 BUILD.SO= $(CC) $(CFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) \
70 67 $(PICS) $(EXTPICS) -L $(ROOTLIBDIR64) $(LDLIBS)
71 68
72 69 #
73 70 # ld(1) requires the -64 option to create a 64-bit filter solely from a mapfile
74 71 #
75 72 MAPFILECLASS= -64
76 73
77 74 CCNEEDED = -lCrun
78 75 $(__GNUC64)CCNEEDED = -L$(GCCLIBDIR) -lstdc++
79 76 $(__GNUC64)CCNEEDED += -lgcc_s
80 77
81 78 BUILDCCC.SO= $(CCC) $(CCFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) \
82 79 $(PICS) $(EXTPICS) $(LDLIBS) $(CCNEEDED)
83 80 MAPFILE.NGB = $(MAPFILE.NGB_$(MACH64))
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX