summaryrefslogtreecommitdiffstats
path: root/linkers
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2018-04-14 14:15:07 +1000
committerChris Johns <chrisj@rtems.org>2018-04-14 14:15:07 +1000
commit82c8788b111a4392a56414f8f421ba26ded5d0fd (patch)
tree757c4d3a9f27b56c13687862d66497f51dba5d18 /linkers
parentteater: Filter out an *.norun.* executables. (diff)
downloadrtems-tools-82c8788b111a4392a56414f8f421ba26ded5d0fd.tar.bz2
rtemstoolkit/rtl-file: Remove a file on close if requested
Close #3395
Diffstat (limited to 'linkers')
-rw-r--r--linkers/rtems-ld.cpp6
-rw-r--r--linkers/rtems-ra.cpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/linkers/rtems-ld.cpp b/linkers/rtems-ld.cpp
index 92258df..eafbbbf 100644
--- a/linkers/rtems-ld.cpp
+++ b/linkers/rtems-ld.cpp
@@ -504,9 +504,9 @@ main (int argc, char* argv[])
dependents, cache);
else if (output_type == "rap")
{
- rld::outputter::application (output, entry, exit,
- dependents, cache, symbols,
- one_file);
+ rld::outputter::rap_application (output, entry, exit,
+ dependents, cache, symbols,
+ one_file);
if (!outra.empty ())
{
rld::path::paths ra_libs;
diff --git a/linkers/rtems-ra.cpp b/linkers/rtems-ra.cpp
index efd4cf9..04c1868 100644
--- a/linkers/rtems-ra.cpp
+++ b/linkers/rtems-ra.cpp
@@ -375,9 +375,9 @@ main (int argc, char* argv[])
/* Todo: include absolute name for rap_name */
- rld::outputter::application (rap_name, entry, exit,
- dependents, *cache, symbols,
- true);
+ rld::outputter::rap_application (rap_name, entry, exit,
+ dependents, *cache, symbols,
+ true);
}
dependents.clear ();