annotate gcc/config/rs6000/t-linux @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 # do not define the multiarch name if configured for a soft-float cpu
kono
parents:
diff changeset
2 # or soft-float.
kono
parents:
diff changeset
3 ifeq (,$(filter $(with_cpu),$(SOFT_FLOAT_CPUS))$(findstring soft,$(with_float)))
kono
parents:
diff changeset
4 ifneq (,$(findstring powerpc64,$(target)))
kono
parents:
diff changeset
5 MULTILIB_OSDIRNAMES := .=../lib64$(call if_multiarch,:powerpc64-linux-gnu)
kono
parents:
diff changeset
6 else
kono
parents:
diff changeset
7 MULTIARCH_DIRNAME := powerpc-linux-gnu
kono
parents:
diff changeset
8 endif
kono
parents:
diff changeset
9 ifneq (,$(findstring powerpcle,$(target)))
kono
parents:
diff changeset
10 MULTIARCH_DIRNAME := $(subst -linux,le-linux,$(MULTIARCH_DIRNAME))
kono
parents:
diff changeset
11 endif
kono
parents:
diff changeset
12 ifneq (,$(findstring powerpc64le,$(target)))
kono
parents:
diff changeset
13 MULTILIB_OSDIRNAMES := $(subst -linux,le-linux,$(MULTILIB_OSDIRNAMES))
kono
parents:
diff changeset
14 endif
kono
parents:
diff changeset
15 endif
kono
parents:
diff changeset
16
kono
parents:
diff changeset
17 rs6000-linux.o: $(srcdir)/config/rs6000/rs6000-linux.c
kono
parents:
diff changeset
18 $(COMPILE) $<
kono
parents:
diff changeset
19 $(POSTCOMPILE)