You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Task/Issue URL: https://app.asana.com/0/488551667048375/1209000029029641/f
### Description
Make sure the builds are 16KB compatible
### Steps to test this PR
Script to be used during testing
```bash
find . -type f -name "*.so" | while read -r file; do
result=$(objdump -p "$file" | grep LOAD | awk '{ print $NF }' | head -1)
echo "$file: $result"
done
```
_Test_
- [x] in the main branch, `cd android` folder and run `./gradlew clean build`
- [x] run the script above
- [x] all `.so` files result in `2**12` alignment
- [x] change to this branch and again `cd android` folder and run `./gradlew clean build`
- [x] run the script above
- [x] all `.so` files result in `2**14` alignment
add_custom_target(libwg-go.so WORKING_DIRECTORY"${CMAKE_CURRENT_SOURCE_DIR}/../../../../../src/wireguard"COMMENT"Building wireguard-go"VERBATIMCOMMAND make
0 commit comments