Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions bash/compile_bash.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ FORCE_CONFIGURE="${FORCE_CONFIGURE:-0}"
# LIND_DYLINK controls whether we produce a statically-linked or a shared
# (PIE/dynamic) wasm binary. Set LIND_DYLINK=1 to get the shared path;
# the default is static (0). The shared path adds the PIE linker flags, links
# in lind_debug.o and set_stack_pointer.o, runs add-export-tool to inject the
# in lind_debug.o, runs add-export-tool to inject the
# __wasm_apply_* and __stack_pointer exports, and uses the additional wasm-opt
# passes required for shared modules.
##################
Expand Down Expand Up @@ -120,7 +120,6 @@ if [[ "$LIND_DYLINK" == "1" ]]; then

# lind_debug.o lives in the glibc build tree (not installed to the sysroot)
DYLINK_CRT_OBJS=(
"$LIND_WASM_ROOT/src/glibc/build/csu/set_stack_pointer.o"
"$LIND_WASM_ROOT/src/glibc/build/lind_debug.o"
)
for obj in "${DYLINK_CRT_OBJS[@]}"; do
Expand Down
1 change: 0 additions & 1 deletion coreutils/compile_coreutils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ if [[ "$LIND_DYLINK" == "1" ]]; then

# Extra CRT objects required for dynamic PIE executables
DYLINK_CRT_OBJS=(
"$MERGED_SYSROOT/lib/wasm32-wasi/set_stack_pointer.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/crt1_shared.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/lind_utils.o"
)
Expand Down
1 change: 0 additions & 1 deletion cpython/compile_cpython.sh
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,6 @@ if [[ "$LIND_DYLINK" == "1" ]]; then
"$BUILD_WASM/Modules/_decimal/libmpdec/libmpdec.a" \
"$BUILD_WASM/Modules/_hacl/libHacl_HMAC.a" \
"$BUILD_WASM/Modules/_hacl/libHacl_Hash_SHA3.a" \
"$SYSROOT/lib/wasm32-wasi/set_stack_pointer.o" \
"$SYSROOT/lib/wasm32-wasi/crt1_shared.o" \
"$SYSROOT/lib/wasm32-wasi/lind_utils.o" \
-ldl -lwasi-emulated-signal -lwasi-emulated-getpid -lwasi-emulated-process-clocks -lpthread -lm
Expand Down
1 change: 0 additions & 1 deletion curl/compile_curl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ if [[ "$LIND_DYLINK" == "1" ]]; then
fi

DYLINK_CRT_OBJS=(
"$MERGED_SYSROOT/lib/wasm32-wasi/set_stack_pointer.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/crt1_shared.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/lind_utils.o"
)
Expand Down
1 change: 0 additions & 1 deletion git/compile_git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ if [[ "$LIND_DYLINK" == "1" ]]; then
fi

DYLINK_CRT_OBJS=(
"$MERGED_SYSROOT/lib/wasm32-wasi/set_stack_pointer.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/crt1_shared.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/lind_utils.o"
)
Expand Down
1 change: 0 additions & 1 deletion grep/compile_grep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ if [[ "$LIND_DYLINK" == "1" ]]; then
fi

DYLINK_CRT_OBJS=(
"$MERGED_SYSROOT/lib/wasm32-wasi/set_stack_pointer.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/crt1_shared.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/lind_utils.o"
)
Expand Down
1 change: 0 additions & 1 deletion lmbench/src/compile_lmbench.sh
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ if [[ "$LIND_DYLINK" == "1" ]]; then
fi
# Extra objects required for dynamic PIE executables
DYLINK_CRT_OBJS=(
"$MERGED_SYSROOT/lib/wasm32-wasi/set_stack_pointer.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/crt1_shared.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/lind_utils.o"
)
Expand Down
1 change: 0 additions & 1 deletion nginx/compile_nginx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ if [[ "$LIND_DYLINK" == "1" ]]; then

# Extra CRT objects required for dynamic PIE executables
DYLINK_CRT_OBJS=(
"$MERGED_SYSROOT/lib/wasm32-wasi/set_stack_pointer.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/crt1_shared.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/lind_utils.o"
)
Expand Down
1 change: 0 additions & 1 deletion postgres/compile_postgres.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ if [[ "$LIND_DYLINK" == "1" ]]; then

# Extra CRT objects required for dynamic PIE executables
DYLINK_CRT_OBJS=(
"$MERGED_SYSROOT/lib/wasm32-wasi/set_stack_pointer.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/crt1_shared.o"
"$MERGED_SYSROOT/lib/wasm32-wasi/lind_utils.o"
)
Expand Down