10 lines
312 B
Bash
10 lines
312 B
Bash
|
#! /bin/sh
|
||
|
export PREFIX="$(pwd)/static-arm32"
|
||
|
#export CC=/usr/bin/arm-none-eabi-gcc
|
||
|
export TARGET_ARCH=armv7
|
||
|
export CFLAGS=""
|
||
|
export LDFLAGS="--specs=nosys.specs"
|
||
|
cd libsodium
|
||
|
./configure --prefix=$PREFIX --with-sysroot=/home/ionspin/.konan/dependencies/target-sysroot-2-raspberrypi --host=arm-none-eabi "$@"
|
||
|
|