@@ -19,56 +19,56 @@ cd "$BUILD"
1919case " ${1:- } " in
2020make)
2121 cmake " $WORKSPACE "
22- make -j
22+ make -j VERBOSE=1
2323 copy-license " $BUILD /output"
2424 copy-usage " $BUILD /output"
2525 create-bundle " $ARTIFACT /lpac-$KERNEL -$MACHINE .zip" " $BUILD /output"
2626 ;;
2727make-qmi)
2828 cmake " $WORKSPACE " -DLPAC_WITH_APDU_QMI=ON -DLPAC_WITH_APDU_QMI_QRTR=ON -DLPAC_WITH_APDU_MBIM=ON
29- make -j
29+ make -j VERBOSE=1
3030 copy-license " $BUILD /output"
3131 copy-usage " $BUILD /output"
3232 create-bundle " $ARTIFACT /lpac-$KERNEL -$MACHINE -with-qmi.zip" " $BUILD /output"
3333 ;;
3434make-gbinder)
3535 cmake " $WORKSPACE " -DLPAC_WITH_APDU_GBINDER=ON
36- make -j
36+ make -j VERBOSE=1
3737 copy-license " $BUILD /output"
3838 copy-usage " $BUILD /output"
3939 create-bundle " $ARTIFACT /lpac-$KERNEL -$MACHINE -with-gbinder.zip" " $BUILD /output"
4040 ;;
4141make-without-lto)
4242 cmake -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF " $WORKSPACE "
43- make -j
43+ make -j VERBOSE=1
4444 copy-license " $BUILD /output"
4545 copy-usage " $BUILD /output"
4646 create-bundle " $ARTIFACT /lpac-$KERNEL -$MACHINE -without-lto.zip" " $BUILD /output"
4747 ;;
4848debian)
4949 cmake " $WORKSPACE " -DCPACK_GENERATOR=DEB
50- make -j package
50+ make -j VERBOSE=1 package
5151 cp lpac_* .deb " $ARTIFACT "
5252 ;;
5353mingw)
5454 cmake " $WORKSPACE " -DCMAKE_TOOLCHAIN_FILE=./cmake/linux-mingw64.cmake
55- make -j
55+ make -j VERBOSE=1
5656 copy-license " $BUILD /output"
5757 copy-curl-win " $BUILD /output"
5858 copy-usage " $BUILD /output"
5959 create-bundle " $ARTIFACT /lpac-windows-x86_64-mingw.zip" " $BUILD /output"
6060 ;;
6161woa-mingw)
6262 cmake " $WORKSPACE " -DCMAKE_TOOLCHAIN_FILE=./cmake/linux-mingw64-woa.cmake
63- make -j
63+ make -j VERBOSE=1
6464 copy-license " $BUILD /output"
6565 copy-curl-woa " $BUILD /output"
6666 copy-usage " $BUILD /output"
6767 create-bundle " $ARTIFACT /lpac-windows-arm64-mingw.zip" " $BUILD /output"
6868 ;;
6969woa-zig)
7070 cmake " $WORKSPACE " -DCMAKE_TOOLCHAIN_FILE=./cmake/aarch64-windows-zig.cmake
71- make -j
71+ make -j VERBOSE=1
7272 copy-license " $BUILD /output"
7373 copy-curl-woa " $BUILD /output"
7474 copy-usage " $BUILD /output"
0 commit comments