We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99a0aee commit 0578f82Copy full SHA for 0578f82
1 file changed
smart-env.sh
@@ -4,9 +4,10 @@
4
# source smart-env.sh [arch]
5
# example: source smart-env.sh # arm
6
# example: source smart-env.sh aarch64 # aarch64
7
+# example: source smart-env.sh riscv64 # riscv64
8
9
# supported arch list
-supported_arch=(arm aarch64 riscv64 i386)
10
+supported_arch="arm aarch64 riscv64"
11
12
def_arch="unknown"
13
@@ -47,11 +48,6 @@ case $def_arch in
47
48
export RTT_CC_PREFIX=riscv64-unknown-linux-musl-
49
cp $SHELL_FOLDER/configs/def_config_riscv64 $SHELL_FOLDER/.config
50
;;
- "i386")
51
- export RTT_CC=gcc
52
- export RTT_EXEC_PATH=$(pwd)/tools/gnu_gcc/i386-linux-musleabi_for_x86_64-pc-linux-gnu/bin
53
- export RTT_CC_PREFIX=i386-unknown-linux-musl-
54
- ;;
55
*) echo "unknown arch!"
56
return 1
57
esac
0 commit comments