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
61 # Build runtime libraries for x86_64.
62 ifeq ($(call contains,$(SupportedArches),x86_64),true)
63 Configs += full-x86_64 profile-x86_64 san-x86_64 asan-x86_64 tsan-x86_64 \
64 msan-x86_64 ubsan-x86_64 ubsan_cxx-x86_64
65 Arch.full-x86_64 := x86_64
66 Arch.profile-x86_64 := x86_64
67 Arch.san-x86_64 := x86_64
68 Arch.asan-x86_64 := x86_64
69 Arch.tsan-x86_64 := x86_64
70 Arch.msan-x86_64 := x86_64
71 Arch.ubsan-x86_64 := x86_64
72 Arch.ubsan_cxx-x86_64 := x86_64
89 CFLAGS.full-x86_64 := $(CFLAGS) -m64
91 CFLAGS.profile-x86_64 := $(CFLAGS) -m64
93 CFLAGS.san-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti
96 CFLAGS.asan-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti \
98 CFLAGS.tsan-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti
99 CFLAGS.msan-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti
101 CFLAGS.ubsan-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS) -fno-rtti
103 CFLAGS.ubsan_cxx-x86_64 := $(CFLAGS) -m64 $(SANITIZER_CFLAGS)
118 CFLAGS.full-x86_64 += --sysroot=$(ProjSrcRoot)/SDKs/linux
121 FUNCTIONS.full-x86_64 := $(CommonFunctions) $(ArchFunctions.x86_64)
123 FUNCTIONS.profile-x86_64 := GCDAProfiling
125 FUNCTIONS.san-x86_64 := $(SanitizerCommonFunctions)
128 FUNCTIONS.asan-x86_64 := $(AsanFunctions) $(InterceptionFunctions) \
132 FUNCTIONS.tsan-x86_64 := $(TsanFunctions) $(InterceptionFunctions) \
134 FUNCTIONS.msan-x86_64 := $(MsanFunctions) $(InterceptionFunctions) \
137 FUNCTIONS.ubsan-x86_64 := $(UbsanFunctions)
139 FUNCTIONS.ubsan_cxx-x86_64 := $(UbsanCXXFunctions)