mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-30 10:38:55 +00:00
ldso: log linker-area info on 'ld_verbose'
This commit is contained in:
parent
e5f442f2d3
commit
dc016cbd5c
@ -28,7 +28,10 @@
|
|||||||
/* local includes */
|
/* local includes */
|
||||||
#include <linker.h>
|
#include <linker.h>
|
||||||
|
|
||||||
namespace Linker { class Region_map; }
|
namespace Linker {
|
||||||
|
extern bool verbose;
|
||||||
|
class Region_map;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -57,6 +60,11 @@ class Linker::Region_map
|
|||||||
_base((addr_t)_env.rm().attach_at(_rm.dataspace(), base))
|
_base((addr_t)_env.rm().attach_at(_rm.dataspace(), base))
|
||||||
{
|
{
|
||||||
_range.add_range(base, Pd_session::LINKER_AREA_SIZE);
|
_range.add_range(base, Pd_session::LINKER_AREA_SIZE);
|
||||||
|
|
||||||
|
if (Linker::verbose)
|
||||||
|
log(" ", Hex(base),
|
||||||
|
" .. ", Hex(base + Pd_session::LINKER_AREA_SIZE - 1),
|
||||||
|
": linker area");
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
Loading…
Reference in New Issue
Block a user