├── .github └── workflows │ ├── build-libs-bundle_wlr.yaml │ ├── build-libs-bzip2.yaml │ ├── build-libs-libjpeg.yaml │ ├── build-libs-libpng.yaml │ ├── build-libs-libuuid.yaml │ ├── build-libs-libxml2.yaml │ ├── build-libs-oniguruma.yaml │ ├── build-libs-sqlite.yaml │ ├── build-libs-zlib.yaml │ ├── build-php-nightly.yaml │ ├── build-php.yaml │ ├── build-python.yaml │ ├── build-ruby.yaml │ ├── release-libs-bundle_wlr.yaml │ ├── release-libs-bzip2.yaml │ ├── release-libs-libjpeg.yaml │ ├── release-libs-libpng.yaml │ ├── release-libs-libuuid.yaml │ ├── release-libs-libxml2.yaml │ ├── release-libs-oniguruma.yaml │ ├── release-libs-sqlite.yaml │ ├── release-libs-zlib.yaml │ ├── release-php.yaml │ ├── release-python.yaml │ ├── release-ruby.yaml │ ├── reusable-build-lib.yaml │ ├── reusable-build-runtime-flavor.yaml │ ├── reusable-publish-assets.yaml │ ├── reusable-release-external-lib.yaml │ └── reusable-release-internal-lib.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING_CLA.md ├── Dockerfile.wasi-builder ├── Dockerfile.wasm-base ├── LICENSE ├── Makefile ├── Makefile.builders ├── Makefile.helpers ├── NOTICE ├── README.md ├── docs └── developers.md ├── images ├── php │ ├── Dockerfile.cli │ ├── Dockerfile.server │ └── docroot │ │ ├── favicon.ico │ │ └── index.php └── python │ └── Dockerfile ├── libs ├── Makefile ├── README.md ├── bundle_wlr │ ├── Makefile │ ├── README.md │ ├── wlr-build.sh │ ├── wlr-env-local.sh │ ├── wlr-info.json │ └── wlr-tag.sh ├── bzip2 │ ├── Makefile │ ├── README.md │ └── v1.0.8 │ │ ├── patches │ │ └── 0001-chore-Add-libinstall-to-Makefile.patch │ │ ├── wlr-build.sh │ │ ├── wlr-env-repo.sh │ │ └── wlr-tag.sh ├── examples │ ├── sqlite_example │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ └── main.c │ └── uuid_zlib_example │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ └── main.c ├── icu │ ├── Makefile │ ├── README.md │ └── v.72.1 │ │ ├── wlr-build.sh │ │ └── wlr-env-repo.sh ├── libjpeg │ ├── Makefile │ ├── README.md │ └── v2.1.5.1 │ │ ├── wlr-build.sh │ │ ├── wlr-env-repo.sh │ │ └── wlr-tag.sh ├── libpng │ ├── Makefile │ ├── README.md │ └── v1.6.39 │ │ ├── patches │ │ └── 0001-Avoid-setjmp-longjmp-for-WASI.patch │ │ ├── wlr-build.sh │ │ ├── wlr-env-repo.sh │ │ ├── wlr-info.json │ │ └── wlr-tag.sh ├── libuuid │ ├── Makefile │ ├── README.md │ └── v1.0.3 │ │ ├── patches │ │ └── 0001-fix-Mock-umask-and-getuid-when-missing.patch │ │ ├── wlr-build.sh │ │ ├── wlr-env-repo.sh │ │ └── wlr-tag.sh ├── libxml2 │ ├── Makefile │ ├── README.md │ ├── v2.10.3 │ │ ├── wlr-build.sh │ │ ├── wlr-env-repo.sh │ │ └── wlr-tag.sh │ └── v2.11.4 │ │ ├── wlr-build.sh │ │ ├── wlr-env-repo.sh │ │ └── wlr-tag.sh ├── oniguruma │ ├── Makefile │ ├── README.md │ └── v6.9.8 │ │ ├── wlr-build.sh │ │ ├── wlr-env-repo.sh │ │ └── wlr-tag.sh ├── sqlite │ ├── Makefile │ ├── README.md │ ├── v3.39.2 │ │ ├── patches │ │ │ ├── 0001-Patch-to-build-sqlite-3.39.2-for-wasm32-wasi.patch │ │ │ ├── 0002-Exclude-pwd-popen-and-passwd-code-for-__wasi__.patch │ │ │ └── 0900-Allow-install-headers-and-pc-files.patch │ │ ├── wlr-build.sh │ │ ├── wlr-env-repo.sh │ │ └── wlr-tag.sh │ ├── v3.41.2 │ │ ├── patches │ │ │ └── 0001-Allow-installation-of-headers-and-pkg-config-files-w.patch │ │ ├── wlr-build.sh │ │ ├── wlr-env-repo.sh │ │ └── wlr-tag.sh │ ├── v3.42.0 │ │ ├── patches │ │ │ └── 0001-Allow-installation-of-headers-and-pkg-config-files-w.patch │ │ ├── wlr-build.sh │ │ ├── wlr-env-repo.sh │ │ └── wlr-tag.sh │ └── wasi-patches │ │ └── wlr-build.sh ├── wasmedge_sock │ ├── .clang-format │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── include │ │ ├── netdb.h │ │ └── wasi_socket_ext.h │ ├── netdb.c │ ├── wasi_snapshot_preview1.h │ ├── wasi_socket_ext.c │ ├── wlr-build.sh │ └── wlr-env-local.sh └── zlib │ ├── Makefile │ ├── README.md │ └── v1.2.13 │ ├── wlr-build.sh │ ├── wlr-env-repo.sh │ └── wlr-tag.sh ├── php ├── Dockerfile ├── Makefile ├── README.md ├── examples │ ├── mysql │ │ ├── run_me.sh │ │ └── test_mysql_pdo.php │ └── wp-nginx-php-fcgi-mysql │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── php-cgi-wasmedge │ │ └── Dockerfile │ │ ├── proxy-nginx │ │ └── default.conf.template │ │ └── run_me.sh ├── master │ ├── patches │ │ ├── 0001-Add-support-for-building-to-the-wasm32-wasi-target.patch │ │ └── 0002-Implement-WebAssembly-WASI-GH-actions.patch │ ├── wlr-build.sh │ ├── wlr-env-repo.sh │ ├── wlr-info.json │ └── wlr-test.sh ├── v7.3.33 │ └── README.md ├── v7.4.32 │ └── README.md ├── v8.1.11 │ ├── README.md │ ├── patches │ │ ├── 0001-Initial-port-of-the-php-7.4.32-patch-for-php-8.1.11.patch │ │ └── 0002-feat-Incapacitate-fibers-when-compiling-for-WASI.patch │ ├── wlr-build.sh │ ├── wlr-env-repo.sh │ ├── wlr-info.json │ ├── wlr-tag.sh │ └── wlr-test.sh ├── v8.2.0 │ ├── patches │ │ ├── 0001-Initial-port-of-the-php-7.4.32-patch-for-php-8.2.11.patch │ │ ├── 0002-feat-Incapacitate-fibers-when-compiling-for-WASI.patch │ │ ├── 0003-fix-Add-more-ifdefs-for-php-8.2.0.patch │ │ ├── 0004-fix-Fix-memory-issues-and-introduce-WASM_WASMEDGE.patch │ │ ├── 0005-feat-Server-sockets-via-with-wasm-runtime-wasmedge.patch │ │ ├── 0006-fix-Avoid-include-syslog.h-since-it-is-not-part-of-w.patch │ │ ├── 0007-fix-Avoid-setjmp-longjmp-in-gd_jpeg.patch │ │ ├── 0008-fix-Avoid-tmpfile-in-gd_bmp.patch │ │ ├── 0009-fix-Avoid-jmp_buf-in-gd_jpeg.patch │ │ ├── 0010-chore-Add-more-logs-in-wasi_socket_ext.patch │ │ ├── 0011-fix-fastcgi-server-in-php-cgi-for-wasmedge.patch │ │ ├── 0012-chore-Add-debug-logging-in-fastcgi.patch │ │ ├── 0013-chore-Fixes-logs-getnameinfo-in-wasi-sock-sdk.patch │ │ ├── 0014-fix-implicit-function-declaration-in-syslog.patch │ │ ├── 0015-feat-Enable-mysqlnd-and-more-network-functions-with-.patch │ │ ├── 0016-fix-implicit-function-declaration-for-bind-when-not-.patch │ │ ├── 0017-fix-is_writable-with-stat-bypass.patch │ │ └── 0018-fix-random_bytes-failing-on-Windows.patch │ ├── wlr-build.sh │ ├── wlr-env-repo.sh │ ├── wlr-info.json │ ├── wlr-tag.sh │ └── wlr-test.sh └── v8.2.6 │ ├── patches │ ├── 0001-Initial-port-of-the-php-7.4.32-patch-for-php-8.2.6.patch │ ├── 0002-feat-Incapacitate-fibers-when-compiling-for-WASI.patch │ ├── 0003-fix-Add-more-ifdefs-for-php-8.2.0.patch │ ├── 0004-fix-Fix-memory-issues-and-introduce-WASM_WASMEDGE.patch │ ├── 0005-feat-Server-sockets-via-with-wasm-runtime-wasmedge.patch │ ├── 0006-fix-Avoid-include-syslog.h-since-it-is-not-part-of-w.patch │ ├── 0007-fix-Avoid-setjmp-longjmp-in-gd_jpeg.patch │ ├── 0008-fix-Avoid-tmpfile-in-gd_bmp.patch │ ├── 0009-fix-Avoid-jmp_buf-in-gd_jpeg.patch │ ├── 0010-chore-Add-more-logs-in-wasi_socket_ext.patch │ ├── 0011-fix-fastcgi-server-in-php-cgi-for-wasmedge.patch │ ├── 0012-chore-Add-debug-logging-in-fastcgi.patch │ ├── 0013-chore-Fixes-logs-getnameinfo-in-wasi-sock-sdk.patch │ ├── 0014-fix-implicit-function-declaration-in-syslog.patch │ ├── 0015-feat-Enable-mysqlnd-and-more-network-functions-with-.patch │ ├── 0016-fix-implicit-function-declaration-for-bind-when-not-.patch │ ├── 0017-fix-Patch-for-is_readable-and-is_writable-to-bypass-.patch │ ├── 0018-fix-random_bytes-failing-on-Windows.patch │ └── 0019-chore-Remove-wasmedge_stubs-and-use-libwasmedge_sock.patch │ ├── wlr-build.sh │ ├── wlr-env-repo.sh │ ├── wlr-info.json │ ├── wlr-tag.sh │ └── wlr-test.sh ├── python ├── Dockerfile ├── Makefile ├── README.md ├── examples │ ├── .gitignore │ ├── README.md │ ├── basic │ │ ├── README.md │ │ ├── run_all_snippets.sh │ │ └── workdir │ │ │ ├── emojize_text.py │ │ │ ├── source_text.txt │ │ │ └── text_histogram.py │ ├── bindings │ │ └── se2-bindings │ │ │ ├── README.md │ │ │ ├── console-output.png │ │ │ ├── py-plugin │ │ │ └── plugin.py │ │ │ ├── run_me.sh │ │ │ ├── se2-mock-runtime.drawio.png │ │ │ ├── se2-mock-runtime │ │ │ ├── bin │ │ │ │ └── runtime.js │ │ │ ├── mem-utils.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ │ └── wasm-wrapper-c │ │ │ ├── CMakeLists.txt │ │ │ ├── build-wasm.sh │ │ │ ├── main.c │ │ │ ├── pyhost.c │ │ │ ├── pyhost.h │ │ │ ├── sdk_module.c │ │ │ ├── sdk_module.h │ │ │ ├── utils.c │ │ │ ├── utils.h │ │ │ ├── wasm_shim.c │ │ │ └── wasm_shim.h │ └── embedding │ │ ├── README.md │ │ ├── wasi-py-rs-cpython │ │ ├── .cargo │ │ │ └── config.toml │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── build.rs │ │ ├── run_me.cmd │ │ ├── run_me.sh │ │ └── src │ │ │ └── main.rs │ │ └── wasi-py-rs-pyo3 │ │ ├── .cargo │ │ └── config.toml │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── build.rs │ │ ├── run_me.cmd │ │ ├── run_me.sh │ │ └── src │ │ ├── bin │ │ ├── py-func-caller.rs │ │ ├── py-func.py │ │ └── py-wrapper.rs │ │ ├── lib.rs │ │ └── py_module.rs ├── test │ ├── run_me.sh │ └── sqlite │ │ ├── .gitignore │ │ ├── test.py │ │ └── test.stdout ├── tools │ └── wlr-libpy │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ ├── bld_cfg.rs │ │ ├── lib.rs │ │ └── py_main.rs ├── v3.11.1 │ ├── wlr-build.sh │ ├── wlr-env-repo.sh │ ├── wlr-info.json │ └── wlr-tag.sh ├── v3.11.3 │ ├── wlr-build.sh │ ├── wlr-env-repo.sh │ ├── wlr-info.json │ └── wlr-tag.sh ├── v3.11.4 │ ├── wlr-build.sh │ ├── wlr-env-repo.sh │ ├── wlr-info.json │ ├── wlr-tag.sh │ └── wlr-test.sh └── v3.12.0 │ ├── wlr-build.sh │ ├── wlr-env-repo.sh │ ├── wlr-info.json │ ├── wlr-tag.sh │ └── wlr-test.sh ├── ruby ├── Dockerfile ├── Makefile ├── README.md ├── v3.2.0 │ ├── wlr-build.sh │ ├── wlr-env-repo.sh │ └── wlr-tag.sh └── v3.2.2 │ ├── wlr-build.sh │ ├── wlr-env-repo.sh │ └── wlr-tag.sh ├── scripts ├── README.md ├── build-helpers │ ├── README.md │ ├── patch_wasmedge_wat_sock_accept.sh │ ├── wlr_autoconf.sh │ ├── wlr_cmake.sh │ ├── wlr_dependencies.sh │ ├── wlr_package.sh │ ├── wlr_pkg_config.sh │ └── wlr_wasi_vfs.sh ├── wlr-build.sh ├── wlr-env.sh ├── wlr-setup-repo.sh ├── wlr-tag.sh ├── wlr-test.sh ├── wlr-update-patches.sh └── wrappers │ ├── wasm-opt │ ├── wasmedge.sh │ └── wasmtime.sh ├── tools └── wlr-assets │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── bld_cfg.rs │ └── lib.rs └── wlr-make.sh /.github/workflows/build-libs-bundle_wlr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-libs-bundle_wlr.yaml -------------------------------------------------------------------------------- /.github/workflows/build-libs-bzip2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-libs-bzip2.yaml -------------------------------------------------------------------------------- /.github/workflows/build-libs-libjpeg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-libs-libjpeg.yaml -------------------------------------------------------------------------------- /.github/workflows/build-libs-libpng.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-libs-libpng.yaml -------------------------------------------------------------------------------- /.github/workflows/build-libs-libuuid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-libs-libuuid.yaml -------------------------------------------------------------------------------- /.github/workflows/build-libs-libxml2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-libs-libxml2.yaml -------------------------------------------------------------------------------- /.github/workflows/build-libs-oniguruma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-libs-oniguruma.yaml -------------------------------------------------------------------------------- /.github/workflows/build-libs-sqlite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-libs-sqlite.yaml -------------------------------------------------------------------------------- /.github/workflows/build-libs-zlib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-libs-zlib.yaml -------------------------------------------------------------------------------- /.github/workflows/build-php-nightly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-php-nightly.yaml -------------------------------------------------------------------------------- /.github/workflows/build-php.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-php.yaml -------------------------------------------------------------------------------- /.github/workflows/build-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-python.yaml -------------------------------------------------------------------------------- /.github/workflows/build-ruby.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/build-ruby.yaml -------------------------------------------------------------------------------- /.github/workflows/release-libs-bundle_wlr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/release-libs-bundle_wlr.yaml -------------------------------------------------------------------------------- /.github/workflows/release-libs-bzip2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/release-libs-bzip2.yaml -------------------------------------------------------------------------------- /.github/workflows/release-libs-libjpeg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/release-libs-libjpeg.yaml -------------------------------------------------------------------------------- /.github/workflows/release-libs-libpng.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/release-libs-libpng.yaml -------------------------------------------------------------------------------- /.github/workflows/release-libs-libuuid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/release-libs-libuuid.yaml -------------------------------------------------------------------------------- /.github/workflows/release-libs-libxml2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/release-libs-libxml2.yaml -------------------------------------------------------------------------------- /.github/workflows/release-libs-oniguruma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/release-libs-oniguruma.yaml -------------------------------------------------------------------------------- /.github/workflows/release-libs-sqlite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/release-libs-sqlite.yaml -------------------------------------------------------------------------------- /.github/workflows/release-libs-zlib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/release-libs-zlib.yaml -------------------------------------------------------------------------------- /.github/workflows/release-php.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/release-php.yaml -------------------------------------------------------------------------------- /.github/workflows/release-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/release-python.yaml -------------------------------------------------------------------------------- /.github/workflows/release-ruby.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/release-ruby.yaml -------------------------------------------------------------------------------- /.github/workflows/reusable-build-lib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/reusable-build-lib.yaml -------------------------------------------------------------------------------- /.github/workflows/reusable-build-runtime-flavor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/reusable-build-runtime-flavor.yaml -------------------------------------------------------------------------------- /.github/workflows/reusable-publish-assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/reusable-publish-assets.yaml -------------------------------------------------------------------------------- /.github/workflows/reusable-release-external-lib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/reusable-release-external-lib.yaml -------------------------------------------------------------------------------- /.github/workflows/reusable-release-internal-lib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.github/workflows/reusable-release-internal-lib.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING_CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/CONTRIBUTING_CLA.md -------------------------------------------------------------------------------- /Dockerfile.wasi-builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/Dockerfile.wasi-builder -------------------------------------------------------------------------------- /Dockerfile.wasm-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/Dockerfile.wasm-base -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.builders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/Makefile.builders -------------------------------------------------------------------------------- /Makefile.helpers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/Makefile.helpers -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/README.md -------------------------------------------------------------------------------- /docs/developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/docs/developers.md -------------------------------------------------------------------------------- /images/php/Dockerfile.cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/images/php/Dockerfile.cli -------------------------------------------------------------------------------- /images/php/Dockerfile.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/images/php/Dockerfile.server -------------------------------------------------------------------------------- /images/php/docroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/images/php/docroot/favicon.ico -------------------------------------------------------------------------------- /images/php/docroot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/images/php/docroot/index.php -------------------------------------------------------------------------------- /images/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/images/python/Dockerfile -------------------------------------------------------------------------------- /libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/Makefile -------------------------------------------------------------------------------- /libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/README.md -------------------------------------------------------------------------------- /libs/bundle_wlr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/bundle_wlr/Makefile -------------------------------------------------------------------------------- /libs/bundle_wlr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/bundle_wlr/README.md -------------------------------------------------------------------------------- /libs/bundle_wlr/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/bundle_wlr/wlr-build.sh -------------------------------------------------------------------------------- /libs/bundle_wlr/wlr-env-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/bundle_wlr/wlr-env-local.sh -------------------------------------------------------------------------------- /libs/bundle_wlr/wlr-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/bundle_wlr/wlr-info.json -------------------------------------------------------------------------------- /libs/bundle_wlr/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="libs/bundle_wlr/0.1.0" 2 | -------------------------------------------------------------------------------- /libs/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/bzip2/Makefile -------------------------------------------------------------------------------- /libs/bzip2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/bzip2/README.md -------------------------------------------------------------------------------- /libs/bzip2/v1.0.8/patches/0001-chore-Add-libinstall-to-Makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/bzip2/v1.0.8/patches/0001-chore-Add-libinstall-to-Makefile.patch -------------------------------------------------------------------------------- /libs/bzip2/v1.0.8/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/bzip2/v1.0.8/wlr-build.sh -------------------------------------------------------------------------------- /libs/bzip2/v1.0.8/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/bzip2/v1.0.8/wlr-env-repo.sh -------------------------------------------------------------------------------- /libs/bzip2/v1.0.8/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="libs/bzip2/1.0.8" 2 | -------------------------------------------------------------------------------- /libs/examples/sqlite_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/examples/sqlite_example/CMakeLists.txt -------------------------------------------------------------------------------- /libs/examples/sqlite_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/examples/sqlite_example/README.md -------------------------------------------------------------------------------- /libs/examples/sqlite_example/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/examples/sqlite_example/build.sh -------------------------------------------------------------------------------- /libs/examples/sqlite_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/examples/sqlite_example/main.c -------------------------------------------------------------------------------- /libs/examples/uuid_zlib_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/examples/uuid_zlib_example/CMakeLists.txt -------------------------------------------------------------------------------- /libs/examples/uuid_zlib_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/examples/uuid_zlib_example/README.md -------------------------------------------------------------------------------- /libs/examples/uuid_zlib_example/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/examples/uuid_zlib_example/build.sh -------------------------------------------------------------------------------- /libs/examples/uuid_zlib_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/examples/uuid_zlib_example/main.c -------------------------------------------------------------------------------- /libs/icu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/icu/Makefile -------------------------------------------------------------------------------- /libs/icu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/icu/README.md -------------------------------------------------------------------------------- /libs/icu/v.72.1/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/icu/v.72.1/wlr-build.sh -------------------------------------------------------------------------------- /libs/icu/v.72.1/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/icu/v.72.1/wlr-env-repo.sh -------------------------------------------------------------------------------- /libs/libjpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libjpeg/Makefile -------------------------------------------------------------------------------- /libs/libjpeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libjpeg/README.md -------------------------------------------------------------------------------- /libs/libjpeg/v2.1.5.1/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libjpeg/v2.1.5.1/wlr-build.sh -------------------------------------------------------------------------------- /libs/libjpeg/v2.1.5.1/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libjpeg/v2.1.5.1/wlr-env-repo.sh -------------------------------------------------------------------------------- /libs/libjpeg/v2.1.5.1/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="libs/libjpeg/2.1.5.1" 2 | -------------------------------------------------------------------------------- /libs/libpng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libpng/Makefile -------------------------------------------------------------------------------- /libs/libpng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libpng/README.md -------------------------------------------------------------------------------- /libs/libpng/v1.6.39/patches/0001-Avoid-setjmp-longjmp-for-WASI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libpng/v1.6.39/patches/0001-Avoid-setjmp-longjmp-for-WASI.patch -------------------------------------------------------------------------------- /libs/libpng/v1.6.39/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libpng/v1.6.39/wlr-build.sh -------------------------------------------------------------------------------- /libs/libpng/v1.6.39/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libpng/v1.6.39/wlr-env-repo.sh -------------------------------------------------------------------------------- /libs/libpng/v1.6.39/wlr-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libpng/v1.6.39/wlr-info.json -------------------------------------------------------------------------------- /libs/libpng/v1.6.39/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="libs/libpng/1.6.39" 2 | -------------------------------------------------------------------------------- /libs/libuuid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libuuid/Makefile -------------------------------------------------------------------------------- /libs/libuuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libuuid/README.md -------------------------------------------------------------------------------- /libs/libuuid/v1.0.3/patches/0001-fix-Mock-umask-and-getuid-when-missing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libuuid/v1.0.3/patches/0001-fix-Mock-umask-and-getuid-when-missing.patch -------------------------------------------------------------------------------- /libs/libuuid/v1.0.3/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libuuid/v1.0.3/wlr-build.sh -------------------------------------------------------------------------------- /libs/libuuid/v1.0.3/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libuuid/v1.0.3/wlr-env-repo.sh -------------------------------------------------------------------------------- /libs/libuuid/v1.0.3/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="libs/libuuid/1.0.3" 2 | -------------------------------------------------------------------------------- /libs/libxml2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libxml2/Makefile -------------------------------------------------------------------------------- /libs/libxml2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libxml2/README.md -------------------------------------------------------------------------------- /libs/libxml2/v2.10.3/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libxml2/v2.10.3/wlr-build.sh -------------------------------------------------------------------------------- /libs/libxml2/v2.10.3/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libxml2/v2.10.3/wlr-env-repo.sh -------------------------------------------------------------------------------- /libs/libxml2/v2.10.3/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="libs/libxml2/2.10.3" 2 | -------------------------------------------------------------------------------- /libs/libxml2/v2.11.4/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libxml2/v2.11.4/wlr-build.sh -------------------------------------------------------------------------------- /libs/libxml2/v2.11.4/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/libxml2/v2.11.4/wlr-env-repo.sh -------------------------------------------------------------------------------- /libs/libxml2/v2.11.4/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="libs/libxml2/2.11.4" 2 | -------------------------------------------------------------------------------- /libs/oniguruma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/oniguruma/Makefile -------------------------------------------------------------------------------- /libs/oniguruma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/oniguruma/README.md -------------------------------------------------------------------------------- /libs/oniguruma/v6.9.8/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/oniguruma/v6.9.8/wlr-build.sh -------------------------------------------------------------------------------- /libs/oniguruma/v6.9.8/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/oniguruma/v6.9.8/wlr-env-repo.sh -------------------------------------------------------------------------------- /libs/oniguruma/v6.9.8/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="libs/oniguruma/6.9.8" 2 | -------------------------------------------------------------------------------- /libs/sqlite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/Makefile -------------------------------------------------------------------------------- /libs/sqlite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/README.md -------------------------------------------------------------------------------- /libs/sqlite/v3.39.2/patches/0001-Patch-to-build-sqlite-3.39.2-for-wasm32-wasi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/v3.39.2/patches/0001-Patch-to-build-sqlite-3.39.2-for-wasm32-wasi.patch -------------------------------------------------------------------------------- /libs/sqlite/v3.39.2/patches/0002-Exclude-pwd-popen-and-passwd-code-for-__wasi__.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/v3.39.2/patches/0002-Exclude-pwd-popen-and-passwd-code-for-__wasi__.patch -------------------------------------------------------------------------------- /libs/sqlite/v3.39.2/patches/0900-Allow-install-headers-and-pc-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/v3.39.2/patches/0900-Allow-install-headers-and-pc-files.patch -------------------------------------------------------------------------------- /libs/sqlite/v3.39.2/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/v3.39.2/wlr-build.sh -------------------------------------------------------------------------------- /libs/sqlite/v3.39.2/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/v3.39.2/wlr-env-repo.sh -------------------------------------------------------------------------------- /libs/sqlite/v3.39.2/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="libs/sqlite/3.39.2" 2 | -------------------------------------------------------------------------------- /libs/sqlite/v3.41.2/patches/0001-Allow-installation-of-headers-and-pkg-config-files-w.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/v3.41.2/patches/0001-Allow-installation-of-headers-and-pkg-config-files-w.patch -------------------------------------------------------------------------------- /libs/sqlite/v3.41.2/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/v3.41.2/wlr-build.sh -------------------------------------------------------------------------------- /libs/sqlite/v3.41.2/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/v3.41.2/wlr-env-repo.sh -------------------------------------------------------------------------------- /libs/sqlite/v3.41.2/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="libs/sqlite/3.41.2" 2 | -------------------------------------------------------------------------------- /libs/sqlite/v3.42.0/patches/0001-Allow-installation-of-headers-and-pkg-config-files-w.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/v3.42.0/patches/0001-Allow-installation-of-headers-and-pkg-config-files-w.patch -------------------------------------------------------------------------------- /libs/sqlite/v3.42.0/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/v3.42.0/wlr-build.sh -------------------------------------------------------------------------------- /libs/sqlite/v3.42.0/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/v3.42.0/wlr-env-repo.sh -------------------------------------------------------------------------------- /libs/sqlite/v3.42.0/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="libs/sqlite/3.42.0" 2 | -------------------------------------------------------------------------------- /libs/sqlite/wasi-patches/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/sqlite/wasi-patches/wlr-build.sh -------------------------------------------------------------------------------- /libs/wasmedge_sock/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/wasmedge_sock/.clang-format -------------------------------------------------------------------------------- /libs/wasmedge_sock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/wasmedge_sock/CMakeLists.txt -------------------------------------------------------------------------------- /libs/wasmedge_sock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/wasmedge_sock/Makefile -------------------------------------------------------------------------------- /libs/wasmedge_sock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/wasmedge_sock/README.md -------------------------------------------------------------------------------- /libs/wasmedge_sock/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/wasmedge_sock/include/netdb.h -------------------------------------------------------------------------------- /libs/wasmedge_sock/include/wasi_socket_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/wasmedge_sock/include/wasi_socket_ext.h -------------------------------------------------------------------------------- /libs/wasmedge_sock/netdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/wasmedge_sock/netdb.c -------------------------------------------------------------------------------- /libs/wasmedge_sock/wasi_snapshot_preview1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/wasmedge_sock/wasi_snapshot_preview1.h -------------------------------------------------------------------------------- /libs/wasmedge_sock/wasi_socket_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/wasmedge_sock/wasi_socket_ext.c -------------------------------------------------------------------------------- /libs/wasmedge_sock/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/wasmedge_sock/wlr-build.sh -------------------------------------------------------------------------------- /libs/wasmedge_sock/wlr-env-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/wasmedge_sock/wlr-env-local.sh -------------------------------------------------------------------------------- /libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/zlib/Makefile -------------------------------------------------------------------------------- /libs/zlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/zlib/README.md -------------------------------------------------------------------------------- /libs/zlib/v1.2.13/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/zlib/v1.2.13/wlr-build.sh -------------------------------------------------------------------------------- /libs/zlib/v1.2.13/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/libs/zlib/v1.2.13/wlr-env-repo.sh -------------------------------------------------------------------------------- /libs/zlib/v1.2.13/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="libs/zlib/1.2.13" 2 | -------------------------------------------------------------------------------- /php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/Dockerfile -------------------------------------------------------------------------------- /php/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/Makefile -------------------------------------------------------------------------------- /php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/README.md -------------------------------------------------------------------------------- /php/examples/mysql/run_me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/examples/mysql/run_me.sh -------------------------------------------------------------------------------- /php/examples/mysql/test_mysql_pdo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/examples/mysql/test_mysql_pdo.php -------------------------------------------------------------------------------- /php/examples/wp-nginx-php-fcgi-mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/examples/wp-nginx-php-fcgi-mysql/README.md -------------------------------------------------------------------------------- /php/examples/wp-nginx-php-fcgi-mysql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/examples/wp-nginx-php-fcgi-mysql/docker-compose.yml -------------------------------------------------------------------------------- /php/examples/wp-nginx-php-fcgi-mysql/php-cgi-wasmedge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/examples/wp-nginx-php-fcgi-mysql/php-cgi-wasmedge/Dockerfile -------------------------------------------------------------------------------- /php/examples/wp-nginx-php-fcgi-mysql/proxy-nginx/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/examples/wp-nginx-php-fcgi-mysql/proxy-nginx/default.conf.template -------------------------------------------------------------------------------- /php/examples/wp-nginx-php-fcgi-mysql/run_me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/examples/wp-nginx-php-fcgi-mysql/run_me.sh -------------------------------------------------------------------------------- /php/master/patches/0001-Add-support-for-building-to-the-wasm32-wasi-target.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/master/patches/0001-Add-support-for-building-to-the-wasm32-wasi-target.patch -------------------------------------------------------------------------------- /php/master/patches/0002-Implement-WebAssembly-WASI-GH-actions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/master/patches/0002-Implement-WebAssembly-WASI-GH-actions.patch -------------------------------------------------------------------------------- /php/master/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/master/wlr-build.sh -------------------------------------------------------------------------------- /php/master/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/master/wlr-env-repo.sh -------------------------------------------------------------------------------- /php/master/wlr-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/master/wlr-info.json -------------------------------------------------------------------------------- /php/master/wlr-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/master/wlr-test.sh -------------------------------------------------------------------------------- /php/v7.3.33/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v7.3.33/README.md -------------------------------------------------------------------------------- /php/v7.4.32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v7.4.32/README.md -------------------------------------------------------------------------------- /php/v8.1.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.1.11/README.md -------------------------------------------------------------------------------- /php/v8.1.11/patches/0001-Initial-port-of-the-php-7.4.32-patch-for-php-8.1.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.1.11/patches/0001-Initial-port-of-the-php-7.4.32-patch-for-php-8.1.11.patch -------------------------------------------------------------------------------- /php/v8.1.11/patches/0002-feat-Incapacitate-fibers-when-compiling-for-WASI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.1.11/patches/0002-feat-Incapacitate-fibers-when-compiling-for-WASI.patch -------------------------------------------------------------------------------- /php/v8.1.11/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.1.11/wlr-build.sh -------------------------------------------------------------------------------- /php/v8.1.11/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.1.11/wlr-env-repo.sh -------------------------------------------------------------------------------- /php/v8.1.11/wlr-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.1.11/wlr-info.json -------------------------------------------------------------------------------- /php/v8.1.11/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="php/8.1.11" 2 | -------------------------------------------------------------------------------- /php/v8.1.11/wlr-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.1.11/wlr-test.sh -------------------------------------------------------------------------------- /php/v8.2.0/patches/0001-Initial-port-of-the-php-7.4.32-patch-for-php-8.2.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0001-Initial-port-of-the-php-7.4.32-patch-for-php-8.2.11.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0002-feat-Incapacitate-fibers-when-compiling-for-WASI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0002-feat-Incapacitate-fibers-when-compiling-for-WASI.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0003-fix-Add-more-ifdefs-for-php-8.2.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0003-fix-Add-more-ifdefs-for-php-8.2.0.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0004-fix-Fix-memory-issues-and-introduce-WASM_WASMEDGE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0004-fix-Fix-memory-issues-and-introduce-WASM_WASMEDGE.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0005-feat-Server-sockets-via-with-wasm-runtime-wasmedge.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0005-feat-Server-sockets-via-with-wasm-runtime-wasmedge.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0006-fix-Avoid-include-syslog.h-since-it-is-not-part-of-w.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0006-fix-Avoid-include-syslog.h-since-it-is-not-part-of-w.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0007-fix-Avoid-setjmp-longjmp-in-gd_jpeg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0007-fix-Avoid-setjmp-longjmp-in-gd_jpeg.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0008-fix-Avoid-tmpfile-in-gd_bmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0008-fix-Avoid-tmpfile-in-gd_bmp.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0009-fix-Avoid-jmp_buf-in-gd_jpeg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0009-fix-Avoid-jmp_buf-in-gd_jpeg.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0010-chore-Add-more-logs-in-wasi_socket_ext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0010-chore-Add-more-logs-in-wasi_socket_ext.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0011-fix-fastcgi-server-in-php-cgi-for-wasmedge.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0011-fix-fastcgi-server-in-php-cgi-for-wasmedge.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0012-chore-Add-debug-logging-in-fastcgi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0012-chore-Add-debug-logging-in-fastcgi.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0013-chore-Fixes-logs-getnameinfo-in-wasi-sock-sdk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0013-chore-Fixes-logs-getnameinfo-in-wasi-sock-sdk.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0014-fix-implicit-function-declaration-in-syslog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0014-fix-implicit-function-declaration-in-syslog.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0015-feat-Enable-mysqlnd-and-more-network-functions-with-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0015-feat-Enable-mysqlnd-and-more-network-functions-with-.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0016-fix-implicit-function-declaration-for-bind-when-not-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0016-fix-implicit-function-declaration-for-bind-when-not-.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0017-fix-is_writable-with-stat-bypass.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0017-fix-is_writable-with-stat-bypass.patch -------------------------------------------------------------------------------- /php/v8.2.0/patches/0018-fix-random_bytes-failing-on-Windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/patches/0018-fix-random_bytes-failing-on-Windows.patch -------------------------------------------------------------------------------- /php/v8.2.0/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/wlr-build.sh -------------------------------------------------------------------------------- /php/v8.2.0/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/wlr-env-repo.sh -------------------------------------------------------------------------------- /php/v8.2.0/wlr-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/wlr-info.json -------------------------------------------------------------------------------- /php/v8.2.0/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="php/8.2.0" 2 | -------------------------------------------------------------------------------- /php/v8.2.0/wlr-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.0/wlr-test.sh -------------------------------------------------------------------------------- /php/v8.2.6/patches/0001-Initial-port-of-the-php-7.4.32-patch-for-php-8.2.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0001-Initial-port-of-the-php-7.4.32-patch-for-php-8.2.6.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0002-feat-Incapacitate-fibers-when-compiling-for-WASI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0002-feat-Incapacitate-fibers-when-compiling-for-WASI.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0003-fix-Add-more-ifdefs-for-php-8.2.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0003-fix-Add-more-ifdefs-for-php-8.2.0.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0004-fix-Fix-memory-issues-and-introduce-WASM_WASMEDGE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0004-fix-Fix-memory-issues-and-introduce-WASM_WASMEDGE.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0005-feat-Server-sockets-via-with-wasm-runtime-wasmedge.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0005-feat-Server-sockets-via-with-wasm-runtime-wasmedge.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0006-fix-Avoid-include-syslog.h-since-it-is-not-part-of-w.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0006-fix-Avoid-include-syslog.h-since-it-is-not-part-of-w.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0007-fix-Avoid-setjmp-longjmp-in-gd_jpeg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0007-fix-Avoid-setjmp-longjmp-in-gd_jpeg.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0008-fix-Avoid-tmpfile-in-gd_bmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0008-fix-Avoid-tmpfile-in-gd_bmp.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0009-fix-Avoid-jmp_buf-in-gd_jpeg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0009-fix-Avoid-jmp_buf-in-gd_jpeg.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0010-chore-Add-more-logs-in-wasi_socket_ext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0010-chore-Add-more-logs-in-wasi_socket_ext.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0011-fix-fastcgi-server-in-php-cgi-for-wasmedge.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0011-fix-fastcgi-server-in-php-cgi-for-wasmedge.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0012-chore-Add-debug-logging-in-fastcgi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0012-chore-Add-debug-logging-in-fastcgi.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0013-chore-Fixes-logs-getnameinfo-in-wasi-sock-sdk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0013-chore-Fixes-logs-getnameinfo-in-wasi-sock-sdk.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0014-fix-implicit-function-declaration-in-syslog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0014-fix-implicit-function-declaration-in-syslog.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0015-feat-Enable-mysqlnd-and-more-network-functions-with-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0015-feat-Enable-mysqlnd-and-more-network-functions-with-.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0016-fix-implicit-function-declaration-for-bind-when-not-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0016-fix-implicit-function-declaration-for-bind-when-not-.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0017-fix-Patch-for-is_readable-and-is_writable-to-bypass-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0017-fix-Patch-for-is_readable-and-is_writable-to-bypass-.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0018-fix-random_bytes-failing-on-Windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0018-fix-random_bytes-failing-on-Windows.patch -------------------------------------------------------------------------------- /php/v8.2.6/patches/0019-chore-Remove-wasmedge_stubs-and-use-libwasmedge_sock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/patches/0019-chore-Remove-wasmedge_stubs-and-use-libwasmedge_sock.patch -------------------------------------------------------------------------------- /php/v8.2.6/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/wlr-build.sh -------------------------------------------------------------------------------- /php/v8.2.6/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/wlr-env-repo.sh -------------------------------------------------------------------------------- /php/v8.2.6/wlr-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/wlr-info.json -------------------------------------------------------------------------------- /php/v8.2.6/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="php/8.2.6" 2 | -------------------------------------------------------------------------------- /php/v8.2.6/wlr-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/php/v8.2.6/wlr-test.sh -------------------------------------------------------------------------------- /python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/Dockerfile -------------------------------------------------------------------------------- /python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/Makefile -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/README.md -------------------------------------------------------------------------------- /python/examples/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /python/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/README.md -------------------------------------------------------------------------------- /python/examples/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/basic/README.md -------------------------------------------------------------------------------- /python/examples/basic/run_all_snippets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/basic/run_all_snippets.sh -------------------------------------------------------------------------------- /python/examples/basic/workdir/emojize_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/basic/workdir/emojize_text.py -------------------------------------------------------------------------------- /python/examples/basic/workdir/source_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/basic/workdir/source_text.txt -------------------------------------------------------------------------------- /python/examples/basic/workdir/text_histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/basic/workdir/text_histogram.py -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/README.md -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/console-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/console-output.png -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/py-plugin/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/py-plugin/plugin.py -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/run_me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/run_me.sh -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/se2-mock-runtime.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/se2-mock-runtime.drawio.png -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/se2-mock-runtime/bin/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/se2-mock-runtime/bin/runtime.js -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/se2-mock-runtime/mem-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/se2-mock-runtime/mem-utils.js -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/se2-mock-runtime/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/se2-mock-runtime/package-lock.json -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/se2-mock-runtime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/se2-mock-runtime/package.json -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/wasm-wrapper-c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/wasm-wrapper-c/CMakeLists.txt -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/wasm-wrapper-c/build-wasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/wasm-wrapper-c/build-wasm.sh -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/wasm-wrapper-c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/wasm-wrapper-c/main.c -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/wasm-wrapper-c/pyhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/wasm-wrapper-c/pyhost.c -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/wasm-wrapper-c/pyhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/wasm-wrapper-c/pyhost.h -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/wasm-wrapper-c/sdk_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/wasm-wrapper-c/sdk_module.c -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/wasm-wrapper-c/sdk_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/wasm-wrapper-c/sdk_module.h -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/wasm-wrapper-c/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/wasm-wrapper-c/utils.c -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/wasm-wrapper-c/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/wasm-wrapper-c/utils.h -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/wasm-wrapper-c/wasm_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/wasm-wrapper-c/wasm_shim.c -------------------------------------------------------------------------------- /python/examples/bindings/se2-bindings/wasm-wrapper-c/wasm_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/bindings/se2-bindings/wasm-wrapper-c/wasm_shim.h -------------------------------------------------------------------------------- /python/examples/embedding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/README.md -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-cpython/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "wasm32-wasi" 3 | -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-cpython/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-cpython/Cargo.lock -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-cpython/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-cpython/Cargo.toml -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-cpython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-cpython/README.md -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-cpython/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-cpython/build.rs -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-cpython/run_me.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-cpython/run_me.cmd -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-cpython/run_me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-cpython/run_me.sh -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-cpython/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-cpython/src/main.rs -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-pyo3/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "wasm32-wasi" 3 | -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-pyo3/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-pyo3/Cargo.lock -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-pyo3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-pyo3/Cargo.toml -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-pyo3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-pyo3/README.md -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-pyo3/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-pyo3/build.rs -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-pyo3/run_me.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-pyo3/run_me.cmd -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-pyo3/run_me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-pyo3/run_me.sh -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-pyo3/src/bin/py-func-caller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-pyo3/src/bin/py-func-caller.rs -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-pyo3/src/bin/py-func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-pyo3/src/bin/py-func.py -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-pyo3/src/bin/py-wrapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-pyo3/src/bin/py-wrapper.rs -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-pyo3/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-pyo3/src/lib.rs -------------------------------------------------------------------------------- /python/examples/embedding/wasi-py-rs-pyo3/src/py_module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/examples/embedding/wasi-py-rs-pyo3/src/py_module.rs -------------------------------------------------------------------------------- /python/test/run_me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/test/run_me.sh -------------------------------------------------------------------------------- /python/test/sqlite/.gitignore: -------------------------------------------------------------------------------- 1 | *.db -------------------------------------------------------------------------------- /python/test/sqlite/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/test/sqlite/test.py -------------------------------------------------------------------------------- /python/test/sqlite/test.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/test/sqlite/test.stdout -------------------------------------------------------------------------------- /python/tools/wlr-libpy/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/tools/wlr-libpy/Cargo.lock -------------------------------------------------------------------------------- /python/tools/wlr-libpy/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/tools/wlr-libpy/Cargo.toml -------------------------------------------------------------------------------- /python/tools/wlr-libpy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/tools/wlr-libpy/README.md -------------------------------------------------------------------------------- /python/tools/wlr-libpy/src/bld_cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/tools/wlr-libpy/src/bld_cfg.rs -------------------------------------------------------------------------------- /python/tools/wlr-libpy/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/tools/wlr-libpy/src/lib.rs -------------------------------------------------------------------------------- /python/tools/wlr-libpy/src/py_main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/tools/wlr-libpy/src/py_main.rs -------------------------------------------------------------------------------- /python/v3.11.1/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.11.1/wlr-build.sh -------------------------------------------------------------------------------- /python/v3.11.1/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.11.1/wlr-env-repo.sh -------------------------------------------------------------------------------- /python/v3.11.1/wlr-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.11.1/wlr-info.json -------------------------------------------------------------------------------- /python/v3.11.1/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="python/3.11.1" 2 | -------------------------------------------------------------------------------- /python/v3.11.3/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.11.3/wlr-build.sh -------------------------------------------------------------------------------- /python/v3.11.3/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.11.3/wlr-env-repo.sh -------------------------------------------------------------------------------- /python/v3.11.3/wlr-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.11.3/wlr-info.json -------------------------------------------------------------------------------- /python/v3.11.3/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="python/3.11.3" 2 | -------------------------------------------------------------------------------- /python/v3.11.4/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.11.4/wlr-build.sh -------------------------------------------------------------------------------- /python/v3.11.4/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.11.4/wlr-env-repo.sh -------------------------------------------------------------------------------- /python/v3.11.4/wlr-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.11.4/wlr-info.json -------------------------------------------------------------------------------- /python/v3.11.4/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="python/3.11.4" 2 | -------------------------------------------------------------------------------- /python/v3.11.4/wlr-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.11.4/wlr-test.sh -------------------------------------------------------------------------------- /python/v3.12.0/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.12.0/wlr-build.sh -------------------------------------------------------------------------------- /python/v3.12.0/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.12.0/wlr-env-repo.sh -------------------------------------------------------------------------------- /python/v3.12.0/wlr-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.12.0/wlr-info.json -------------------------------------------------------------------------------- /python/v3.12.0/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="python/3.12.0" 2 | -------------------------------------------------------------------------------- /python/v3.12.0/wlr-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/python/v3.12.0/wlr-test.sh -------------------------------------------------------------------------------- /ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/ruby/Dockerfile -------------------------------------------------------------------------------- /ruby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/ruby/Makefile -------------------------------------------------------------------------------- /ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/ruby/README.md -------------------------------------------------------------------------------- /ruby/v3.2.0/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/ruby/v3.2.0/wlr-build.sh -------------------------------------------------------------------------------- /ruby/v3.2.0/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/ruby/v3.2.0/wlr-env-repo.sh -------------------------------------------------------------------------------- /ruby/v3.2.0/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="ruby/3.2.0" 2 | -------------------------------------------------------------------------------- /ruby/v3.2.2/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/ruby/v3.2.2/wlr-build.sh -------------------------------------------------------------------------------- /ruby/v3.2.2/wlr-env-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/ruby/v3.2.2/wlr-env-repo.sh -------------------------------------------------------------------------------- /ruby/v3.2.2/wlr-tag.sh: -------------------------------------------------------------------------------- 1 | export WLR_TAG="ruby/3.2.2" 2 | -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/build-helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/build-helpers/README.md -------------------------------------------------------------------------------- /scripts/build-helpers/patch_wasmedge_wat_sock_accept.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/build-helpers/patch_wasmedge_wat_sock_accept.sh -------------------------------------------------------------------------------- /scripts/build-helpers/wlr_autoconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/build-helpers/wlr_autoconf.sh -------------------------------------------------------------------------------- /scripts/build-helpers/wlr_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/build-helpers/wlr_cmake.sh -------------------------------------------------------------------------------- /scripts/build-helpers/wlr_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/build-helpers/wlr_dependencies.sh -------------------------------------------------------------------------------- /scripts/build-helpers/wlr_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/build-helpers/wlr_package.sh -------------------------------------------------------------------------------- /scripts/build-helpers/wlr_pkg_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/build-helpers/wlr_pkg_config.sh -------------------------------------------------------------------------------- /scripts/build-helpers/wlr_wasi_vfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/build-helpers/wlr_wasi_vfs.sh -------------------------------------------------------------------------------- /scripts/wlr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/wlr-build.sh -------------------------------------------------------------------------------- /scripts/wlr-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/wlr-env.sh -------------------------------------------------------------------------------- /scripts/wlr-setup-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/wlr-setup-repo.sh -------------------------------------------------------------------------------- /scripts/wlr-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/wlr-tag.sh -------------------------------------------------------------------------------- /scripts/wlr-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/wlr-test.sh -------------------------------------------------------------------------------- /scripts/wlr-update-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/wlr-update-patches.sh -------------------------------------------------------------------------------- /scripts/wrappers/wasm-opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/wrappers/wasm-opt -------------------------------------------------------------------------------- /scripts/wrappers/wasmedge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/wrappers/wasmedge.sh -------------------------------------------------------------------------------- /scripts/wrappers/wasmtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/scripts/wrappers/wasmtime.sh -------------------------------------------------------------------------------- /tools/wlr-assets/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/tools/wlr-assets/Cargo.lock -------------------------------------------------------------------------------- /tools/wlr-assets/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/tools/wlr-assets/Cargo.toml -------------------------------------------------------------------------------- /tools/wlr-assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/tools/wlr-assets/README.md -------------------------------------------------------------------------------- /tools/wlr-assets/src/bld_cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/tools/wlr-assets/src/bld_cfg.rs -------------------------------------------------------------------------------- /tools/wlr-assets/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/tools/wlr-assets/src/lib.rs -------------------------------------------------------------------------------- /wlr-make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webassemblylabs/webassembly-language-runtimes/HEAD/wlr-make.sh --------------------------------------------------------------------------------