Print this page
11528 Makefile.noget can get gone
11529 Use -Wno-maybe-initialized
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/uts/intel/xge/Makefile
+++ new/usr/src/uts/intel/xge/Makefile
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 #
23 23 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
24 24 # Use is subject to license terms.
25 25 #
26 26 # Copyright (c) 2018, Joyent, Inc.
27 27
28 28 #
29 29 # Paths to the base of the uts directory trees
30 30 #
31 31 UTSBASE = ../..
32 32
33 33 #
34 34 # Define the module and object file sets.
35 35 #
36 36 MODULE = xge
37 37 OBJECTS = $(XGE_HAL_OBJS:%=$(OBJS_DIR)/%) $(XGE_OBJS:%=$(OBJS_DIR)/%)
38 38 LINTS = $(XGE_HAL_OBJS:%.o=$(LINTS_DIR)/%.ln) $(XGE_OBJS:%.o=$(LINTS_DIR)/%.ln)
39 39 ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
40 40
41 41 #
42 42 # Include common rules.
43 43 #
44 44 include $(UTSBASE)/intel/Makefile.intel
45 45
46 46 #
47 47 # Define targets
48 48 #
49 49 ALL_TARGET = $(BINARY)
50 50 LINT_TARGET = $(MODULE).lint
51 51 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
52 52
53 53 #
54 54 # GENERAL PURPOUSE HAL FLAGS: Tuning HAL for Solaris specific modes
55 55 #
56 56 HAL_CFLAGS = -DXGE_HAL_USE_MGMT_AUX
57 57
58 58 #
59 59 # TRACE SECTION: Possible values for MODULE, TRACE and ERR masks:
60 60 #
61 61 # XGE_COMPONENT_HAL_CONFIG 0x1
62 62 # XGE_COMPONENT_HAL_FIFO 0x2
63 63 # XGE_COMPONENT_HAL_RING 0x4
64 64 # XGE_COMPONENT_HAL_CHANNEL 0x8
65 65 # XGE_COMPONENT_HAL_DEVICE 0x10
66 66 # XGE_COMPONENT_HAL_MM 0x20
67 67 # XGE_COMPONENT_HAL_QUEUE 0x40
68 68 # XGE_COMPONENT_HAL_STATS 0x100
69 69 # XGE_COMPONENT_OSDEP 0x1000
70 70 # XGE_COMPONENT_LL 0x2000
71 71 # XGE_COMPONENT_TOE 0x4000
72 72 # XGE_COMPONENT_RDMA 0x8000
73 73 # XGE_COMPONENT_ALL 0xffffffff
74 74 #TRACE_CFLAGS = -DXGE_DEBUG_MODULE_MASK=0xffffffff \
75 75 # -DXGE_DEBUG_TRACE_MASK=0xffffffff \
76 76 # -DXGE_DEBUG_ERR_MASK=0xffffffff
77 77 TRACE_CFLAGS = -DXGE_DEBUG_MODULE_MASK=0x00003010 \
78 78 -DXGE_DEBUG_TRACE_MASK=0x00000000 \
79 79 -DXGE_DEBUG_ERR_MASK=0x00003010
80 80
81 81 XGE_CFLAGS = $(HAL_CFLAGS) $(TRACE_CFLAGS) $(CCVERBOSE) \
82 82 -I$(UTSBASE)/common/io/xge/hal/include \
83 83 -I$(UTSBASE)/common/io/xge/hal/xgehal \
84 84 -I$(UTSBASE)/common/io/xge/drv -DSOLARIS
85 85
86 86 CFLAGS += $(XGE_CFLAGS) -xO4 -xcrossfile
87 87 CFLAGS64 += $(XGE_CFLAGS) -xO4 -xcrossfile
88 88
89 89 #
90 90 # Driver depends on MAC & IP
91 91 #
92 92 LDFLAGS += -dy -N misc/mac -N drv/ip
93 93
94 94 # Lint flag
95 95 #
96 96 LINTFLAGS += $(XGE_CFLAGS) -Xc99=%all
97 97
98 98 #
99 99 # For now, disable these lint checks; maintainers should endeavor
100 100 # to investigate and remove these for maximum lint coverage.
↓ open down ↓ |
100 lines elided |
↑ open up ↑ |
101 101 # Please do not carry these forward to new Makefiles.
102 102 #
103 103 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
104 104 LINTTAGS += -erroff=E_STATIC_UNUSED
105 105 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
106 106
107 107 CERRWARN += -_gcc=-Wno-parentheses
108 108 CERRWARN += -_gcc=-Wno-unused-variable
109 109 CERRWARN += -_gcc=-Wno-unused-label
110 110 CERRWARN += -_gcc=-Wno-empty-body
111 -CERRWARN += -_gcc=-Wno-uninitialized
111 +CERRWARN += $(CNOWARN_UNINIT)
112 112
113 113 # needs work
114 114 SMOFF += indenting,all_func_returns,no_if_block
115 115
116 116 #
117 117 #
118 118 # Default build targets.
119 119 #
120 120 .KEEP_STATE:
121 121
122 122 def: $(DEF_DEPS)
123 123
124 124 all: $(ALL_DEPS)
125 125
126 126 clean: $(CLEAN_DEPS)
127 127
128 128 clobber: $(CLOBBER_DEPS)
129 129
130 130 lint: $(LINT_DEPS)
131 131
132 132 modlintlib: $(MODLINTLIB_DEPS)
133 133
134 134 clean.lint: $(CLEAN_LINT_DEPS)
135 135
136 136 install: $(INSTALL_DEPS)
137 137
138 138 #
139 139 # Include common targets.
140 140 #
141 141 include $(UTSBASE)/intel/Makefile.targ
↓ open down ↓ |
20 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX