]> xenbits.xensource.com Git - unikraft/libs/newlib.git/commitdiff
Add libvfscore as dependency
authorSimon Kuenzer <simon.kuenzer@neclab.eu>
Wed, 10 Apr 2019 08:32:37 +0000 (10:32 +0200)
committerSimon Kuenzer <simon.kuenzer@neclab.eu>
Wed, 10 Apr 2019 15:24:04 +0000 (17:24 +0200)
The current implementation requires libvfscore to be selected. Without
libvfscore `read`, `write`, `close`, and `fstat` are undefined and
linking fails. With this commit we also fix a typo in the dependency
definition to libukalloc.

Signed-off-by: Simon Kuenzer <simon.kuenzer@neclab.eu>
Reviewed-by: Sharan Santhanam <sharan.santhanam@neclab.eu>
Config.uk

index b75dbcd31d264a2404e50deb9560c94c213ca024..89010a18e2587bec34f0121680b2e6d08dd338ff 100644 (file)
--- a/Config.uk
+++ b/Config.uk
@@ -8,4 +8,5 @@ menuconfig LIBNEWLIBC
        default n
        select HAVE_LIBC
        select LIBNEWLIBM if LIBNEWLIBC
-       select LIBUCALLOC
+       select LIBUKALLOC
+       select LIBVFSCORE