aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Driver.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-05-19 18:07:08 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-05-19 18:07:08 +0200
commit50ed2827867238a98f2036f799d4d6f354a2581c (patch)
tree5efa4083cd9de0faa04430d48f56c9e186a8e5e7 /driver/Driver.ml
parent6885cf5c6cf05886a7dd09a3d4bfad079b628376 (diff)
downloadcompcert-50ed2827867238a98f2036f799d4d6f354a2581c.tar.gz
compcert-50ed2827867238a98f2036f799d4d6f354a2581c.zip
Added flag for the renaming of static functions.
Diffstat (limited to 'driver/Driver.ml')
-rw-r--r--driver/Driver.ml2
1 files changed, 2 insertions, 0 deletions
diff --git a/driver/Driver.ml b/driver/Driver.ml
index 04dec9db..90badb85 100644
--- a/driver/Driver.ml
+++ b/driver/Driver.ml
@@ -435,6 +435,7 @@ Language support options (use -fno-<opt> to turn off -f<opt>) :
-fnone Turn off all language support options above
Debugging options:
-g Generate debugging information
+ -frename-static Rename static functions and declarations
Optimization options: (use -fno-<opt> to turn off -f<opt>)
-O Optimize the compiled code [on by default]
-O0 Do not optimize the compiled code
@@ -528,6 +529,7 @@ let cmdline_actions =
Exact "-fnone", Self (fun _ -> unset_all language_support_options);
(* Debugging options *)
Exact "-g", Self (fun s -> option_g := true);
+ Exact "-frename-static", Self (fun s -> option_rename_static:= true);
(* Code generation options -- more below *)
Exact "-O0", Self (fun _ -> unset_all optimization_options);
Exact "-O", Self (fun _ -> set_all optimization_options);