annotate libvtv/configure.tgt @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 # -*- shell-script -*-
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
2 # Copyright (C) 2013-2020 Free Software Foundation, Inc.
111
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 # This program is free software; you can redistribute it and/or modify
kono
parents:
diff changeset
5 # it under the terms of the GNU General Public License as published by
kono
parents:
diff changeset
6 # the Free Software Foundation; either version 2 of the License, or
kono
parents:
diff changeset
7 # (at your option) any later version.
kono
parents:
diff changeset
8 #
kono
parents:
diff changeset
9 # This program is distributed in the hope that it will be useful,
kono
parents:
diff changeset
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
kono
parents:
diff changeset
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
kono
parents:
diff changeset
12 # GNU General Public License for more details.
kono
parents:
diff changeset
13 #
kono
parents:
diff changeset
14 # You should have received a copy of the GNU General Public License
kono
parents:
diff changeset
15 # along with this program; if not see <http://www.gnu.org/licenses/>.
kono
parents:
diff changeset
16
kono
parents:
diff changeset
17 # This is the target specific configuration file. This is invoked by the
kono
parents:
diff changeset
18 # autoconf generated configure script. Putting it in a separate shell file
kono
parents:
diff changeset
19 # lets us skip running autoconf when modifying target specific information.
kono
parents:
diff changeset
20
kono
parents:
diff changeset
21 # Filter out unsupported systems.
kono
parents:
diff changeset
22 VTV_SUPPORTED=no
kono
parents:
diff changeset
23 case "${target}" in
kono
parents:
diff changeset
24 *-*-*android*)
kono
parents:
diff changeset
25 ;;
kono
parents:
diff changeset
26 *-*-solaris2.1[1-9]*)
kono
parents:
diff changeset
27 # Vtable verification requires constructor priority support and
kono
parents:
diff changeset
28 # dl_iterate_phdr. The former requires a dynamic check in
kono
parents:
diff changeset
29 # configure.ac, the latter is fully present in Solaris 11 only.
kono
parents:
diff changeset
30 VTV_SUPPORTED=yes
kono
parents:
diff changeset
31 ;;
kono
parents:
diff changeset
32 x86_64-*-linux* | i?86-*-linux*)
kono
parents:
diff changeset
33 VTV_SUPPORTED=yes
kono
parents:
diff changeset
34 ;;
kono
parents:
diff changeset
35 x86_64-*-cygwin* | i?86-*-cygwin*)
kono
parents:
diff changeset
36 VTV_SUPPORTED=yes
kono
parents:
diff changeset
37 ;;
kono
parents:
diff changeset
38 x86_64-*-mingw* | i?86-*-mingw*)
kono
parents:
diff changeset
39 VTV_SUPPORTED=yes
kono
parents:
diff changeset
40 ;;
kono
parents:
diff changeset
41 powerpc*-*-linux*)
kono
parents:
diff changeset
42 ;;
kono
parents:
diff changeset
43 sparc*-*-linux*)
kono
parents:
diff changeset
44 ;;
kono
parents:
diff changeset
45 arm*-*-linux*)
kono
parents:
diff changeset
46 VTV_SUPPORTED=yes
kono
parents:
diff changeset
47 ;;
kono
parents:
diff changeset
48 aarch64*-*-linux*)
kono
parents:
diff changeset
49 VTV_SUPPORTED=yes
kono
parents:
diff changeset
50 ;;
kono
parents:
diff changeset
51 x86_64-*-darwin[1]* | i?86-*-darwin[1]*)
kono
parents:
diff changeset
52 ;;
kono
parents:
diff changeset
53 *)
kono
parents:
diff changeset
54 ;;
kono
parents:
diff changeset
55 esac