diff options
author | scnorton <scnorton@biociphers.org> | 2018-01-09 15:53:17 -0500 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2018-01-09 15:53:17 -0500 |
commit | 09d3da101bd1b1c9d7471e7a193f0af7cae0ab73 (patch) | |
tree | daadd17ccf2b101c5e38d3c4ff293d84fe13feae /build_tools.sh | |
parent | 3b097262f5c0244d3517008df76e8683f61e459d (diff) |
Implement agbcc's libc and allow a custom cxx compiler to be passed to build_tools.sh
Diffstat (limited to 'build_tools.sh')
-rw-r--r-- | build_tools.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/build_tools.sh b/build_tools.sh index 26f1f35b3..f4656e2d8 100644 --- a/build_tools.sh +++ b/build_tools.sh @@ -1,8 +1,8 @@ #!/bin/sh -make -C tools/gbagfx -make -C tools/scaninc -make -C tools/preproc -make -C tools/bin2c -make -C tools/rsfont -make -C tools/aif2pcm -make -C tools/ramscrgen +make -C tools/gbagfx CXX=${1:=g++} +make -C tools/scaninc CXX=${1:=g++} +make -C tools/preproc CXX=${1:=g++} +make -C tools/bin2c CXX=${1:=g++} +make -C tools/rsfont CXX=${1:=g++} +make -C tools/aif2pcm CXX=${1:=g++} +make -C tools/ramscrgen CXX=${1:=g++} |