Lines Matching refs:Option
63 class Option(object): class
77 return Option(Option.Type.COMPILER, value)
81 return Option(Option.Type.COMPILER_FLAG, value)
85 return Option(Option.Type.CONFIGURE_FLAG, value)
89 return Option(Option.Type.MALLOC_CONF, value)
93 return Option(Option.Type.FEATURE, value)
96 return (isinstance(obj, Option) and obj.type == self.type
109 GCC = Option.as_compiler('CC=gcc CXX=g++')
110 CLANG = Option.as_compiler('CC=clang CXX=clang++')
111 CL = Option.as_compiler('CC=cl.exe CXX=cl.exe')
117 CROSS_COMPILE_32BIT = Option.as_feature('CROSS_COMPILE_32BIT')
121 configure_flag_unusuals = [Option.as_configure_flag(opt) for opt in (
131 malloc_conf_unusuals = [Option.as_malloc_conf(opt) for opt in (
173 compilers = [x.value for x in combination if x.type == Option.Type.COMPILER]
175 compiler_flags = [x.value for x in combination if x.type == Option.Type.COMPILER_FLAG]
176 configure_flags = [x.value for x in combination if x.type == Option.Type.CONFIGURE_FLAG]
177 malloc_conf = [x.value for x in combination if x.type == Option.Type.MALLOC_CONF]
178 features = [x.value for x in combination if x.type == Option.Type.FEATURE]
258 exclude = ([Option.as_malloc_conf(opt) for opt in (
262 [Option.as_configure_flag('--enable-prof')] +
273 Option.as_configure_flag('--enable-debug'),
285 Option.as_configure_flag('--enable-debug'),
286 Option.as_configure_flag('--enable-prof --enable-prof-libunwind'),
287 Option.as_configure_flag('--with-lg-page=16 --with-malloc-conf=tcache:false'),