1# This is the binutils target specific file. This is invoked by the 2# autoconf generated configure script. Putting it in a separate shell 3# file lets us skip running autoconf when modifying target specific 4# information. 5 6# This file switches on the shell variable ${targ}, and sets the 7# following shell variables: 8# targ_emul name of emulation to use 9# targ_emul_vector name of vector to use 10 11case "${targ}" in 12 powerpc-*-aix5* | rs6000-*-aix5*) 13 targ_emul=aix 14 targ_emul_vector=bin_aix5_emulation 15 ;; 16 17 powerpc-*-aix4.3* | rs6000-*-aix4.3*) 18 targ_emul=aix 19 targ_emul_vector=bin_aix_emulation 20 ;; 21 22 *) 23 targ_emul=vanilla 24 targ_emul_vector=bin_vanilla_emulation 25 ;; 26esac 27