mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2025-02-16 17:30:27 +00:00
9 lines
318 B
Bash
9 lines
318 B
Bash
|
#!/bin/sh
|
||
|
rm -fr /tmp/boost
|
||
|
mkdir /tmp/boost
|
||
|
cd /tmp/boost
|
||
|
tar xjf ~/PuzzlingPlans/8bitworkshop/emsrc/sdcc/boost*
|
||
|
cd boost_1_63_0
|
||
|
emconfigure ./bootstrap.sh
|
||
|
emmake ./b2 install --prefix=/home/huggvey/emsdk-portable/emscripten/1.37.9/system --with-graph link=static variant=release threading=single runtime-link=static
|