2016-12-30 20:20:13 +00:00
|
|
|
module Superenv
|
|
|
|
def fast
|
2018-01-18 09:47:33 +00:00
|
|
|
odisabled "ENV.fast"
|
2016-12-30 20:20:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def O4
|
2018-01-18 09:47:33 +00:00
|
|
|
odisabled "ENV.O4"
|
2016-12-30 20:20:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def Og
|
2018-01-18 09:47:33 +00:00
|
|
|
odisabled "ENV.Og"
|
2016-12-30 20:20:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def gcc_4_0_1
|
2018-01-18 09:47:33 +00:00
|
|
|
odisabled "ENV.gcc_4_0_1", "ENV.gcc_4_0"
|
2016-12-30 20:20:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def gcc
|
2018-01-18 09:47:33 +00:00
|
|
|
odisabled "ENV.gcc", "ENV.gcc_4_2"
|
2016-12-30 20:20:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def libxml2
|
2018-01-18 09:47:33 +00:00
|
|
|
odisabled "ENV.libxml2"
|
2016-12-30 20:20:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def minimal_optimization
|
2018-01-18 09:47:33 +00:00
|
|
|
odisabled "ENV.minimal_optimization"
|
2016-12-30 20:20:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def no_optimization
|
2018-01-18 09:47:33 +00:00
|
|
|
odisabled "ENV.no_optimization"
|
2016-12-30 20:20:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def enable_warnings
|
2018-01-18 09:47:33 +00:00
|
|
|
odisabled "ENV.enable_warnings"
|
2016-12-30 20:20:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def macosxsdk
|
2018-01-18 09:47:33 +00:00
|
|
|
odisabled "ENV.macosxsdk"
|
2016-12-30 20:20:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def remove_macosxsdk
|
2018-01-18 09:47:33 +00:00
|
|
|
odisabled "ENV.remove_macosxsdk"
|
2016-12-30 20:20:13 +00:00
|
|
|
end
|
|
|
|
end
|