From 85d46ce470a498e3611885982f99fd9afe6e37e7 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Tue, 25 Sep 2007 20:02:30 -0700 Subject: Loader: Only complain about TLS sections if you're using Alpha. --HG-- extra : convert_revision : 125d19ad3fa1847752e455fa248ca3b2a55a2067 --- src/sim/process.cc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/sim/process.cc') diff --git a/src/sim/process.cc b/src/sim/process.cc index f943cb565..8f36fba1b 100644 --- a/src/sim/process.cc +++ b/src/sim/process.cc @@ -456,13 +456,12 @@ LiveProcess::create(const std::string &nm, System *system, int stdin_fd, "executables are supported!\n Please recompile your " "executable as a static binary and try again.\n"); +#if THE_ISA == ALPHA_ISA if (objFile->hasTLS()) - fatal("Object file has a TLS section and loading of TLS sections " - "are not currently supported!\n Please recompile your " - "executable with a non-TLS toolchain or add TLS support to " - "M5 and try again\n"); + fatal("Object file has a TLS section and single threaded TLS is not\n" + " currently supported for Alpha! Please recompile your " + "executable with \n a non-TLS toolchain.\n"); -#if THE_ISA == ALPHA_ISA if (objFile->getArch() != ObjectFile::Alpha) fatal("Object file architecture does not match compiled ISA (Alpha)."); switch (objFile->getOpSys()) { -- cgit v1.2.3