Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
MoNTE48 committed Nov 13, 2024
1 parent d3e47d0 commit 6f6d417
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion Start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,14 @@ then
fi

# Clean the deps
rm -rf deps
if [ -w deps ]; then
rm -rf deps
else
echo "Cannot delete deps: Permission denied"
fi

mkdir deps
chmod -R u+w deps

# Build libs

Expand Down
2 changes: 1 addition & 1 deletion mbedtls.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash -e

. sdk.sh
MBEDTLS_VERSION=3.6.2
MBEDTLS_VERSION=3.6.1

mkdir -p output/mbedtls/lib/$TARGET_ABI
mkdir -p deps; cd deps
Expand Down
2 changes: 1 addition & 1 deletion sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ case "$ARCH" in
exit 1 ;;
esac

export API=21
export API=23
export CFLAGS="-fvisibility=hidden -fvisibility-inlines-hidden -fexceptions -D__ANDROID_MIN_SDK_VERSION__=$API"
export CXXFLAGS="$CFLAGS -frtti"
export NATIVE_API_LEVEL="android-$API"
Expand Down

0 comments on commit 6f6d417

Please sign in to comment.