We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 727a943 commit b47870dCopy full SHA for b47870d
driver/Clflags.ml
@@ -40,7 +40,10 @@ let option_mthumb = ref (Configuration.model = "armv7m")
40
let option_Osize = ref false
41
let option_finline = ref true
42
let option_finline_functions_called_once = ref true
43
-let option_fcf_protection = ref false
+let option_fcf_protection = ref
44
+ (match Configuration.arch, Configuration.model, Configuration.system with
45
+ | "x86", "64", "bsd" -> true
46
+ | _ -> false)
47
let option_dprepro = ref false
48
let option_dparse = ref false
49
let option_dcmedium = ref false
0 commit comments