34 lines
1.3 KiB
Bash
Executable File
34 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
OCCLUM_GCC_INC_DIR=/usr/local/occlum/include
|
|
|
|
rm -rf ncurses
|
|
# download and install ncurses
|
|
git clone -b v6.1 --depth 1 https://github.com/mirror/ncurses.git
|
|
cd ncurses
|
|
CC=occlum-gcc CXX=occlum-g++ CFLAGS="-O2 -fPIC" CXXFLAGS="-O2 -fPIC" LDFLAGS="-pie" \
|
|
./configure --without-shared --without-cxx-shared --prefix=/usr/local/occlum --enable-overwrite
|
|
make -j$(nproc) && make install
|
|
cd ..
|
|
|
|
# download and build FISH
|
|
git clone -b 3.3.1 --depth 1 https://github.com/fish-shell/fish-shell.git
|
|
cd fish-shell
|
|
mkdir build && cd build
|
|
cmake ../ -DCMAKE_BUILD_TYPE=Debug -DCURSES_LIBRARY=/opt/occlum/toolchains/gcc/lib/libcurses.a \
|
|
-DCMAKE_C_COMPILER=occlum-gcc -DCMAKE_CXX_COMPILER=occlum-g++ \
|
|
-DCMAKE_CXX_COMPILER_AR=/usr/local/occlum/bin/occlum-ar \
|
|
-DCMAKE_CXX_COMPILER_RANLIB=/usr/local/occlum/bin/occlum-ranlib \
|
|
-DCMAKE_C_COMPILER_AR=/usr/local/occlum/bin/occlum-ar \
|
|
-DCMAKE_C_COMPILER_RANLIB=/usr/local/occlum/bin/occlum-ranlib \
|
|
-DCURSES_INCLUDE_PATH=$OCCLUM_GCC_INC_DIR \
|
|
-DIntl_INCLUDE_DIR=$OCCLUM_GCC_INC_DIR \
|
|
-DSYS_PCRE2_INCLUDE_DIR=$OCCLUM_GCC_INC_DIR \
|
|
-DZLIB_INCLUDE_DIR=$OCCLUM_GCC_INC_DIR \
|
|
-DCMAKE_INSTALL_OLDINCLUDEDIR=$OCCLUM_GCC_INC_DIR \
|
|
-DCMAKE_LINKER=/usr/local/occlum/bin/occlum-ld -DCMAKE_C_FLAGS="-I/usr/local/occlum/include -fpic -pie" \
|
|
-DCMAKE_CXX_FLAGS="-I/usr/local/occlum/include -fpic -pie"
|
|
make -j$(nproc)
|
|
cd ../../
|