Print this page
6079 libdisasm doesn't enable C99MODE properly
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/lib/libdisasm/Makefile.com
+++ new/usr/src/lib/libdisasm/Makefile.com
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 2007 Sun Microsystems, Inc. All rights reserved.
23 23 # Use is subject to license terms.
24 24 # Copyright 2012 Joshua M. Clulow <josh@sysmgr.org>
25 25 # Copyright 2015 Nexenta Systems, Inc. All rights reserved.
26 26 #
27 27
28 28 #
29 29 # The build process for libdisasm is sightly different from that used by other
30 30 # libraries, because libdisasm must be built in two flavors - as a standalone
31 31 # for use by kmdb and as a normal library. We use $(CURTYPE) to indicate the
32 32 # current flavor being built.
33 33 #
34 34
35 35 LIBRARY= libdisasm.a
36 36 STANDLIBRARY= libstanddisasm.so
37 37 VERS= .1
38 38
39 39 # By default, we build the shared library. Construction of the standalone
40 40 # is specifically requested by architecture-specific Makefiles.
41 41 TYPES= library
42 42 CURTYPE= library
43 43
44 44 COMDIR= $(SRC)/lib/libdisasm/common
45 45
46 46 #
47 47 # Architecture-independent files
48 48 #
49 49 SRCS_common= $(COMDIR)/libdisasm.c
50 50 OBJECTS_common= libdisasm.o
51 51
52 52 #
53 53 # Architecture-dependent disassembly files
54 54 #
55 55 SRCS_i386= $(COMDIR)/dis_i386.c \
56 56 $(SRC)/common/dis/i386/dis_tables.c
57 57 SRCS_sparc= $(COMDIR)/dis_sparc.c \
58 58 $(COMDIR)/dis_sparc_fmt.c \
59 59 $(COMDIR)/dis_sparc_instr.c
60 60
61 61 OBJECTS_i386= dis_i386.o \
62 62 dis_tables.o
63 63 OBJECTS_sparc= dis_sparc.o \
64 64 dis_sparc_fmt.o \
65 65 dis_sparc_instr.o
66 66
67 67 #
68 68 # We build the regular shared library with support for all architectures.
69 69 # The standalone version should only contain code for the native
70 70 # architecture to reduce the memory footprint of kmdb.
71 71 #
72 72 OBJECTS_library= $(OBJECTS_common) \
73 73 $(OBJECTS_i386) \
74 74 $(OBJECTS_sparc)
75 75 OBJECTS_standalone= $(OBJECTS_common) \
76 76 $(OBJECTS_$(MACH))
77 77 OBJECTS= $(OBJECTS_$(CURTYPE))
78 78
79 79 include $(SRC)/lib/Makefile.lib
80 80
81 81 SRCS_library= $(SRCS_common) \
82 82 $(SRCS_i386) \
83 83 $(SRCS_sparc)
84 84 SRCS_standalone= $(SRCS_common) \
85 85 $(SRCS_$(MACH))
86 86 SRCS= $(SRCS_$(CURTYPE))
87 87
88 88 #
89 89 # Used to verify that the standalone doesn't have any unexpected external
90 90 # dependencies.
91 91 #
92 92 LINKTEST_OBJ = objs/linktest_stand.o
93 93
94 94 CLOBBERFILES_standalone = $(LINKTEST_OBJ)
95 95 CLOBBERFILES += $(CLOBBERFILES_$(CURTYPE))
96 96
97 97 LIBS_standalone = $(STANDLIBRARY)
98 98 LIBS_library = $(DYNLIB) $(LINTLIB)
99 99 LIBS = $(LIBS_$(CURTYPE))
100 100
101 101 MAPFILES = $(COMDIR)/mapfile-vers
102 102
103 103 LDLIBS += -lc
104 104
105 105 LDFLAGS_standalone = $(ZNOVERSION) $(BREDUCE) -dy -r
106 106 LDFLAGS = $(LDFLAGS_$(CURTYPE))
107 107
108 108 ASFLAGS_standalone = -DDIS_STANDALONE
109 109 ASFLAGS_library =
110 110 ASFLAGS += -P $(ASFLAGS_$(CURTYPE)) -D_ASM
111 111
112 112 $(LINTLIB) := SRCS = $(COMDIR)/$(LINTSRC)
113 113
114 114 CERRWARN += -_gcc=-Wno-parentheses
115 115 CERRWARN += -_gcc=-Wno-uninitialized
116 116
117 117 # We want the thread-specific errno in the library, but we don't want it in
118 118 # the standalone. $(DTS_ERRNO) is designed to add -D_TS_ERRNO to $(CPPFLAGS),
119 119 # in order to enable this feature. Conveniently, -D_REENTRANT does the same
120 120 # thing. As such, we null out $(DTS_ERRNO) to ensure that the standalone
121 121 # doesn't get it.
122 122 DTS_ERRNO=
123 123
124 124 CPPFLAGS_standalone = -DDIS_STANDALONE -I$(SRC)/cmd/mdb/common
125 125 CPPFLAGS_library = -D_REENTRANT
126 126 CPPFLAGS += -I$(COMDIR) $(CPPFLAGS_$(CURTYPE))
127 127
↓ open down ↓ |
127 lines elided |
↑ open up ↑ |
128 128 # For the x86 disassembler we have to include sources from usr/src/common
129 129 CPPFLAGS += -I$(SRC)/common/dis/i386 -DDIS_TEXT
130 130
131 131 CFLAGS_standalone = $(STAND_FLAGS_32)
132 132 CFLAGS_common =
133 133 CFLAGS += $(CFLAGS_$(CURTYPE)) $(CFLAGS_common)
134 134
135 135 CFLAGS64_standalone = $(STAND_FLAGS_64)
136 136 CFLAGS64 += $(CCVERBOSE) $(CFLAGS64_$(CURTYPE)) $(CFLAGS64_common)
137 137
138 +C99MODE = $(C99_ENABLE)
139 +
138 140 DYNFLAGS += $(ZINTERPOSE)
139 141
140 142 .KEEP_STATE:
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX