From c4a73980da51e9f08410aee134abbb9bd2a83a5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Fri, 1 Jul 2022 16:28:47 +0200 Subject: [PATCH] Removed dependencies on stdcxx and libc. --- 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 a73fe909c9..08bae0b68e 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 thread_test + core init timer vfs.lib.so ld.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 bcee6a0576..c49034cd6b 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 +LIBS += base CXXFLAGS += -Wno-error