We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f81f1a commit 2fda11dCopy full SHA for 2fda11d
build_macos.sh
@@ -72,15 +72,9 @@ if [[ "$SKIP_PICOTOOL" != 1 ]]; then
72
arch -arm64 ../packages/macos/picotool/build-picotool.sh
73
fi
74
75
- INSTALLDIR="pico-sdk-tools"
76
- BINDIR="pioasm"
77
- BINNAME="pioasm"
78
- ../packages/macos/make-universal.sh
79
-
80
- INSTALLDIR="picotool-install"
81
- BINDIR="picotool"
82
- BINNAME="picotool"
83
+ ../packages/macos/make-universal.sh "pico-sdk-tools" "pioasm" "pioasm"
+
+ ../packages/macos/make-universal.sh "picotool-install" "picotool" "picotool"
84
85
cd ..
86
packages/macos/make-universal.sh
@@ -2,6 +2,10 @@
2
3
set -euo pipefail
4
5
+INSTALLDIR=$1
6
+BINDIR=$2
7
+BINNAME=$3
8
9
rm -rf $INSTALLDIR
10
mkdir -p $INSTALLDIR
11
0 commit comments