mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
4b46abf813
This patch removes the detection of statically linked executables from the base framework. It thereby fixes the corner cases encountered with Sculpt when obtaining the binaries of the runtime from the depot_rom service that is hosted within the runtime. Statically linked binaries and hybrid Linux/Genode (lx_hybrid) binaries can still be started by relabeling the ROM-session route of "ld.lib.so" to the binary name, pretending that the binary is the dynamic linker. This can be achieved via init's label rewriting mechanism: <route> <service name="ROM" unscoped_label="ld.lib.so"> <parent label="test-platform"/> </service> </route> However, as this is quite cryptic and would need to be applied for all lx_hybrid components, the patch adds a shortcut to init's configuration. One can simply add the 'ld="no"' attribute to the <start> node of the corresponding component: <start name="test-platform" ld="no"/> Fixes #2866
73 lines
1.3 KiB
Tcl
73 lines
1.3 KiB
Tcl
#
|
|
# \brief Test if global static constructors in hybrid applications and
|
|
# host shared libs get called
|
|
# \author Christian Prochaska
|
|
# \date 2011-11-24
|
|
#
|
|
|
|
#
|
|
# Build
|
|
#
|
|
|
|
build {
|
|
core init
|
|
test/lx_hybrid_ctors
|
|
}
|
|
|
|
create_boot_directory
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="CPU"/>
|
|
<service name="PD"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<default caps="100"/>
|
|
<start name="test-lx_hybrid_ctors" ld="no">
|
|
<resource name="RAM" quantum="1M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
# generic modules
|
|
set boot_modules {
|
|
core ld.lib.so init
|
|
test-lx_hybrid_ctors
|
|
}
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
#
|
|
# Execute test case
|
|
#
|
|
|
|
run_genode_until {child "test-lx_hybrid_ctors" exited with exit value 0.*\n} 10
|
|
|
|
#
|
|
# Compare output
|
|
#
|
|
|
|
grep_output {\[init -\> test-lx_hybrid_ctors\]}
|
|
|
|
compare_output_to {
|
|
[init -> test-lx_hybrid_ctors] Global static constructor of host library called.
|
|
[init -> test-lx_hybrid_ctors] Global static constructor of Genode application called
|
|
[init -> test-lx_hybrid_ctors] --- lx_hybrid global static constructor test ---
|
|
[init -> test-lx_hybrid_ctors] --- returning from main ---
|
|
}
|
|
|
|
# vi: set ft=tcl :
|