Lines Matching defs:x86_64

22 # Define configs only if arch in triple is i386 or x86_64
24 ifeq ($(call contains,i386 x86_64,$(CompilerTargetArch)),true)
41 SupportedArches += x86_64
44 SupportedArches := x86_64
63 # Build runtime libraries for x86_64.
64 ifeq ($(call contains,$(SupportedArches),x86_64),true)
65 Configs += builtins-x86_64 profile-x86_64 san-x86_64 asan-x86_64 asan_cxx-x86_64 \
66 tsan-x86_64 msan-x86_64 ubsan-x86_64 ubsan_cxx-x86_64 dfsan-x86_64 \
67 lsan-x86_64
68 Arch.builtins-x86_64 := x86_64
69 Arch.profile-x86_64 := x86_64
70 Arch.san-x86_64 := x86_64
71 Arch.asan-x86_64 := x86_64
72 Arch.asan_cxx-x86_64 := x86_64
73 Arch.tsan-x86_64 := x86_64
74 Arch.msan-x86_64 := x86_64
75 Arch.ubsan-x86_64 := x86_64
76 Arch.ubsan_cxx-x86_64 := x86_64
77 Arch.dfsan-x86_64 := x86_64
78 Arch.lsan-x86_64 := x86_64
96 CFLAGS.builtins-x86_64 := $(CFLAGS) -m64
98 CFLAGS.profile-x86_64 := $(CFLAGS) -m64
100 CFLAGS.san-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti
102 CFLAGS.asan-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti
104 CFLAGS.asan_cxx-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti
105 CFLAGS.tsan-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti
106 CFLAGS.msan-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti
108 CFLAGS.ubsan-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti
110 CFLAGS.ubsan_cxx-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS)
111 CFLAGS.dfsan-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti
112 CFLAGS.lsan-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti
128 CFLAGS.builtins-x86_64 += --sysroot=$(ProjSrcRoot)/SDKs/linux
131 FUNCTIONS.builtins-x86_64 := $(CommonFunctions) $(ArchFunctions.x86_64)
135 FUNCTIONS.profile-x86_64 := $(FUNCTIONS.profile-i386)
137 FUNCTIONS.san-x86_64 := $(SanitizerCommonFunctions)
140 FUNCTIONS.asan-x86_64 := $(AsanFunctions) $(InterceptionFunctions) \
143 FUNCTIONS.asan_cxx-x86_64 := $(AsanCXXFunctions)
147 FUNCTIONS.tsan-x86_64 := $(TsanFunctions) $(InterceptionFunctions) \
149 FUNCTIONS.msan-x86_64 := $(MsanFunctions) $(InterceptionFunctions) \
152 FUNCTIONS.ubsan-x86_64 := $(UbsanFunctions)
154 FUNCTIONS.ubsan_cxx-x86_64 := $(UbsanCXXFunctions)
155 FUNCTIONS.dfsan-x86_64 := $(DfsanFunctions) $(InterceptionFunctions) \
157 FUNCTIONS.lsan-x86_64 := $(LsanFunctions) $(InterceptionFunctions) \