Lines Matching +full:gcc +full:-
2 # Copyright © 2021-2021 Yonggang Luo
28 For gcc/x64,gcc/arm64,visual studio
32 For gcc/x86,gcc/arm
38 def gen_vs_module_def(in_file: str, out_file: str, compiler_id: str, cpu_family: str) -> None:
40 with open(in_file, 'r', encoding='utf-8') as f:
60 (compiler_id == 'gcc') and (cpu_family not in {'x86_64', 'aarch64'}):
72 f.write(out_file_content.encode('utf-8'))
74 …le_defs.py --in_file src/gallium/targets/libgl-gdi/opengl32.def.in --out_file src/gallium/targets/…
75 …defs.py --in_file src/gallium/targets/libgl-gdi/opengl32.def.in --out_file src/gallium/targets/lib…
77 …_module_defs.py --in_file src/gallium/targets/osmesa/osmesa.def.in --out_file src/gallium/targets/…
78 …dule_defs.py --in_file src/gallium/targets/osmesa/osmesa.def.in --out_file src/gallium/targets/osm…
80 …odule_defs.py --in_file src/gallium/targets/wgl/gallium_wgl.def.in --out_file src/gallium/targets/…
81 …le_defs.py --in_file src/gallium/targets/wgl/gallium_wgl.def.in --out_file src/gallium/targets/wgl…
83 …thon ./bin/gen_vs_module_defs.py --in_file src/egl/main/egl.def.in --out_file src/egl/main/egl.def…
84 …n ./bin/gen_vs_module_defs.py --in_file src/egl/main/egl.def.in --out_file src/egl/main/egl.mingw.…
86 …e_defs.py --in_file src/gallium/targets/lavapipe/vulkan_lvp.def.in --out_file src/gallium/targets/…
87 …efs.py --in_file src/gallium/targets/lavapipe/vulkan_lvp.def.in --out_file src/gallium/targets/lav…
92 parser.add_argument('--in_file', help='input template moudle definition file')
93 parser.add_argument('--out_file', help='output moudle definition file')
94 parser.add_argument('--compiler_id', help='compiler id')
95 parser.add_argument('--cpu_family', help='cpu family')