-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pin dockcross image version, add armv6-lts (raspberry pi, armhf)
- Loading branch information
1 parent
5ed1984
commit b6c3b51
Showing
5 changed files
with
101 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env bash | ||
set -x | ||
|
||
# for other architectures than x86_64, copy libraries to this location for cmake toolchain | ||
TARGET_XCC_DIR="$(ls -d /usr/xcc/*/*/sysroot/)" | ||
|
||
if [ -n "$TARGET_XCC_DIR" ]; then | ||
echo "Built with crosstool-ng" | ||
"$TARGET_XCC_DIR"/usr/bin/ldd --version | ||
echo -e "\nPrint shared object information on cannelloni library:" | ||
readelf -h /tmp/cannelloni/cannelloni | ||
else | ||
echo "Not a cross build." | ||
ldd --version | ||
ldd /tmp/cannelloni/cannelloni | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters