File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44export CC=gcc-4.9
55export CXX=g++-4.9
66
7+ # Get Boost static libs
8+ # Had to rebuild them using later GCC version. It breaks otherwise.
9+ wget https://github.com/cpp3ds/3ds-tools/releases/download/r1/boost-libs.tar.xz
10+ tar xaf boost-libs.tar.xz
11+
12+ # Build nihstro
13+ git clone https://github.com/neobrain/nihstro.git
14+ cd nihstro && cmake -DBoost_USE_STATIC_LIBS=ON -DBOOST_LIBRARYDIR=$TRAVIS_BUILD_DIR /boost-libs . && make -j4 nihstro-assemble && cd -
15+
716# Build makerom (commit 80d3d99)
817git clone https://github.com/profi200/Project_CTR.git
918cd Project_CTR/makerom && git reset --hard 80d3d99 && make -j4 && cd -
@@ -15,7 +24,3 @@ cd 3dstools && ./autogen.sh && ./configure && make -j4 && cd -
1524# Build latest bannertool
1625git clone https://github.com/Steveice10/bannertool.git
1726cd bannertool && cmake . && make -j4 && cd -
18-
19- # Build nihstro
20- git clone https://github.com/neobrain/nihstro.git
21- cd nihstro && cmake -DBoost_USE_STATIC_LIBS=ON . && make -j4 && cd -
You can’t perform that action at this time.
0 commit comments