Skip to content

Commit

Permalink
Enable verbose make
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackhex committed Nov 20, 2023
1 parent 16d9552 commit 72a9a97
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/build-binutils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ BINUTILS_VERSION=${BINUTILS_VERSION:-binutils-master}

TARGET=${TARGET:-aarch64-w64-mingw32}
BUILD_PATH=${BUILD_PATH:-$PWD/build-$TARGET}
BUILD_MAKE_OPTIONS=-j$(nproc)
BUILD_MAKE_OPTIONS=${BUILD_MAKE_OPTIONS:V=1 -j$(nproc)}
INSTALL_PATH=${INSTALL_PATH:-~/cross}

export PATH=$INSTALL_PATH/bin:$PATH
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/build-gcc-libs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

TARGET=${TARGET:-aarch64-w64-mingw32}
BUILD_PATH=${BUILD_PATH:-$PWD/build-$TARGET}
BUILD_MAKE_OPTIONS=-j$(nproc)
BUILD_MAKE_OPTIONS=${BUILD_MAKE_OPTIONS:V=1 -j$(nproc)}

export PATH=$INSTALL_PATH/bin:$PATH

Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/build-gcc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GCC_VERSION=${GCC_VERSION:-gcc-master}

TARGET=${TARGET:-aarch64-w64-mingw32}
BUILD_PATH=${BUILD_PATH:-$PWD/build-$TARGET}
BUILD_MAKE_OPTIONS=-j$(nproc)
BUILD_MAKE_OPTIONS=${BUILD_MAKE_OPTIONS:V=1 -j$(nproc)}
INSTALL_PATH=${INSTALL_PATH:-~/cross}

export PATH=$INSTALL_PATH/bin:$PATH
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/build-libgcc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

TARGET=${TARGET:-aarch64-w64-mingw32}
BUILD_PATH=${BUILD_PATH:-$PWD/build-$TARGET}
BUILD_MAKE_OPTIONS=-j$(nproc)
BUILD_MAKE_OPTIONS=${BUILD_MAKE_OPTIONS:V=1 -j$(nproc)}

export PATH=$INSTALL_PATH/bin:$PATH

Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/build-mingw-crt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MINGW_VERSION=${MINGW_VERSION:-mingw-w64-master}
TARGET=${TARGET:-aarch64-w64-mingw32}
CRT=${CRT:-msvcrt}
BUILD_PATH=${BUILD_PATH:-$PWD/build-$TARGET}
BUILD_MAKE_OPTIONS=-j$(nproc)
BUILD_MAKE_OPTIONS=${BUILD_MAKE_OPTIONS:V=1 -j$(nproc)}
INSTALL_PATH=${INSTALL_PATH:-~/cross}

case "$TARGET" in
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/build-mingw-headers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MINGW_VERSION=${MINGW_VERSION:-mingw-w64-master}
TARGET=${TARGET:-aarch64-w64-mingw32}
CRT=${CRT:-msvcrt}
BUILD_PATH=${BUILD_PATH:-$PWD/build-$TARGET}
BUILD_MAKE_OPTIONS=-j$(nproc)
BUILD_MAKE_OPTIONS=${BUILD_MAKE_OPTIONS:V=1 -j$(nproc)}
INSTALL_PATH=${INSTALL_PATH:-~/cross}

case "$CRT" in
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/build-mingw.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MINGW_VERSION=${MINGW_VERSION:-mingw-w64-master}
TARGET=${TARGET:-aarch64-w64-mingw32}
CRT=${CRT:-msvcrt}
BUILD_PATH=${BUILD_PATH:-$PWD/build-$TARGET}
BUILD_MAKE_OPTIONS=-j$(nproc)
BUILD_MAKE_OPTIONS=${BUILD_MAKE_OPTIONS:V=1 -j$(nproc)}
INSTALL_PATH=${INSTALL_PATH:-~/cross}

case "$TARGET" in
Expand Down
1 change: 1 addition & 0 deletions .github/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ set -x # echo on

export TARGET=${TARGET:-aarch64-w64-mingw32}
export CRT=${CRT:-msvcrt}
export BUILD_MAKE_OPTIONS=${BUILD_MAKE_OPTIONS:V=1 -j$(nproc)}
export INSTALL_PATH=${INSTALL_PATH:-~/cross}

.github/scripts/build-binutils.sh
Expand Down

0 comments on commit 72a9a97

Please sign in to comment.