[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
howtos:hardware:arm:gcc-13.x_aarch64_cross-compiler [2024/02/08 07:55 (UTC)] – [AArch64 cross-compiler script code] revised/updated script code exagahowtos:hardware:arm:gcc-13.x_aarch64_cross-compiler [2024/02/08 08:04 (UTC)] (current) – [AArch64 cross-compiler script code] changed -j4 to -j$(nproc) exaga
Line 203: Line 203:
 RPI_CONFIG_OPTIONS="--prefix=$INSTALL_PATH --target=arm-linux-gnueabihf --enable-languages=c,c++ --with-arch=armv8-a --with-fpu=vfp --with-float=hard --disable-multilib" RPI_CONFIG_OPTIONS="--prefix=$INSTALL_PATH --target=arm-linux-gnueabihf --enable-languages=c,c++ --with-arch=armv8-a --with-fpu=vfp --with-float=hard --disable-multilib"
 # https://www.gnu.org/software/make/manual/html_node/Parallel.html # https://www.gnu.org/software/make/manual/html_node/Parallel.html
-PARALLEL_JOBS=-j4 +PARALLEL_JOBS="-j$(nproc)" 
 CWD=$(pwd) CWD=$(pwd)
  
Line 330: Line 330:
 ln -sf ../$CLOOG_VERSION cloog ln -sf ../$CLOOG_VERSION cloog
  
-# Create aarch64 cross-compiler install directory+# Create AArch64 cross-compiler install directory
 echo "Creating $INSTALL_PATH directory ..." echo "Creating $INSTALL_PATH directory ..."
 rm -rf $INSTALL_PATH rm -rf $INSTALL_PATH
Line 425: Line 425:
 cd "$CWD" cd "$CWD"
  
-# Check status of aarch64-linux-gcc cross-compiler+# Check status of AArch64-linux-gcc cross-compiler
 echo "Checking status of $ARCH_TARGET-gcc cross-compiler ..." echo "Checking status of $ARCH_TARGET-gcc cross-compiler ..."
 ARCH_TARGET_STATUS=$(which $ARCH_TARGET-gcc) ARCH_TARGET_STATUS=$(which $ARCH_TARGET-gcc)
 howtos:hardware:arm:gcc-13.x_aarch64_cross-compiler ()