forked from facebook/flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
402 lines (347 loc) · 11.4 KB
/
Makefile
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
# Copyright (c) 2013-present, Facebook, Inc.
# All rights reserved.
################################################################################
# Variables to override #
################################################################################
EXTRA_INCLUDE_PATHS=
EXTRA_LIB_PATHS=
EXTRA_LIBS=
INTERNAL_MODULES=hack/stubs src/stubs
INTERNAL_NATIVE_C_FILES=
ifeq ($(OS), Windows_NT)
UNAME_S=Windows
else
UNAME_S=$(shell uname -s)
endif
-include facebook/Makefile.defs
################################################################################
# OS-dependent stuff #
################################################################################
ifeq ($(UNAME_S), Linux)
EXTRA_LIBS += rt
INOTIFY=hack/third-party/inotify
INOTIFY_STUBS=$(INOTIFY)/inotify_stubs.c
FSNOTIFY=hack/fsnotify_linux
FSNOTIFY_STUBS=
FRAMEWORKS=
EXE=
endif
ifeq ($(UNAME_S), FreeBSD)
EXTRA_INCLUDE_PATHS += /usr/local/include
EXTRA_LIB_PATHS += /usr/local/lib
EXTRA_LIBS += inotify
INOTIFY=hack/third-party/inotify
INOTIFY_STUBS=$(INOTIFY)/inotify_stubs.c
FSNOTIFY=hack/fsnotify_linux
FSNOTIFY_STUBS=
FRAMEWORKS=
EXE=
endif
ifeq ($(UNAME_S), Darwin)
INOTIFY=hack/fsevents
INOTIFY_STUBS=$(INOTIFY)/fsevents_stubs.c
FSNOTIFY=hack/fsnotify_darwin
FSNOTIFY_STUBS=
FRAMEWORKS=CoreServices CoreFoundation
EXE=
endif
ifeq ($(UNAME_S), Windows)
INOTIFY=
INOTIFY_STUBS=
FSNOTIFY=hack/fsnotify_win
FSNOTIFY_STUBS=$(FSNOTIFY)/fsnotify_stubs.c
FRAMEWORKS=
EXE=.exe
endif
################################################################################
# Definitions #
################################################################################
MODULES=\
src/commands\
src/commands/config\
src/common\
src/common/audit\
src/common/errors\
src/common/lints\
src/common/lwt\
src/common/monad\
src/common/profiling\
src/common/span\
src/common/tarjan\
src/common/ty\
src/common/utils\
src/common/xx\
src/flowlib\
src/monitor\
src/monitor/connections\
src/monitor/logger\
src/monitor/utils\
src/parser\
src/parser_utils\
src/parser_utils/output\
src/parser_utils/output/printers\
src/parsing\
src/server\
src/server/protocol\
src/services/autocomplete\
src/services/inference\
src/services/flowFileGen\
src/services/port\
src/services/type_info\
src/third-party/lz4\
src/third-party/ocaml-sourcemaps/src\
src/third-party/ocaml-vlq/src\
src/typing\
hack/dfind\
hack/find\
hack/globals\
hack/heap\
hack/injection/default_injector\
hack/procs\
hack/search\
hack/socket\
hack/third-party/avl\
hack/third-party/core\
hack/utils\
hack/utils/build_mode/prod\
hack/utils/collections\
hack/utils/disk\
hack/utils/hh_json\
hack/utils/sys\
$(INOTIFY)\
$(FSNOTIFY)\
$(INTERNAL_MODULES)
NATIVE_C_FILES=\
$(INOTIFY_STUBS)\
$(FSNOTIFY_STUBS)\
src/common/xx/xx_stubs.c\
hack/heap/hh_shared.c\
hack/heap/hh_fileinfo.c\
hack/utils/get_build_id.c\
hack/utils/sys/files.c\
hack/utils/sys/getrusage.c\
hack/utils/sys/handle_stubs.c\
hack/utils/sys/nproc.c\
hack/utils/sys/priorities.c\
hack/utils/sys/processor_info.c\
hack/utils/sys/realpath.c\
hack/utils/sys/sysinfo.c\
$(sort $(wildcard src/third-party/lz4/*.c))\
$(INTERNAL_NATIVE_C_FILES)
FINDLIB_PACKAGES=\
sedlex\
lwt\
lwt.log\
lwt.unix\
lwt_ppx\
unix\
str\
bigarray
NATIVE_LIBRARIES=\
pthread\
$(EXTRA_LIBS)
OCP_BUILD_FILES=\
ocp_build_flow.ocp\
ocp_build_hack.ocp
COPIED_FLOWLIB=\
$(foreach lib,$(wildcard lib/*.js),_build/$(lib))
COPIED_PRELUDE=\
$(foreach lib,$(wildcard prelude/*.js),_build/$(lib))
JS_STUBS=\
$(wildcard js/*.js)
################################################################################
# Rules #
################################################################################
NATIVE_C_DIRS=$(patsubst %/,%,$(sort $(dir $(NATIVE_C_FILES))))
ALL_HEADER_FILES=$(addprefix _build/,$(shell find $(NATIVE_C_DIRS) -name '*.h'))
ALL_HEADER_FILES+=_build/src/third-party/lz4/xxhash.c
NATIVE_OBJECT_FILES=$(patsubst %.c,%.o,$(NATIVE_C_FILES))
NATIVE_OBJECT_FILES+=hack/utils/get_build_id.gen.o
BUILT_C_DIRS=$(addprefix _build/,$(NATIVE_C_DIRS))
BUILT_C_FILES=$(addprefix _build/,$(NATIVE_C_FILES))
BUILT_OBJECT_FILES=$(addprefix _build/,$(NATIVE_OBJECT_FILES))
CC_FLAGS=-DNO_SQLITE3
CC_FLAGS += $(EXTRA_CC_FLAGS)
CC_OPTS=$(foreach flag, $(CC_FLAGS), -ccopt $(flag))
INCLUDE_OPTS=$(foreach dir,$(MODULES),-I $(dir))
FINDLIB_OPTS=$(foreach lib,$(FINDLIB_PACKAGES),-pkg $(lib))
NATIVE_LIB_OPTS=$(foreach lib, $(NATIVE_LIBRARIES),-cclib -l -cclib $(lib))
ALL_INCLUDE_PATHS=$(sort $(realpath $(BUILT_C_DIRS))) $(EXTRA_INCLUDE_PATHS)
EXTRA_INCLUDE_OPTS=$(foreach dir, $(ALL_INCLUDE_PATHS),-ccopt -I -ccopt $(dir))
EXTRA_LIB_OPTS=$(foreach dir, $(EXTRA_LIB_PATHS),-cclib -L -cclib $(dir))
FRAMEWORK_OPTS=$(foreach framework, $(FRAMEWORKS),-cclib -framework -cclib $(framework))
BYTECODE_LINKER_FLAGS=$(NATIVE_OBJECT_FILES) $(NATIVE_LIB_OPTS) $(EXTRA_LIB_OPTS) $(FRAMEWORK_OPTS)
LINKER_FLAGS=$(BYTECODE_LINKER_FLAGS)
RELEASE_TAGS=$(if $(FLOW_RELEASE),-tag warn_a,)
all: build-flow copy-flow-files
all-ocp: build-flow-with-ocp copy-flow-files-ocp
all-homebrew:
export OPAMROOT="$(shell mktemp -d 2> /dev/null || mktemp -d -t opam)"; \
export OPAMYES="1"; \
export FLOW_RELEASE="1"; \
opam init --no-setup && \
opam pin add -n flowtype . && \
opam config exec -- opam install flowtype --deps-only && \
opam config exec -- make
clean:
ocamlbuild -clean
rm -rf bin
rm -f hack/utils/get_build_id.gen.c
rm -f flow.odocl
clean-ocp: clean
[ -d _obuild ] && ocp-build clean || true
rm -f $(OCP_BUILD_FILES)
build-flow: _build/scripts/ppx_gen_flowlibs.native $(BUILT_OBJECT_FILES) $(COPIED_FLOWLIB) $(COPIED_PRELUDE)
# Both lwt and lwt_ppx provide ppx stuff. Fixed in lwt 4.0.0
# https://github.com/ocsigen/lwt/issues/453
export OCAMLFIND_IGNORE_DUPS_IN="$(shell ocamlfind query lwt)"; \
ocamlbuild \
-use-ocamlfind\
-no-links $(INCLUDE_OPTS) $(FINDLIB_OPTS) \
-lflags "$(LINKER_FLAGS)" \
$(RELEASE_TAGS) \
src/flow.native
%.ocp: %.ocp.fb scripts/script_utils.ml scripts/ocp_build_glob.ml
ocaml -safe-string -I scripts -w -3 \
str.cma unix.cma scripts/ocp_build_glob.ml $(addsuffix .fb,$@) $@
build-flow-with-ocp: $(OCP_BUILD_FILES) hack/utils/get_build_id.gen.c
[ -d _obuild ] || ocp-build init
# Force us to pick up libdef changes - ocp-build is fast so it's fine
rm -rf _obuild/flow-flowlib
rm -rf _obuild/flow-prelude
ocp-build build flow
mkdir -p bin
cp _obuild/flow/flow.asm$(EXE) bin/flow$(EXE)
rm -f $(OCP_BUILD_FILES)
build-parser-test-with-ocp: $(OCP_BUILD_FILES) hack/utils/get_build_id.gen.c
[ -d _obuild ] || ocp-build init
ocp-build build flow-parser-hardcoded-test
rm -f $(OCP_BUILD_FILES)
test-parser-ocp: $(OCP_BUILD_FILES) hack/utils/get_build_id.gen.c
[ -d _obuild ] || ocp-build init
ocp-build tests flow-parser-hardcoded-test
rm -f $(OCP_BUILD_FILES)
build-flow-debug: _build/scripts/ppx_gen_flowlibs.native $(BUILT_OBJECT_FILES) $(COPIED_FLOWLIB) $(COPIED_PRELUDE)
ocamlbuild \
-use-ocamlfind \
-no-links $(INCLUDE_OPTS) $(FINDLIB_OPTS) \
-lflags -custom -lflags "$(LINKER_FLAGS)" \
src/flow.d.byte
mkdir -p bin
cp _build/src/flow.d.byte bin/flow$(EXE)
testgen: build-flow
ocamlbuild \
-use-ocamlfind -pkgs sedlex \
-no-links $(INCLUDE_OPTS) $(FINDLIB_OPTS) \
-lflags "$(LINKER_FLAGS)" \
$(RELEASE_TAGS) \
testgen/flowtestgen.native
mkdir -p bin
cp _build/testgen/flowtestgen.native bin/flowtestgen$(EXE)
%.h: $(subst _build/,,$@)
mkdir -p $(dir $@)
cp $(subst _build/,,$@) $@
# Compile each object file. Equivalent to this ocamlbuild rule, but faster:
# ocamlbuild -ocamlc "ocamlopt $(EXTRA_INCLUDE_OPTS) $(CC_OPTS)" $(subst _build/,,$@)
$(BUILT_C_FILES): _build/%.c: %.c
mkdir -p $(dir $@)
cp $< $@
$(BUILT_OBJECT_FILES): %.o: %.c $(ALL_HEADER_FILES)
cd $(dir $@) && ocamlopt $(EXTRA_INCLUDE_OPTS) $(CC_OPTS) -c $(notdir $<)
hack/utils/get_build_id.gen.c: FORCE scripts/script_utils.ml scripts/gen_build_id.ml
ocaml -safe-string -I scripts -w -3 unix.cma scripts/gen_build_id.ml $@
_build/hack/utils/get_build_id.gen.c: FORCE scripts/script_utils.ml scripts/gen_build_id.ml
ocaml -safe-string -I scripts -w -3 unix.cma scripts/gen_build_id.ml $@
$(COPIED_FLOWLIB): _build/%.js: %.js
mkdir -p $(dir $@)
cp $< $@
rm -rf _build/src/flowlib
$(COPIED_PRELUDE): _build/%.js: %.js
mkdir -p $(dir $@)
cp $< $@
rm -rf _build/src/prelude
_build/scripts/ppx_gen_flowlibs.native: scripts/ppx_gen_flowlibs.ml
ocamlbuild \
-use-ocamlfind -pkgs compiler-libs.common,unix \
-I scripts \
scripts/ppx_gen_flowlibs.native
rm -f ppx_gen_flowlibs.native
copy-flow-files: build-flow
mkdir -p bin
cp _build/src/flow.native bin/flow$(EXE)
copy-flow-files-ocp: build-flow-with-ocp
mkdir -p bin
cp _obuild/flow/flow.asm bin/flow$(EXE)
do-test:
./runtests.sh bin/flow$(EXE)
bin/flow$(EXE) check packages/flow-dev-tools
${MAKE} do-test-tool
./tool test
do-test-tool:
FLOW_BIN=../../bin/flow$(EXE) ${MAKE} -C packages/flow-dev-tools test
test-tool: build-flow copy-flow-files
${MAKE} do-test-tool
test: build-flow copy-flow-files
${MAKE} do-test
test-ocp: build-flow-with-ocp copy-flow-files-ocp
${MAKE} do-test
js: _build/scripts/ppx_gen_flowlibs.native $(BUILT_OBJECT_FILES) $(COPIED_FLOWLIB)
mkdir -p bin
# NOTE: temporarily disabling warning 31 because
# hack/third-party/core/result.ml and the opam `result` module both define
# result.cma, and this is the most expedient (though fragile) way to unblock
# ourselves.
ocamlbuild -use-ocamlfind \
-pkg js_of_ocaml \
-build-dir _build \
-lflags -custom -no-links \
$(INCLUDE_OPTS) $(FINDLIB_OPTS) \
-lflags "$(BYTECODE_LINKER_FLAGS) -warn-error -31" \
src/flow_dot_js.byte
# js_of_ocaml has no ability to upgrade warnings to errors, but we want to
# error if, for example, there are any unimplemented C primitives.
js_of_ocaml \
--opt 3 \
--disable genprim \
--extern-fs \
-o bin/flow.js \
$(JS_STUBS) _build/src/flow_dot_js.byte \
2>_build/js_of_ocaml.err; \
ret=$$?; \
if [ ! $$ret ]; then \
exit $$ret; \
elif [ -s _build/js_of_ocaml.err ]; then \
printf "js_of_ocaml produced output on stderr:\n" 1>&2; \
cat _build/js_of_ocaml.err 1>&2; \
exit 1; \
fi
dist/flow/flow$(EXE): build-flow
mkdir -p $(@D)
cp _build/src/flow.native $@
dist/flow.zip: dist/flow/flow$(EXE)
cd dist && zip -r $(@F) flow/flow$(EXE)
FORCE:
.PHONY: all js build-flow build-flow-with-ocp build-flow-debug FORCE
# This rule runs if any .ml or .mli file has been touched. It recursively calls
# ocamldep to figure out all the modules that we use to build src/flow.ml
flow.odocl: $(shell find . -name "*.ml" -o -name "*.mli")
echo "src/flow.ml" > deps
echo "" > last_deps
until diff deps last_deps > /dev/null; do \
cp deps last_deps; \
cat deps \
| xargs ocamldep -one-line $(INCLUDE_OPTS) \
| grep -o "[a-zA-Z0-9/_-]*\.cm[xo]" \
| sed "s/\.cm[xo]$$/.ml/" \
| sort -u > temp_deps; \
mv temp_deps deps; \
done
# For some reason these two AST files cause ocamldoc to get stuck
cat deps \
| grep -v "src/parser/ast.ml" \
| sed "s/\.ml$$//" > $@
rm -f deps last_deps temp_deps
flow.docdir/index.html: flow.odocl
ocamlbuild $(INCLUDE_OPTS) -use-ocamlfind flow.docdir/index.html
doc: flow.docdir/index.html
-include facebook/Makefile