forked from jxcore/jxcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22,471 changed files
with
5,511,062 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
all: | ||
@echo "I need GNU make. Please run \`gmake\` instead." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
### JXcore 0.300 (Beta 3.00) | ||
Actual Branch - Not yet finalized | ||
- Multiple JavaScript Engine Support: New - SpiderMonkey JavaScript Engine (obastemur) | ||
- Android, and IOS platform target (obastemur) | ||
- JXEngine interface to expose JXcore's lifecycle for embedders (obastemur) | ||
- JXcore [shared/static library] targets (obastemur) | ||
- Multithreaded test cases (ktrzeciak) | ||
- Test base update for JXcore features (ktrzeciak) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,355 @@ | ||
-include config.mk | ||
BUILDTYPE ?= Release | ||
PYTHON ?= python | ||
NINJA ?= ninja | ||
DESTDIR ?= | ||
SIGN ?= | ||
|
||
NODE ?= ./jx | ||
|
||
# Default to verbose builds. | ||
# To do quiet/pretty builds, run `make V=` to set V to an empty string, | ||
# or set the V environment variable to an empty string. | ||
V ?= 1 | ||
|
||
# BUILDTYPE=Debug builds both release and debug builds. If you want to compile | ||
# just the debug build, run `make -C out BUILDTYPE=Debug` instead. | ||
ifeq ($(BUILDTYPE),Release) | ||
all: out/Makefile jx | ||
else | ||
all: out/Makefile jx jx_g | ||
endif | ||
|
||
# The .PHONY is needed to ensure that we recursively use the out/Makefile | ||
# to check for changes. | ||
.PHONY: jx jx_g | ||
|
||
ifeq ($(USE_NINJA),1) | ||
jx: config.gypi | ||
$(NINJA) -C out/Release/ | ||
ln -fs out/Release/jx jx | ||
|
||
jx_g: config.gypi | ||
$(NINJA) -C out/Debug/ | ||
ln -fs out/Debug/jx $@ | ||
else | ||
jx: config.gypi out/Makefile | ||
$(MAKE) -C out BUILDTYPE=Release V=$(V) | ||
ln -fs out/Release/jx jx | ||
|
||
jx_g: config.gypi out/Makefile | ||
$(MAKE) -C out BUILDTYPE=Debug V=$(V) | ||
ln -fs out/Debug/jx $@ | ||
endif | ||
|
||
out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp deps/zlib/zlib.gyp deps/v8/build/common.gypi deps/v8/tools/gyp/v8.gyp jx.gyp config.gypi | ||
ifeq ($(USE_NINJA),1) | ||
touch out/Makefile | ||
$(PYTHON) tools/gyp_node.py -f ninja | ||
else | ||
$(PYTHON) tools/gyp_node.py -f make | ||
endif | ||
|
||
config.gypi: configure | ||
$(PYTHON) ./configure | ||
|
||
install: all | ||
$(PYTHON) tools/install.py $@ $(DESTDIR) | ||
|
||
uninstall: | ||
$(PYTHON) tools/install.py $@ $(DESTDIR) | ||
|
||
clean: | ||
-rm -rf out/Makefile jx jx_g out/$(BUILDTYPE)/jx blog.html email.md | ||
-find out/ -name '*.o' -o -name '*.a' | xargs rm -rf | ||
-rm -rf node_modules | ||
|
||
distclean: | ||
-rm -rf out | ||
-rm -f config.gypi | ||
-rm -f config.mk | ||
-rm -rf jx jx_g blog.html email.md | ||
-rm -rf node_modules | ||
|
||
test: all | ||
$(PYTHON) tools/test.py --mode=release simple message | ||
$(MAKE) jslint | ||
|
||
test-http1: all | ||
$(PYTHON) tools/test.py --mode=release --use-http1 simple message | ||
|
||
test-valgrind: all | ||
$(PYTHON) tools/test.py --mode=release --valgrind simple message | ||
|
||
test/gc/node_modules/weak/build/Release/weakref.node: | ||
@if [ ! -f jx ]; then make all; fi | ||
./jx deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \ | ||
--directory="$(shell pwd)/test/gc/node_modules/weak" \ | ||
--nodedir="$(shell pwd)" | ||
|
||
test-gc: all test/gc/node_modules/weak/build/Release/weakref.node | ||
$(PYTHON) tools/test.py --mode=release gc | ||
|
||
test-all: all test/gc/node_modules/weak/build/Release/weakref.node | ||
$(PYTHON) tools/test.py --mode=debug,release | ||
make test-npm | ||
|
||
test-all-http1: all | ||
$(PYTHON) tools/test.py --mode=debug,release --use-http1 | ||
|
||
test-all-valgrind: all | ||
$(PYTHON) tools/test.py --mode=debug,release --valgrind | ||
|
||
test-release: all | ||
$(PYTHON) tools/test.py --mode=release | ||
|
||
test-debug: all | ||
$(PYTHON) tools/test.py --mode=debug | ||
|
||
test-message: all | ||
$(PYTHON) tools/test.py message | ||
|
||
test-simple: all | ||
$(PYTHON) tools/test.py simple | ||
|
||
test-pummel: all | ||
$(PYTHON) tools/test.py pummel | ||
|
||
test-internet: all | ||
$(PYTHON) tools/test.py internet | ||
|
||
test-npm: jx | ||
./jx deps/npm/test/run.js | ||
|
||
test-npm-publish: jx | ||
npm_package_config_publishtest=true ./jx deps/npm/test/run.js | ||
|
||
test-jxcore: all | ||
./jx test/run.js jxcore -flags $(flags) | ||
|
||
apidoc_sources = $(wildcard doc/api/*.markdown) | ||
apidocs = $(addprefix out/,$(apidoc_sources:.markdown=.html)) \ | ||
$(addprefix out/,$(apidoc_sources:.markdown=.json)) | ||
|
||
apidoc_dirs = out/doc out/doc/api/ out/doc/api/assets | ||
|
||
apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*))) | ||
|
||
website_files = \ | ||
out/doc/sh_main.js \ | ||
out/doc/sh_javascript.min.js | ||
|
||
doc: $(apidoc_dirs) $(website_files) $(apiassets) $(apidocs) tools/doc/ jx | ||
|
||
$(apidoc_dirs): | ||
mkdir -p $@ | ||
|
||
out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets/ | ||
cp $< $@ | ||
|
||
out/doc/changelog.html: ChangeLog doc/changelog-head.html doc/changelog-foot.html tools/build-changelog.sh jx | ||
bash tools/build-changelog.sh | ||
|
||
out/doc/%: doc/% | ||
cp -r $< $@ | ||
|
||
out/doc/api/%.json: doc/api/%.markdown jx | ||
out/Release/jx tools/doc/generate.js --format=json $< > $@ | ||
|
||
out/doc/api/%.html: doc/api/%.markdown jx | ||
out/Release/jx tools/doc/generate.js --format=html --template=doc/template.html $< > $@ | ||
|
||
email.md: ChangeLog tools/email-footer.md | ||
bash tools/changelog-head.sh | sed 's|^\* #|* \\#|g' > $@ | ||
cat tools/email-footer.md | sed -e 's|__VERSION__|'$(VERSION)'|g' >> $@ | ||
|
||
blog.html: email.md | ||
cat $< | ./jx tools/doc/node_modules/.bin/marked > $@ | ||
|
||
docopen: out/doc/api/all.html | ||
-google-chrome out/doc/api/all.html | ||
|
||
docclean: | ||
-rm -rf out/doc | ||
|
||
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py) | ||
VERSION=v$(RAWVER) | ||
RELEASE=$(shell $(PYTHON) tools/getnodeisrelease.py) | ||
PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]') | ||
ifeq ($(findstring x86_64,$(shell uname -m)),x86_64) | ||
DESTCPU ?= x64 | ||
else | ||
DESTCPU ?= ia32 | ||
endif | ||
ifeq ($(DESTCPU),x64) | ||
ARCH=x64 | ||
else | ||
ifeq ($(DESTCPU),arm) | ||
ARCH=arm | ||
else | ||
ARCH=x86 | ||
endif | ||
endif | ||
TARNAME=jx-$(VERSION) | ||
ifdef NIGHTLY | ||
TAG = nightly-$(NIGHTLY) | ||
TARNAME=jx-$(VERSION)-$(TAG) | ||
endif | ||
TARBALL=$(TARNAME).tar.gz | ||
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH) | ||
BINARYTAR=$(BINARYNAME).tar.gz | ||
PKG=out/$(TARNAME).pkg | ||
packagemaker=/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker | ||
|
||
PKGSRC=jxcore-$(DESTCPU)-$(RAWVER).tgz | ||
ifdef NIGHTLY | ||
PKGSRC=jxcore-$(DESTCPU)-$(RAWVER)-$(TAG).tgz | ||
endif | ||
|
||
dist: doc $(TARBALL) $(PKG) | ||
|
||
PKGDIR=out/dist-osx | ||
|
||
release-only: | ||
@if [ "$(shell git status --porcelain | egrep -v '^\?\? ')" = "" ]; then \ | ||
exit 0 ; \ | ||
else \ | ||
echo "" >&2 ; \ | ||
echo "The git repository is not clean." >&2 ; \ | ||
echo "Please commit changes before building release tarball." >&2 ; \ | ||
echo "" >&2 ; \ | ||
git status --porcelain | egrep -v '^\?\?' >&2 ; \ | ||
echo "" >&2 ; \ | ||
exit 1 ; \ | ||
fi | ||
@if [ "$(NIGHTLY)" != "" -o "$(RELEASE)" = "1" ]; then \ | ||
exit 0; \ | ||
else \ | ||
echo "" >&2 ; \ | ||
echo "#NODE_VERSION_IS_RELEASE is set to $(RELEASE)." >&2 ; \ | ||
echo "Did you remember to update src/node_version.cc?" >&2 ; \ | ||
echo "" >&2 ; \ | ||
exit 1 ; \ | ||
fi | ||
|
||
pkg: $(PKG) | ||
|
||
$(PKG): release-only | ||
rm -rf $(PKGDIR) | ||
rm -rf out/deps out/Release | ||
$(PYTHON) ./configure --without-snapshot --dest-cpu=ia32 --tag=$(TAG) | ||
$(MAKE) install V=$(V) DESTDIR=$(PKGDIR)/32 | ||
rm -rf out/deps out/Release | ||
$(PYTHON) ./configure --without-snapshot --dest-cpu=x64 --tag=$(TAG) | ||
$(MAKE) install V=$(V) DESTDIR=$(PKGDIR) | ||
SIGN="$(APP_SIGN)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh | ||
lipo $(PKGDIR)/32/usr/local/bin/jx \ | ||
$(PKGDIR)/usr/local/bin/jx \ | ||
-output $(PKGDIR)/usr/local/bin/node-universal \ | ||
-create | ||
mv $(PKGDIR)/usr/local/bin/node-universal $(PKGDIR)/usr/local/bin/jx | ||
rm -rf $(PKGDIR)/32 | ||
$(packagemaker) \ | ||
--id "org.jxcore.Node" \ | ||
--doc tools/osx-pkg.pmdoc \ | ||
--out $(PKG) | ||
SIGN="$(INT_SIGN)" PKG="$(PKG)" bash tools/osx-productsign.sh | ||
|
||
$(TARBALL): release-only jx doc | ||
git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf - | ||
mkdir -p $(TARNAME)/doc/api | ||
cp doc/jx.1 $(TARNAME)/doc/jx.1 | ||
cp -r out/doc/api/* $(TARNAME)/doc/api/ | ||
rm -rf $(TARNAME)/deps/v8/test # too big | ||
rm -rf $(TARNAME)/doc/images # too big | ||
find $(TARNAME)/ -type l | xargs rm # annoying on windows | ||
tar -cf $(TARNAME).tar $(TARNAME) | ||
rm -rf $(TARNAME) | ||
gzip -f -9 $(TARNAME).tar | ||
|
||
tar: $(TARBALL) | ||
|
||
$(BINARYTAR): release-only | ||
rm -rf $(BINARYNAME) | ||
rm -rf out/deps out/Release | ||
$(PYTHON) ./configure --prefix=/ --without-snapshot --dest-cpu=$(DESTCPU) --tag=$(TAG) $(CONFIG_FLAGS) | ||
$(MAKE) install DESTDIR=$(BINARYNAME) V=$(V) PORTABLE=1 | ||
cp README.md $(BINARYNAME) | ||
cp LICENSE $(BINARYNAME) | ||
cp ChangeLog $(BINARYNAME) | ||
tar -cf $(BINARYNAME).tar $(BINARYNAME) | ||
rm -rf $(BINARYNAME) | ||
gzip -f -9 $(BINARYNAME).tar | ||
|
||
binary: $(BINARYTAR) | ||
|
||
$(PKGSRC): release-only | ||
rm -rf dist out | ||
$(PYTHON) configure --prefix=/ --without-snapshot \ | ||
--dest-cpu=$(DESTCPU) --tag=$(TAG) $(CONFIG_FLAGS) | ||
$(MAKE) install DESTDIR=dist | ||
(cd dist; find * -type f | sort) > packlist | ||
pkg_info -X pkg_install | \ | ||
egrep '^(MACHINE_ARCH|OPSYS|OS_VERSION|PKGTOOLS_VERSION)' > build-info | ||
pkg_create -B build-info -c tools/pkgsrc/comment -d tools/pkgsrc/description \ | ||
-f packlist -I /opt/local -p dist -U $(PKGSRC) | ||
|
||
pkgsrc: $(PKGSRC) | ||
|
||
wrkclean: | ||
$(MAKE) -C tools/wrk/ clean | ||
rm tools/wrk/wrk | ||
|
||
wrk: tools/wrk/wrk | ||
tools/wrk/wrk: | ||
$(MAKE) -C tools/wrk/ | ||
|
||
bench-net: all | ||
@$(NODE) benchmark/common.js net | ||
|
||
bench-crypto: all | ||
@$(NODE) benchmark/common.js crypto | ||
|
||
bench-tls: all | ||
@$(NODE) benchmark/common.js tls | ||
|
||
bench-http: wrk all | ||
@$(NODE) benchmark/common.js http | ||
|
||
bench-fs: all | ||
@$(NODE) benchmark/common.js fs | ||
|
||
bench-misc: all | ||
@$(MAKE) -C benchmark/misc/function_call/ | ||
@$(NODE) benchmark/common.js misc | ||
|
||
bench-array: all | ||
@$(NODE) benchmark/common.js arrays | ||
|
||
bench-buffer: all | ||
@$(NODE) benchmark/common.js buffers | ||
|
||
bench-all: bench bench-misc bench-array bench-buffer | ||
|
||
bench: bench-net bench-http bench-fs bench-tls | ||
|
||
bench-http-simple: | ||
benchmark/http_simple_bench.sh | ||
|
||
bench-idle: | ||
./jx benchmark/idle_server.js & | ||
sleep 1 | ||
./jx benchmark/idle_clients.js & | ||
|
||
jslintfix: | ||
PYTHONPATH=tools/closure_linter/ $(PYTHON) tools/closure_linter/closure_linter/fixjsstyle.py --strict --nojsdoc -r lib/ -r src/ --exclude_files lib/punycode.js | ||
|
||
jslint: | ||
PYTHONPATH=tools/closure_linter/ $(PYTHON) tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ --exclude_files lib/punycode.js | ||
|
||
cpplint: | ||
@$(PYTHON) tools/cpplint.py $(wildcard src/*.cc src/*.h src/*.c) | ||
|
||
lint: jslint cpplint | ||
|
||
.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean check uninstall install install-includes install-bin all staticlib dynamiclib test test-all website-upload pkg blog blogclean tar binary release-only bench-http-simple bench-idle bench-all bench bench-misc bench-array bench-buffer bench-net bench-http bench-fs bench-tls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
export TOOLCHAIN=$PWD/android-toolchain | ||
rm -rf $TOOLCHAIN | ||
mkdir -p $TOOLCHAIN | ||
$1/build/tools/make-standalone-toolchain.sh \ | ||
--toolchain=arm-linux-androideabi-4.8 \ | ||
--arch=arm \ | ||
--install-dir=$TOOLCHAIN \ | ||
--platform=android-9 | ||
|
||
rm $TOOLCHAIN/bin/python | ||
|
||
export TOOLCHAIN_INTEL=$PWD/android-toolchain-intel | ||
rm -rf $TOOLCHAIN_INTEL | ||
mkdir -p $TOOLCHAIN_INTEL | ||
$1/build/tools/make-standalone-toolchain.sh \ | ||
--toolchain=x86-4.8 \ | ||
--arch=x86 \ | ||
--install-dir=$TOOLCHAIN_INTEL \ | ||
--platform=android-9 | ||
|
||
rm $TOOLCHAIN_INTEL/bin/python | ||
|
||
echo android tools are copied. now call 'build_scripts/android-make.sh' |
Oops, something went wrong.