aboutsummaryrefslogtreecommitdiffstats
path: root/driver
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
parent6885cf5c6cf05886a7dd09a3d4bfad079b628376 (diff)
downloadcompcert-kvx-50ed2827867238a98f2036f799d4d6f354a2581c.tar.gz
compcert-kvx-50ed2827867238a98f2036f799d4d6f354a2581c.zip
Added flag for the renaming of static functions.
Diffstat (limited to 'driver')
-rw-r--r--driver/Clflags.ml1
-rw-r--r--driver/Driver.ml2
2 files changed, 3 insertions, 0 deletions
diff --git a/driver/Clflags.ml b/driver/Clflags.ml
index 8899c2b0..d9c21a9c 100644
--- a/driver/Clflags.ml
+++ b/driver/Clflags.ml
@@ -59,3 +59,4 @@ let option_small_data =
then 8 else 0)
let option_small_const = ref (!option_small_data)
let option_timings = ref false
+let option_rename_static = ref false
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);