summaryrefslogtreecommitdiff
path: root/linkers/rtems-ld.cpp
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-09-08 16:06:48 +1000
committerChris Johns <chrisj@rtems.org>2014-09-08 16:06:48 +1000
commit6506aa14aad5db5f4f3fab80bec12964148f13ad (patch)
tree500ab8b9d012460b44ccc032fa5b4f2f0ed4a6e2 /linkers/rtems-ld.cpp
parentb28e8b311550ba5296c814dfdfa1136517ce00a1 (diff)
RTEMS trace linker builds trace applications.
The trace linker builds the both_hello example in examples-v2. Move the various string support functions into a C++ file and stop being inlined. Make them return const std::string. Add ld support to rld-cc. Add search path support to rld-config so installed common files can be used. Fix the path bugs. Add an absolute path function to rld-path.
Diffstat (limited to 'linkers/rtems-ld.cpp')
-rw-r--r--linkers/rtems-ld.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linkers/rtems-ld.cpp b/linkers/rtems-ld.cpp
index dfa5c14..f678cde 100644
--- a/linkers/rtems-ld.cpp
+++ b/linkers/rtems-ld.cpp
@@ -356,7 +356,7 @@ main (int argc, char* argv[])
if (!rtems_arch_bsp.empty ())
{
if (rtems_path.empty ())
- throw rld::error ("arch/bsp provide and no RTEMS path", "options");
+ throw rld::error ("No RTEMS path provide with arch/bsp", "options");
rld::rtems::set_path (rtems_path);
rld::rtems::set_arch_bsp (rtems_arch_bsp);
}