From 410a5db3d48e84f2157c2c4f4bc29056c0e174b9 Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Fri, 24 Jun 2016 13:57:27 +0200 Subject: Moved assembler and linker into own files. The function to call the assembler and the linker are now in own files like the preprocessor. Bug 19197 --- driver/Frontend.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'driver/Frontend.ml') diff --git a/driver/Frontend.ml b/driver/Frontend.ml index 00387a05..043d4e5a 100644 --- a/driver/Frontend.ml +++ b/driver/Frontend.ml @@ -125,7 +125,7 @@ let prepro_actions = [ Exact "-Xpreprocessor", String (fun s -> prepro_options := s :: !prepro_options); Exact "-include", String (fun s -> prepro_options := s :: "-include" :: !prepro_options);] - @ (if Configuration.system <> "diab" then gnu_prepro_actions else []) + @ (if gnu_system then gnu_prepro_actions else []) let gnu_prepro_help = "\ -M Ouput a rule suitable for make describing the\n\ @@ -161,4 +161,4 @@ let prepro_help = "Preprocessing options:\n\ \ -U Undefine preprocessor symbol\n\ \ -Wp, Pass option to the preprocessor\n\ \ -Xpreprocessor Pass option to the preprocessor\n" - ^ (if Configuration.system <> "diab" then gnu_prepro_help else "") + ^ (if gnu_system then gnu_prepro_help else "") -- cgit