From 9f256a4ad30c93749e6c1192a84f996feac3b023 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Thu, 2 May 2019 09:32:49 +0200 Subject: command line options (still incomplete) --- extraction/extraction.v | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'extraction') diff --git a/extraction/extraction.v b/extraction/extraction.v index f58991aa..0f336916 100644 --- a/extraction/extraction.v +++ b/extraction/extraction.v @@ -117,6 +117,12 @@ Extract Constant Compopts.thumb => "fun _ -> !Clflags.option_mthumb". Extract Constant Compopts.debug => "fun _ -> !Clflags.option_g". +Extract Constant Compopts.optim_fglobaladdrtmp => + "fun _ -> !Clflags.option_fglobaladdrtmp". +Extract Constant Compopts.optim_fglobaladdroffset => + "fun _ -> !Clflags.option_fglobaladdroffset". +Extract Constant Compopts.optim_fxsaddr => + "fun _ -> !Clflags.option_fxsaddr". (* Compiler *) Extract Constant Compiler.print_Clight => "PrintClight.print_if". -- cgit