aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2015-09-23 19:13:55 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2015-09-23 19:13:55 +0000
commit3d56263030297ac2a86d273f7eff390ac309b34a (patch)
treea22fb7ca2e6e261defd119064a0626efc6124df4
parent493677660143de217ac57d446b45a7d7887534cd (diff)
Fix a warning when doing test compiles.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10953 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter05/adjusting.xml2
-rw-r--r--chapter05/gcc-pass2.xml2
-rw-r--r--chapter05/glibc.xml2
-rw-r--r--chapter06/adjusting.xml2
-rw-r--r--prologue/hostreqs.xml2
5 files changed, 5 insertions, 5 deletions
diff --git a/chapter05/adjusting.xml b/chapter05/adjusting.xml
index 7179233d2..e567da5a5 100644
--- a/chapter05/adjusting.xml
+++ b/chapter05/adjusting.xml
@@ -45,7 +45,7 @@ unset SPECS</userinput></screen>
functions (compiling and linking) of the new toolchain are working as
expected. To perform a sanity check, run the following commands:</para>
-<screen><userinput>echo 'main(){}' &gt; dummy.c
+<screen><userinput>echo 'int main(){}' &gt; dummy.c
$LFS_TGT-gcc -B/tools/lib dummy.c
readelf -l a.out | grep ': /tools'</userinput></screen>
diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml
index e2df1764d..ec460e482 100644
--- a/chapter05/gcc-pass2.xml
+++ b/chapter05/gcc-pass2.xml
@@ -181,7 +181,7 @@ RANLIB=$LFS_TGT-ranlib \
functions (compiling and linking) of the new toolchain are working as
expected. To perform a sanity check, run the following commands:</para>
-<screen><userinput>echo 'main(){}' &gt; dummy.c
+<screen><userinput>echo 'int main(){}' &gt; dummy.c
cc dummy.c
readelf -l a.out | grep ': /tools'</userinput></screen>
diff --git a/chapter05/glibc.xml b/chapter05/glibc.xml
index bb32d5b97..a8ce5fd41 100644
--- a/chapter05/glibc.xml
+++ b/chapter05/glibc.xml
@@ -191,7 +191,7 @@ cd ../glibc-build</userinput></screen>
functions (compiling and linking) of the new toolchain are working as
expected. To perform a sanity check, run the following commands:</para>
-<screen><userinput>echo 'main(){}' &gt; dummy.c
+<screen><userinput>echo 'int main(){}' &gt; dummy.c
$LFS_TGT-gcc dummy.c
readelf -l a.out | grep ': /tools'</userinput></screen>
diff --git a/chapter06/adjusting.xml b/chapter06/adjusting.xml
index df01e9b68..bc9e236a6 100644
--- a/chapter06/adjusting.xml
+++ b/chapter06/adjusting.xml
@@ -42,7 +42,7 @@ ln -sv /tools/bin/ld /tools/$(gcc -dumpmachine)/bin/ld</userinput></screen>
functions (compiling and linking) of the adjusted toolchain are working
as expected. To do this, perform the following sanity checks:</para>
-<screen os="a"><userinput>echo 'main(){}' &gt; dummy.c
+<screen os="a"><userinput>echo 'int main(){}' &gt; dummy.c
cc dummy.c -v -Wl,--verbose &amp;&gt; dummy.log
readelf -l a.out | grep ': /lib'</userinput></screen>
diff --git a/prologue/hostreqs.xml b/prologue/hostreqs.xml
index 9e6fbc9be..f77d88105 100644
--- a/prologue/hostreqs.xml
+++ b/prologue/hostreqs.xml
@@ -204,7 +204,7 @@ tar --version | head -n1
makeinfo --version | head -n1
xz --version | head -n1
-echo 'main(){}' &gt; dummy.c &amp;&amp; g++ -o dummy dummy.c
+echo 'int main(){}' &gt; dummy.c &amp;&amp; g++ -o dummy dummy.c
if [ -x dummy ]
then echo "g++ compilation OK";
else echo "g++ compilation failed"; fi