Print this page
9852 enable ld(1) guidance and deflib assertions for the illumos build
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/tools/Makefile.tools
+++ new/usr/src/tools/Makefile.tools
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) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
23 23 #
24 24 # Definitions common to tool source.
25 25 #
26 26 include $(SRC)/Makefile.master
27 27
28 28 FILEMODE= 0555
29 29
30 30 TOOLS= $(SRC)/tools
31 31 TOOLS_PROTO= $(TOOLS)/proto/root_$(MACH)-nd
32 32 ROOTOPT= $(TOOLS_PROTO)/opt
33 33 ROOTONBLD= $(ROOTOPT)/onbld
34 34 ROOTONBLDBIN= $(ROOTONBLD)/bin
35 35 ROOTONBLDBINMACH= $(ROOTONBLD)/bin/$(MACH)
36 36 ROOTONBLDETC= $(ROOTONBLD)/etc
37 37 ROOTONBLDLIB= $(ROOTONBLD)/lib
38 38 ROOTONBLDLIBMACH= $(ROOTONBLD)/lib/$(MACH)
39 39 ROOTONBLDLIBMACH64= $(ROOTONBLD)/lib/$(MACH)/64
40 40 ROOTONBLDLIBPERL= $(ROOTONBLD)/lib/perl
41 41 ROOTONBLDLIBPY= $(ROOTONBLD)/lib/python
42 42 ROOTONBLDENV= $(ROOTONBLD)/env
43 43 ROOTONBLDMAN= $(ROOTONBLD)/man
44 44 ROOTONBLDMAN1ONBLD= $(ROOTONBLD)/man/man1onbld
45 45 ROOTONBLDETCABI= $(ROOTONBLD)/etc/abi
↓ open down ↓ |
45 lines elided |
↑ open up ↑ |
46 46 ROOTONBLDETCEXCEPT= $(ROOTONBLD)/etc/exception_lists
47 47 ROOTONBLDSHARE= $(ROOTONBLD)/share
48 48
49 49 CC = $(NATIVECC)
50 50 CCC = $(NATIVECCC)
51 51 CFLAGS = $(NATIVE_CFLAGS)
52 52 CPPFLAGS= -D_TS_ERRNO
53 53 ELFSIGN_O= $(TRUE)
54 54 LDLIBS=
55 55 LDFLAGS= $(MAPFILE.NES:%=-M%) $(MAPFILE.NED:%=-M%) \
56 - $(MAPFILE.PGA:%=-M%)
56 + $(MAPFILE.PGA:%=-M%) \
57 + -B direct
58 +NATIVE_LIBS= libc.so
57 59
58 60 ROOTONBLDPROG= $(PROG:%=$(ROOTONBLDBIN)/%)
59 61 ROOTONBLDMACHPROG= $(PROG:%=$(ROOTONBLDBINMACH)/%)
60 62 ROOTONBLDSHFILES= $(SHFILES:%=$(ROOTONBLDBIN)/%)
61 63 ROOTONBLDMAKEFILES= $(MAKEFILES:%=$(ROOTONBLDBIN)/%)
62 64 ROOTONBLDMACHSHFILES= $(SHFILES:%=$(ROOTONBLDBINMACH)/%)
63 65 ROOTONBLDMACHBINARIES= $(BINARIES:%=$(ROOTONBLDBINMACH)/%)
64 66 ROOTONBLDETCFILES= $(ETCFILES:%=$(ROOTONBLDETC)/%)
65 67 ROOTONBLDENVFILES= $(ENVFILES:%=$(ROOTONBLDENV)/%)
66 68 ROOTONBLDPERLFILES= $(PERLFILES:%=$(ROOTONBLDBIN)/%)
67 69 ROOTONBLDPERLMODULES= $(PERLMODULES:%=$(ROOTONBLDLIBPERL)/%)
68 70 ROOTONBLDPYFILES= $(PYFILES:%=$(ROOTONBLDBIN)/%)
69 71 ROOTONBLDMAN1ONBLDFILES=$(MAN1ONBLDFILES:%=$(ROOTONBLDMAN1ONBLD)/%)
70 72 ROOTONBLDABIAUDITFILES= $(ABI_AUDITFILES:%=$(ROOTONBLDETCABI)/%)
71 73 ROOTONBLDEXCEPTFILES= $(EXCEPTFILES:%=$(ROOTONBLDETCEXCEPT)/%)
72 74
73 75 # Break a chicken-and-egg dependency cycle for the tools build
74 76 SCCSCHECK=@echo would sccscheck
75 77
76 78 $(ROOTONBLDETCABI)/%: %
77 79 $(INS.file)
78 80
79 81 $(ROOTONBLDETCEXCEPT)/%: $(CODEMGR_WS)/exception_lists/%
80 82 $(INS.file)
81 83
82 84 $(ROOTONBLDBIN)/%: %
83 85 $(INS.file)
84 86
85 87 $(ROOTONBLDBINMACH)/%: %
86 88 $(INS.file)
87 89
88 90 $(ROOTONBLDETC)/%: %
89 91 $(INS.file)
90 92
91 93 $(ROOTONBLDLIBPERL)/%: %
92 94 $(INS.file)
93 95
94 96 $(ROOTONBLDMAN1ONBLD)/%: %
95 97 $(INS.file)
96 98
97 99 $(ROOTONBLDENV)/%: %
98 100 $(INS.file)
↓ open down ↓ |
32 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX