[bootlin/training-materials updates] master: labs/sysdev-thirdparty: correct explanations (b14e78b3)

Michael Opdenacker michael.opdenacker at bootlin.com
Thu Sep 29 10:38:51 CEST 2022


Repository : https://github.com/bootlin/training-materials
On branch  : master
Link       : https://github.com/bootlin/training-materials/commit/b14e78b30b279eafb65a27cf91dfb79dd0f4d466

>---------------------------------------------------------------

commit b14e78b30b279eafb65a27cf91dfb79dd0f4d466
Author: Michael Opdenacker <michael.opdenacker at bootlin.com>
Date:   Thu Sep 29 10:38:51 2022 +0200

    labs/sysdev-thirdparty: correct explanations
    
    It's not obvious which compiler is invoked by make.
    You just see "CC" getting called, both when natively
    compiling and cross-compiling.
    
    Adjust the explanations to avoid questions from the audience.
    
    Signed-off-by: Michael Opdenacker <michael.opdenacker at bootlin.com>


>---------------------------------------------------------------

b14e78b30b279eafb65a27cf91dfb79dd0f4d466
 labs/sysdev-thirdparty/sysdev-thirdparty.tex | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/labs/sysdev-thirdparty/sysdev-thirdparty.tex b/labs/sysdev-thirdparty/sysdev-thirdparty.tex
index 52b75fee..ccf3eeec 100644
--- a/labs/sysdev-thirdparty/sysdev-thirdparty.tex
+++ b/labs/sysdev-thirdparty/sysdev-thirdparty.tex
@@ -111,10 +111,10 @@ $ ./configure
 $ make
 \end{bashinput}
 
-You can see that the files are getting compiled with gcc, which
-generates code for x86 and not for the target platform. This is
-obviously not what we want, so we clean-up the generated objects and tell the
-configure script to use the ARM cross-compiler:
+If you look at the generated binaries, you'll see that they are
+x86 ones because we compiled the sources with gcc, the default compiler.
+This is obviously not what we want, so let's clean-up the generated objects
+and tell the \code{configure} script to use the ARM cross-compiler:
 
 \begin{bashinput}
 $ make clean




More information about the training-materials-updates mailing list