[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
Next revision
Previous revision
Next revisionBoth sides next revision
howtos:hardware:arm:gcc_aarch64_cross-compiler [2016/12/20 23:45 (UTC)] – edited preface exagahowtos:hardware:arm:gcc_aarch64_cross-compiler [2017/01/13 10:20 (UTC)] – code correction exaga
Line 133: Line 133:
 </code> </code>
  
-You should see the first $PATH entry is to your installation directory's /bin folder.+You should see the first $PATH entry is to your installation directory's /bin folder. It's important that your installation directory's /bin folder appears before any other entry in the $PATH.
  
 <code> <code>
Line 304: Line 304:
 === Installing the arm64 modules === === Installing the arm64 modules ===
  
-Once the modules have been built, you have to 'make modules_install'.  Usually the build process installs your kernel modules to '/tmp/lib/modules/4.8.13-v8', but you're n+Once the modules have been built, you have to 'make modules_install'.  The process will install your kernel modules to '/tmp/lib/modules/4.8.13-v8'
  
 You could build  //out-of-tree// kernel modules but, to keep things simple, you're going to install them to the usual location. Again, you will use the same CFLAGS as before but without any 'LOCALVERSION' set. You could build  //out-of-tree// kernel modules but, to keep things simple, you're going to install them to the usual location. Again, you will use the same CFLAGS as before but without any 'LOCALVERSION' set.
Line 312: Line 312:
 <code> <code>
 su - su -
-export PATH=/tmp/gcc-cross-compiler/bin:$PATH +make -j4 modules_install ARCH=arm64 CROSS_COMPILE=aarch64-linux-
-make -j 4 modules_install ARCH=arm64 CROSS_COMPILE=aarch64-linux-+
 </code> </code>
  
 howtos:hardware:arm:gcc_aarch64_cross-compiler ()