diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-02 05:06:10 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-02 05:06:10 -0500 |
commit | 6d614170cbfa958564eb5f824234ad5a9e484344 (patch) | |
tree | 3e1eb384382f30987cb2e64bd654afa8b74fd06b /application/basilisk/components/translation/cld2/Makefile | |
parent | 2a6b605d64b19411a300efdbbd7f78c349f90206 (diff) | |
download | UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.gz UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.lz UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.xz UXP-6d614170cbfa958564eb5f824234ad5a9e484344.zip |
Revert "Add Basilisk"
This reverts commit e72ef92b5bdc43cd2584198e2e54e951b70299e8.
Diffstat (limited to 'application/basilisk/components/translation/cld2/Makefile')
-rw-r--r-- | application/basilisk/components/translation/cld2/Makefile | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/application/basilisk/components/translation/cld2/Makefile b/application/basilisk/components/translation/cld2/Makefile deleted file mode 100644 index 080a7be3d..000000000 --- a/application/basilisk/components/translation/cld2/Makefile +++ /dev/null @@ -1,74 +0,0 @@ -# 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 |