Home | History | Annotate | Download | only in platform

Lines Matching full:i386

22 # Define configs only if arch in triple is i386 or x86_64
24 ifeq ($(call contains,i386 x86_64,$(CompilerTargetArch)),true)
38 ifeq ($(CompilerTargetArch),i386)
39 SupportedArches := i386
46 SupportedArches += i386
50 # Build runtime libraries for i386.
51 ifeq ($(call contains,$(SupportedArches),i386),true)
52 Configs += full-i386 profile-i386 san-i386 asan-i386 ubsan-i386 ubsan_cxx-i386
53 Arch.full-i386 := i386
54 Arch.profile-i386 := i386
55 Arch.san-i386 := i386
56 Arch.asan-i386 := i386
57 Arch.ubsan-i386 := i386
58 Arch.ubsan_cxx-i386 := i386
88 CFLAGS.full-i386 := $(CFLAGS) -m32
90 CFLAGS.profile-i386 := $(CFLAGS) -m32
92 CFLAGS.san-i386 := $(CFLAGS) -m32 $(SANITIZER_CFLAGS) -fno-rtti
94 CFLAGS.asan-i386 := $(CFLAGS) -m32 $(SANITIZER_CFLAGS) -fno-rtti \
100 CFLAGS.ubsan-i386 := $(CFLAGS) -m32 $(SANITIZER_CFLAGS) -fno-rtti
102 CFLAGS.ubsan_cxx-i386 := $(CFLAGS) -m32 $(SANITIZER_CFLAGS)
117 CFLAGS.full-i386 += --sysroot=$(ProjSrcRoot)/SDKs/linux
120 FUNCTIONS.full-i386 := $(CommonFunctions) $(ArchFunctions.i386)
122 FUNCTIONS.profile-i386 := GCDAProfiling
124 FUNCTIONS.san-i386 := $(SanitizerCommonFunctions)
126 FUNCTIONS.asan-i386 := $(AsanFunctions) $(InterceptionFunctions) \
136 FUNCTIONS.ubsan-i386 := $(UbsanFunctions)
138 FUNCTIONS.ubsan_cxx-i386 := $(UbsanCXXFunctions)