blob: f45f584ad29b3c65dfb4db672d84f6e95269ca75 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/bin/bash
##########################################################################
# File Name : ohoshell.sh
# Encoding : utf-8
# Author : We-unite
# Email : weunite1848@gmail.com
# Created Time : 2024-06-07 02:05:05
##########################################################################
set -e
native=~/app/native
if [ $# -ne 1 ]; then
echo "Usage: $0 <armv7-a | armv8-a>"
exit 1
fi
arch=$1
case $arch in
armv8-a)
compiler=$native/llvm/bin/aarch64-unknown-linux-ohos-clang
targetPlatform=aarch64-linux-ohos
;;
armv7-a)
compiler=$native/llvm/bin/armv7-unknown-linux-ohos-clang
targetPlatform=arm-linux-ohos
;;
*)
echo "Unsupported arch"
exit 1
;;
esac
flex -o lex.yy.c lex.l
bison -o syntax.tab.c -d -v syntax.y -Wcounterexamples
$compiler -o bcsh bcsh.c cmd.c syntax.tab.c -Wall \
--target=$targetPlatform \
--sysroot=$native/sysroot \
-march=$arch -mfloat-abi=softfp
|