busybox filesystem add ldd function

weixin_34119545發表於2016-01-23
/********************************************************************
 *               busybox filesystem add ldd function
 * 宣告:
 *     本文主要是為了解決繆新建提出的檢視程式涉及到動態連結庫的問題。
 *
 *                                 2016-1-23 深圳 南山平山村 曾劍鋒
 *******************************************************************/

一、參考文章:
    where is 'ldd'?
        http://buildroot-busybox.2317881.n4.nabble.com/where-is-ldd-td48070.html

二、解決辦法:
    1. You really don't need a special ldd. ldd is just a script. In its most basic usage (ldd <executable>), it just runs: 
        # LD_TRACE_LOADED_OBJECTS=1 <executable> 
    2. For example on busybox: 
        # LD_TRACE_LOADED_OBJECTS=1 /bin/busybox 
            linux-vdso32.so.1 =>  (0x00100000) 
            libc.so.6 => /lib/libc.so.6 (0x0fe70000) 
            /lib/ld.so.1 (0x48000000 

三、測試效果:
    [zengjf@root ]# LD_TRACE_LOADED_OBJECTS=1 /bin/busybox
            libm.so.6 => /lib/libm.so.6 (0x2ac8c000)
            libc.so.6 => /lib/libc.so.6 (0x2acf6000)
            /lib/ld-linux-armhf.so.3 (0x2aae1000)
    [zengjf@root ]# LD_TRACE_LOADED_OBJECTS=1 /bin/main
    hello world.
    [zengjf@root ]# ls
    main    mainso
    [zengjf@root ]# LD_TRACE_LOADED_OBJECTS=1 /bin/mainso
            libc.so.6 => /lib/libc.so.6 (0x2abea000)
            /lib/ld-linux-armhf.so.3 (0x2ab1b000)
    [zengjf@root ]# 

 

相關文章