diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-07-18 08:24:24 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-07-18 08:24:24 +0200 |
commit | fc61780b35af913801d72086456f493f63197da6 (patch) | |
tree | f85891288a7bd988da9f0f15ae64e5c63f00d493 /application/basilisk/components/translation/cld2/Makefile | |
parent | 69f7f9e5f1475891ce11cc4f431692f965b0cd30 (diff) | |
parent | 50d3e596bbe89c95615f96eb71f6bc5be737a1db (diff) | |
download | UXP-9ccb235f04529c1ec345d87dad6521cb567d20bb.tar UXP-9ccb235f04529c1ec345d87dad6521cb567d20bb.tar.gz UXP-9ccb235f04529c1ec345d87dad6521cb567d20bb.tar.lz UXP-9ccb235f04529c1ec345d87dad6521cb567d20bb.tar.xz UXP-9ccb235f04529c1ec345d87dad6521cb567d20bb.zip |
Merge commit '50d3e596bbe89c95615f96eb71f6bc5be737a1db' into Basilisk-releasev2018.07.18
# Conflicts:
# browser/app/profile/firefox.js
# browser/components/preferences/jar.mn
Diffstat (limited to 'application/basilisk/components/translation/cld2/Makefile')
-rw-r--r-- | application/basilisk/components/translation/cld2/Makefile | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/application/basilisk/components/translation/cld2/Makefile b/application/basilisk/components/translation/cld2/Makefile new file mode 100644 index 000000000..080a7be3d --- /dev/null +++ b/application/basilisk/components/translation/cld2/Makefile @@ -0,0 +1,74 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this file, +# You can obtain one at http://mozilla.org/MPL/2.0/. + +PYTHON2 ?= python2 + +EMSCRIPTEN_ROOT := $(shell if which emcc >/dev/null 2>&1; \ + then dirname `which emcc`; \ + else echo /usr/lib/emscripten; \ + fi) + +EMCC ?= $(EMSCRIPTEN_ROOT)/emcc + +WEBIDL ?= $(PYTHON2) $(EMSCRIPTEN_ROOT)/tools/webidl_binder.py + +# A 2MB heap is to analyze most web pages. For the outliers, we need to either +# allow for heap growth, or allocate an unreasonable amount of memory at the +# outset. +# Unfortunately, once the heap has been enlarged, there is no shrinking, so +# analyzing one 20MB web page gives us a 30-40MB heap for the life of the +# worker. +FLAGS=-s -O3 -s INLINING_LIMIT=1 -s NO_FILESYSTEM=1 -s NO_EXIT_RUNTIME=1 -s INVOKE_RUN=0 \ + -s TOTAL_STACK=8192 -s TOTAL_MEMORY=2097152 -s ALLOW_MEMORY_GROWTH=1 \ + --llvm-lto 1 --memory-init-file 1 --closure 1 + +export EMCC_CLOSURE_ARGS = --language_in ECMASCRIPT6 --language_out ES5_STRICT + +SOURCES= \ + internal/cldutil.cc \ + internal/cldutil_shared.cc \ + internal/compact_lang_det.cc \ + internal/compact_lang_det_hint_code.cc \ + internal/compact_lang_det_impl.cc \ + internal/debug_empty.cc \ + internal/fixunicodevalue.cc \ + internal/generated_entities.cc \ + internal/generated_language.cc \ + internal/generated_ulscript.cc \ + internal/getonescriptspan.cc \ + internal/lang_script.cc \ + internal/offsetmap.cc \ + internal/scoreonescriptspan.cc \ + internal/tote.cc \ + internal/utf8statetable.cc \ + internal/cld_generated_cjk_uni_prop_80.cc \ + internal/cld2_generated_cjk_compatible.cc \ + internal/cld_generated_cjk_delta_bi_4.cc \ + internal/generated_distinct_bi_0.cc \ + internal/cld2_generated_quadchrome0122_16.cc \ + internal/cld2_generated_deltaoctachrome0122.cc \ + internal/cld2_generated_distinctoctachrome0122.cc \ + internal/cld_generated_score_quad_octa_0122_2.cc \ + cldapp.cc \ + $(NULL) + +OBJECTS=$(SOURCES:.cc=.o) + +default: all + +%.o: %.cc Makefile + $(EMCC) -Os -I. -o $@ $< + +cldapp.o: cld.cpp + +%.cpp %.js: %.idl + $(WEBIDL) $< $* + +all: cld-worker.js + +cld-worker.js: $(OBJECTS) post.js cld.js + $(EMCC) $(FLAGS) -I. -o cld-worker.js $(OBJECTS) --post-js cld.js --post-js post.js + +clean: + rm -f $(OBJECTS) cld.cpp cld.js before.js |