mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
fetchurl: dim debug-message noise
This commit is contained in:
parent
f1ce555cd9
commit
c8c910a41b
@ -78,6 +78,7 @@ set boot_modules {
|
||||
nic_drv
|
||||
timer
|
||||
zlib.lib.so
|
||||
pthread.lib.so
|
||||
}
|
||||
|
||||
# platform-specific modules
|
||||
|
@ -195,3 +195,7 @@ void Libc::Component::construct(Libc::Env &env)
|
||||
env.parent().exit(res ^ CURLE_OK);
|
||||
}
|
||||
|
||||
/* dummies to prevent warnings printed by unimplemented libc functions */
|
||||
extern "C" int issetugid() { return 1; }
|
||||
extern "C" pid_t getpid() { return 1; }
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
TARGET = fetchurl
|
||||
LIBS += curl lwip libc_lwip libc_lwip_nic_dhcp libc ld
|
||||
LIBS += curl lwip libc_lwip libc_lwip_nic_dhcp libc ld pthread
|
||||
SRC_CC = component.cc
|
||||
|
||||
CC_CXX_WARN_STRICT =
|
||||
|
Loading…
Reference in New Issue
Block a user