mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-23 23:12:04 +03:00
edd57d380d
- Fixes the IPC bug - Fixes the terminfo bug - Moves the OSX SDK out of our nixcrpkgs fork. - Vendor nixcrpkgs instead of having it be a submodule.
25 lines
334 B
Bash
25 lines
334 B
Bash
source $setup
|
|
|
|
cp -r $src openocd
|
|
chmod -R u+w openocd
|
|
|
|
cd openocd
|
|
SKIP_SUBMODULE=1 ./bootstrap
|
|
cd ..
|
|
|
|
mkdir build
|
|
cd build
|
|
|
|
PKG_CONFIG=pkg-config-cross ../openocd/configure \
|
|
--prefix=$out \
|
|
--host=$host \
|
|
--disable-dependency-tracking \
|
|
--enable-static \
|
|
--disable-shared
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
$host-strip $out/bin/openocd
|