From b39cabc055690ef1da48bb2fff11aedab6440bac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Thu, 11 Sep 2014 21:42:57 +0200 Subject: [PATCH] Link with libm and librt, required for older glibc. No harm on newer --- test/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/SConscript b/test/SConscript index 911dc9d..30a17fa 100644 --- a/test/SConscript +++ b/test/SConscript @@ -4,7 +4,7 @@ Import('env', 'build_type', 'prefix', 'lib_suffix', 'version_info', 'test_xml') test_env = env.Clone() test_env.Append(LIBPATH = ['#build/src']); -test_env.Append(LIBS = ['ucore' + lib_suffix, 'check']) +test_env.Append(LIBS = ['ucore' + lib_suffix, 'check','m','rt']) system = platform.system()