diff options
Diffstat (limited to 'chapter06/adjustingtoolchain.xml')
-rw-r--r-- | chapter06/adjustingtoolchain.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/chapter06/adjustingtoolchain.xml b/chapter06/adjustingtoolchain.xml index fd5ba1676..522727785 100644 --- a/chapter06/adjustingtoolchain.xml +++ b/chapter06/adjustingtoolchain.xml @@ -43,5 +43,33 @@ is unavoidable, but luckily does not present a problem. There are no libraries in that location as all the temporary tools libraries are located in <filename class="directory">/tools/lib</filename>.</para> +<caution><para>It is imperative at this point to stop and ensure that the +basic functionality of the adjusted toolchain is working as expected. We are +going to perform a simple sanity check:</para> + +<para><screen><userinput>echo 'main(){}' > dummy.c +gcc dummy.c +readelf -l a.out | grep ': /lib'</userinput></screen></para> + +<para>If everything is working correctly, the output of the last command will +be:</para> + +<para><screen>[Requesting program interpreter: /lib/ld-linux.so.2] +</screen></para> + +<para>If you did not receive the output as shown above then something is +seriously wrong. You will need to investigate and retrace your steps to find +out where the problem is and correct it. There is no point in continuing +until this is done. Most likely, something went wrong with the specs file +amendment above. Note especially that <filename>/lib</filename> now appears as +the prefix of our dynamic linker. Of course, if you are working on a platform +where the name of the dynamic linker is something other than <filename> +ld-linux.so.2</filename> then the output will be slightly different.</para> + +<para>Once you are satisfied that all is well, clean up the test files:</para> + +<para><screen><userinput>rm dummy.c a.out</userinput></screen></para> +</caution> + </sect1> |