From d3c6c973d9c5fe13ad1066d5de47470a41b54943 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Wed, 11 Jan 2017 06:21:22 -0800 Subject: Add support for linkable modules (#228) This change adds support for writing wasm modules such that they are compatible with the proposed linking spec: https://github.com/WebAssembly/tool-conventions/blob/master/Linking.md Basically this means that wast2wasm will generate and extra 'reloc' sections and will pad any LEBs in the code section that might require relocation. This mode is activated by passing the -r flag to wast2wasm. Also, start work on wasm-link which should be able to link such modules together. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1278d735..9b67450d 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ BUILD_TYPES := DEBUG RELEASE SANITIZERS := ASAN MSAN LSAN UBSAN CONFIGS := NORMAL $(SANITIZERS) NO_RE2C_BISON NO_TESTS EXECUTABLES := wast2wasm wasm2wast wasm-interp wasmopcodecnt hexfloat_test \ - wasmdump wast-desugar + wasmdump wast-desugar wasm-link # directory names GCC_DIR := gcc/ -- cgit v1.2.3