aboutsummaryrefslogtreecommitdiffstats
path: root/driver
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-08-25 12:51:31 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-08-25 12:51:31 +0200
commitc642e761fa8943584343c3097a53019244cd74cf (patch)
treed47ba373ae191e16476dfab7e509c4ca36202f97 /driver
parent5e0e155f859627e804d3acea25e0c0bcf187cec6 (diff)
downloadcompcert-c642e761fa8943584343c3097a53019244cd74cf.tar.gz
compcert-c642e761fa8943584343c3097a53019244cd74cf.zip
Fixed the -T option.
The diab compiler expected -Wm<pathname> without whitespace.
Diffstat (limited to 'driver')
-rw-r--r--driver/Driver.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/Driver.ml b/driver/Driver.ml
index d628e283..7832e6d2 100644
--- a/driver/Driver.ml
+++ b/driver/Driver.ml
@@ -568,7 +568,7 @@ let cmdline_actions =
Prefix "-l", Self push_linker_arg;
Prefix "-L", Self push_linker_arg;
Exact "-T", String (fun s -> if Configuration.system = "diab" then
- push_linker_arg ("-Wm "^s)
+ push_linker_arg ("-Wm"^s)
else
push_linker_arg ("-T "^s));
Prefix "-Wl,", Self push_linker_arg;