From 14ee3c0d36c6d14f50ab6ed4f28548f2a361e825 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Fri, 1 Jul 2022 16:27:02 +0200 Subject: [PATCH] Removed posix module. --- repos/mml/run/thread_test.run | 2 +- repos/mml/src/app/thread_test/target.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/repos/mml/run/thread_test.run b/repos/mml/run/thread_test.run index 68938d5db8..a73fe909c9 100644 --- a/repos/mml/run/thread_test.run +++ b/repos/mml/run/thread_test.run @@ -37,7 +37,7 @@ install_config { } set boot_modules { - core init timer vfs.lib.so ld.lib.so libc.lib.so libm.lib.so stdcxx.lib.so posix.lib.so thread_test + core init timer vfs.lib.so ld.lib.so libc.lib.so libm.lib.so stdcxx.lib.so thread_test } build_boot_image $boot_modules append qemu_args "-nographic -m 64" diff --git a/repos/mml/src/app/thread_test/target.mk b/repos/mml/src/app/thread_test/target.mk index 9ee01c9bec..bcee6a0576 100644 --- a/repos/mml/src/app/thread_test/target.mk +++ b/repos/mml/src/app/thread_test/target.mk @@ -1,4 +1,4 @@ TARGET = thread_test SRC_CC = thread_test.cc -LIBS += base libc libm stdcxx posix +LIBS += base libc libm stdcxx CXXFLAGS += -Wno-error