We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 390e780 commit 23fc39eCopy full SHA for 23fc39e
2 files changed
wamr-compiler/README.md
@@ -13,6 +13,7 @@ sudo apt-get install git build-essential cmake g++-multilib libgcc-9-dev lib32gc
13
14
```shell
15
cd wamr-compiler
16
+# or explicitly with bash: bash ./build_llvm.sh
17
./build_llvm.sh (or "./build_llvm_xtensa.sh" to support xtensa target)
18
mkdir build && cd build
19
cmake .. (or "cmake .. -DWAMR_BUILD_PLATFORM=darwin" for MacOS)
wamr-compiler/build_llvm.sh
@@ -1,8 +1,10 @@
1
-#!/bin/sh
+#!/usr/bin/env bash
2
3
# Copyright (C) 2020 Intel Corporation. All rights reserved.
4
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5
6
+set -e
7
+
8
TEMP_DIR=$(mktemp -d)
9
10
cleanup() {
0 commit comments