aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--driver/Driver.ml28
1 files changed, 28 insertions, 0 deletions
diff --git a/driver/Driver.ml b/driver/Driver.ml
index bdccbf16..77bf52a9 100644
--- a/driver/Driver.ml
+++ b/driver/Driver.ml
@@ -508,12 +508,24 @@ Target processor options:
-marm (ARM only) Use classic ARM instruction encoding
Assembling options:
-Wa,<opt> Pass option <opt> to the assembler
+ -Xassembler <opt> Pass <opt> as an option to the assembler
Linking options:
-l<lib> Link library <lib>
-L<dir> Add <dir> to search path for libraries
+ -nostartfiles (GCC only) Do not use the standard system startup files when
+ linking
+ -nodefaultlibs (GCC only) Do not use the standard system libraries when
+ linking
+ -nostdlib (GCC only) Do not use the standard system startup files or
+ libraries when linking
+ -s Remove all symbol table and relocation information from the
+ executable
-static Prevent linking with the shared libraries
-T <file> Use <file> as linker command file
-Wl,<opt> Pass option <opt> to the linker
+ -Xlinker <opt> Pass <opt> as an option to the linker
+ -u <symb> Pretend the symbol <symb> is undefined to force linking of
+ library modules to define it.
Tracing options:
-dprepro Save C file after preprocessing in <file>.i
-dparse Save C file after parsing and elaboration in <file>.parse.c
@@ -557,6 +569,9 @@ let optimization_options = [
let set_all opts = List.iter (fun r -> r := true) opts
let unset_all opts = List.iter (fun r -> r := false) opts
+let gnu_linker_opt s =
+ if Configuration.system <> "diab" then
+ push_linker_arg s
let num_source_files = ref 0
@@ -629,9 +644,17 @@ let cmdline_actions =
assembler_options := List.rev_append (explode_comma_option s) !assembler_options
else
assembler_options := s :: !assembler_options);
+ Exact "-Xassembler", String (fun s -> if Configuration.system = "diab" then
+ assembler_options := s::!assembler_options
+ else
+ assembler_options := s::"-Xassembler":: !assembler_options);
(* Linking options *)
Prefix "-l", Self push_linker_arg;
Prefix "-L", Self push_linker_arg;
+ Exact "-nostartfiles", Self gnu_linker_opt;
+ Exact "-nodefaultlibs", Self gnu_linker_opt;
+ Exact "-nostdlib", Self gnu_linker_opt;
+ Exact "-s", Self push_linker_arg;
Exact "-static", Self push_linker_arg;
Exact "-T", String (fun s -> if Configuration.system = "diab" then
push_linker_arg ("-Wm"^s)
@@ -639,7 +662,12 @@ let cmdline_actions =
push_linker_arg ("-T");
push_linker_arg(s)
end);
+ Exact "-Xlinker", String (fun s -> if Configuration.system = "diab" then
+ push_linker_arg ("-Wl,"^s)
+ else
+ push_linker_arg s);
Prefix "-Wl,", Self push_linker_arg;
+ Exact "-u", Self push_linker_arg;
(* Tracing options *)
Exact "-dprepro", Set option_dprepro;
Exact "-dparse", Set option_dparse;