mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
dd9e12601e
Thanks to the change "build: support library builds via lib/<libname>", shared libraries can now be built directly by the build system. Issue #4599
12 lines
261 B
PHP
12 lines
261 B
PHP
proc append_socket_fs_build_components { } {
|
|
global build_components
|
|
append build_components { lib/vfs_lwip }
|
|
}
|
|
|
|
proc socket_fs_plugin {} { return lwip }
|
|
|
|
proc append_socket_fs_boot_modules {} {
|
|
global boot_modules
|
|
append boot_modules { vfs_lwip.lib.so }
|
|
}
|