Skip to content

Commit

Permalink
build.sh: Use previous dir for compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Molyuu committed Jan 11, 2023
1 parent 5a9a600 commit 5b37a2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ LOCAL_VERSION_NUMBER=Neko-v0.1

ARCH=arm64;
CC=clang;
CLANG_TRIPLE=/mnt/pssd/proton-clang/bin/aarch64-linux-gnu-;
CROSS_COMPILE=/mnt/pssd/gcc-arm64/bin/aarch64-none-linux-gnu-;
CROSS_COMPILE_COMPAT=/mnt/pssd/gcc-arm32/bin/arm-none-linux-gnueabihf-;
CLANG_TRIPLE=../proton-clang/bin/aarch64-linux-gnu-;
CROSS_COMPILE=../gcc-arm64/bin/aarch64-none-linux-gnu-;
CROSS_COMPILE_COMPAT=../gcc-arm32/bin/arm-none-linux-gnueabihf-;
THREAD=$(nproc --all);
CC_ADDITION_FLAGS="OBJDUMP=llvm-objdump";
OUT="../out";
Expand Down

0 comments on commit 5b37a2f

Please sign in to comment.