forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.shared
219 lines (184 loc) · 5.66 KB
/
Makefile.shared
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
SCRIPTS_PATH ?= ../Tools/Scripts
ifneq ($(MAKECMDGOALS),installsrc)
ifneq ($(USE_WORKSPACE),NO)
SCHEME ?= $(notdir $(CURDIR))
XCODE_TARGET = -scheme "$(SCHEME)"
ifneq (,$(WORKSPACE_PATH))
CONFIG_OPTIONS += --workspace=$(WORKSPACE_PATH)
endif
# FIXME: Move this setting to xcconfigs once all local Xcode builds of WebKit
# happen in the workspace. When this is only passed on the command line, it
# invalidates build results made in the IDE (rdar://88135402).
#XCODE_OPTIONS += WK_VALIDATE_DEPENDENCIES=YES_ERROR
BUILD_GOAL = $(SCHEME)
else
USE_WORKSPACE =
BUILD_WEBKIT_BASE += --no-use-workspace
BUILD_GOAL = $(notdir $(CURDIR))
endif
XCODE_OPTIONS = $(ARGS)
XCODE_OPTIONS += $(if $(GCC_PREPROCESSOR_ADDITIONS),GCC_PREPROCESSOR_DEFINITIONS='$(GCC_PREPROCESSOR_ADDITIONS) $$(inherited)')
ifeq (ON,$(ENABLE_LLVM_PROFILE_GENERATION))
XCODE_OPTIONS += ENABLE_LLVM_PROFILE_GENERATION=ENABLE_LLVM_PROFILE_GENERATION
endif
ifneq (,$(SDKROOT))
ifneq (,$(OVERRIDE_SDKROOT))
ifneq (default,$(OVERRIDE_SDKROOT))
CONFIG_OPTIONS += --sdk=$(OVERRIDE_SDKROOT)
BUILD_WEBKIT_BASE := $(BUILD_WEBKIT_BASE) --sdk=$(OVERRIDE_SDKROOT)
endif
OVERRIDE_SDKROOT =
else
CONFIG_OPTIONS += --sdk=$(SDKROOT)
BUILD_WEBKIT_BASE := $(BUILD_WEBKIT_BASE) --sdk=$(SDKROOT)
endif
endif
ifneq (,$(ARCHS))
ifneq (,$(OVERRIDE_ARCHS))
ifneq (default,$(OVERRIDE_ARCHS))
BUILD_WEBKIT_BASE := $(BUILD_WEBKIT_BASE) --architecture="$(OVERRIDE_ARCHS)"
endif
OVERRIDE_ARCHS =
else
BUILD_WEBKIT_BASE := $(BUILD_WEBKIT_BASE) --architecture="$(ARCHS)"
endif
endif
ifeq (iosmac,$(SDK_VARIANT))
BUILD_WEBKIT_BASE += --maccatalyst
endif
ifeq (, $(findstring WK_USE_CCACHE, $(ARGS)))
ifneq (, $(shell which ccache))
XCODE_OPTIONS += WK_USE_CCACHE=YES
endif
endif
ifneq (,$(EXPORT_COMPILE_COMMANDS))
XCODE_OPTIONS += OTHER_CFLAGS='$$(inherited) -gen-cdb-fragment-path $$(BUILT_PRODUCTS_DIR)/compile_commands'
XCODE_OPTIONS += GCC_PRECOMPILE_PREFIX_HEADER=NO
XCODE_OPTIONS += CLANG_ENABLE_MODULE_DEBUGGING=NO
XCODE_OPTIONS += COMPILER_INDEX_STORE_ENABLE=NO
endif
endif # ifneq ($(MAKECMDGOALS),installsrc)
DEFAULT_VERBOSITY := $(shell defaults read org.webkit.BuildConfiguration BuildTranscriptVerbosity 2>/dev/null || echo "default")
VERBOSITY ?= $(DEFAULT_VERBOSITY)
ifeq ($(VERBOSITY),default)
OUTPUT_FILTER = cat
XCODE_OPTIONS += -hideShellScriptEnvironment
else ifeq ($(VERBOSITY),noisy)
OUTPUT_FILTER = cat
else ifeq ($(VERBOSITY),oneline)
OUTPUT_FILTER = $(SCRIPTS_PATH)/filter-build-webkit -f oneline
else
OUTPUT_FILTER = $(SCRIPTS_PATH)/filter-build-webkit
endif
ifeq ($(ASAN),YES)
CONFIG_OPTIONS += --asan
else
ifeq ($(ASAN),NO)
CONFIG_OPTIONS += --no-asan
endif
endif
ifneq ($(CC),)
ifneq ($(CC),cc) # Default value without -R flag
XCODE_OPTIONS += CC=$(CC)
endif
endif
ifeq ($(CODE_COVERAGE),YES)
CONFIG_OPTIONS += --coverage
else
ifeq ($(CODE_COVERAGE),NO)
CONFIG_OPTIONS += --no-coverage
endif
endif
ifneq ($(CPLUSPLUS),)
XCODE_OPTIONS += CPLUSPLUS=$(CPLUSPLUS)
endif
ifeq ($(LIBFUZZER),YES)
CONFIG_OPTIONS += --libfuzzer
else
ifeq ($(LIBFUZZER),NO)
CONFIG_OPTIONS += --no-libfuzzer
endif
endif
ifneq ($(WK_SANITIZER_COVERAGE),)
XCODE_OPTIONS += WK_SANITIZER_COVERAGE=$(WK_SANITIZER_COVERAGE)
endif
ifeq ($(TSAN),YES)
CONFIG_OPTIONS += --tsan
else
ifeq ($(TSAN),NO)
CONFIG_OPTIONS += --no-tsan
endif
endif
ifeq ($(UBSAN),YES)
CONFIG_OPTIONS += --ubsan
else
ifeq ($(UBSAN),NO)
CONFIG_OPTIONS += --no-ubsan
endif
endif
ifeq ($(WK_LTO_MODE),full)
CONFIG_OPTIONS += --lto-mode=full
else ifeq ($(WK_LTO_MODE),thin)
CONFIG_OPTIONS += --lto-mode=thin
else ifeq ($(WK_LTO_MODE),none)
CONFIG_OPTIONS += --lto-mode=none
endif
ANALYZER_XCODE_SETTINGS = RUN_CLANG_STATIC_ANALYZER=YES CLANG_STATIC_ANALYZER_MODE=deep CLANG_ANALYZER_OUTPUT=html
ifneq (,$(ANALYZER_EXEC))
ANALYZER_XCODE_SETTINGS += CLANG_ANALYZER_EXEC="$(ANALYZER_EXEC)"
endif
ifneq (,$(ANALYZER_FLAGS))
ANALYZER_XCODE_SETTINGS += CLANG_ANALYZER_OTHER_FLAGS="$(ANALYZER_FLAGS)"
endif
ifneq (,$(ANALYZER_OUTPUT))
ANALYZER_XCODE_SETTINGS += CLANG_ANALYZER_OUTPUT_DIR="$(ANALYZER_OUTPUT)"
endif
ifeq (,$(PATH_TO_SCAN_BUILD))
PATH_TO_SCAN_BUILD = scan-build
endif
export DSYMUTIL_NUM_THREADS = $(shell sysctl -n hw.activecpu)
define set_webkit_configuration
$(SCRIPTS_PATH)/set-webkit-configuration $1 $(CONFIG_OPTIONS)
endef
define invoke_xcode
( \
echo; \
echo "===== BUILDING $(BUILD_GOAL) ====="; \
echo; \
eval build_webkit_options=(`perl -I$(SCRIPTS_PATH) -Mwebkitdirs -e 'print XcodeOptionString()' -- $(BUILD_WEBKIT_BASE) $(BUILD_WEBKIT_OPTIONS)`); \
xcodebuild $1 $(OTHER_OPTIONS) $(XCODE_TARGET) "$${build_webkit_options[@]}" $(XCODE_OPTIONS) $2 | $(OUTPUT_FILTER) && exit $${PIPESTATUS[0]} \
)
endef
all:
@$(call set_webkit_configuration,)
@$(call invoke_xcode,,)
debug d: force
@$(call set_webkit_configuration,--debug)
@$(call invoke_xcode,,)
release r: force
@$(call set_webkit_configuration,--release)
@$(call invoke_xcode,,)
release+assert ra: force
@$(call set_webkit_configuration,--release)
@$(call invoke_xcode,,)
release+assert ra: override GCC_PREPROCESSOR_ADDITIONS += ASSERT_ENABLED=1
testing t: force
@$(call set_webkit_configuration,--debug --force-optimization-level=O3)
@$(call invoke_xcode,,)
analyze:
@$(call set_webkit_configuration,--debug)
@$(call invoke_xcode,analyze,$(ANALYZER_XCODE_SETTINGS)) || true
@for dir in $$(ls -d $(ANALYZER_OUTPUT)/StaticAnalyzer/*); do \
mkdir -p $$dir/StaticAnalyzerReports; \
find $$dir -name 'report-*.html' -exec mv {} $$dir/StaticAnalyzerReports/ \;; \
$(PATH_TO_SCAN_BUILD) --generate-index-only $$dir; \
done
clean:
ifndef XCODE_TARGET
@$(call invoke_xcode,,-alltargets clean)
else
@$(call invoke_xcode,,clean)
endif
installsrc:
xcodebuild installsrc SRCROOT="$(SRCROOT)$(PATH_FROM_ROOT)"
force: ;