File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ SKIP_RISCV=${SKIP_RISCV-0}
77SKIP_OPENOCD=${SKIP_OPENOCD-0}
88SKIP_PICOTOOL=${SKIP_PICOTOOL-0}
99
10+ echo " Running on $( uname -m) "
11+
1012# Install prerequisites
1113arch -x86_64 /usr/local/bin/brew install jq libtool libusb automake hidapi jimtcl --quiet
1214if [[ $( uname -m) == ' arm64' ]]; then
Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ INSTALLDIR=$1
44
55while true ; do
66 EXES=$( find $INSTALLDIR -type f -perm -u+x)
7+ EXES=" $EXES $( find $INSTALLDIR -type f -name " *.dylib" ) "
8+ echo " EXES: $EXES "
79 LIBS=$( otool -L $EXES | grep -E " /opt/homebrew|/usr/local/opt" | grep -v python | sort | uniq | grep -o -E " /.*\.dylib" )
10+ echo " LIBS: $LIBS "
811
912 if [ ! $LIBS ]; then
1013 echo " All libraries done"
You can’t perform that action at this time.
0 commit comments