annotate libhsail-rt/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) 2012-2020 Free Software Foundation, Inc.
111
kono
parents:
diff changeset
3 # Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
kono
parents:
diff changeset
4 # for General Processor Tech.
kono
parents:
diff changeset
5 #
kono
parents:
diff changeset
6 # This file is part of the libhsail-rt.
kono
parents:
diff changeset
7 #
kono
parents:
diff changeset
8 # Permission is hereby granted, free of charge, to any person obtaining a
kono
parents:
diff changeset
9 # copy of this software and associated documentation files
kono
parents:
diff changeset
10 # (the "Software"), to deal in the Software without restriction, including
kono
parents:
diff changeset
11 # without limitation the rights to use, copy, modify, merge, publish,
kono
parents:
diff changeset
12 # distribute, sublicense, and/or sell copies of the Software, and to
kono
parents:
diff changeset
13 # permit persons to whom the Software is furnished to do so, subject to
kono
parents:
diff changeset
14 # the following conditions:
kono
parents:
diff changeset
15 #
kono
parents:
diff changeset
16 # The above copyright notice and this permission notice shall be included
kono
parents:
diff changeset
17 # in all copies or substantial portions of the Software.
kono
parents:
diff changeset
18 #
kono
parents:
diff changeset
19 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
kono
parents:
diff changeset
20 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
kono
parents:
diff changeset
21 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
kono
parents:
diff changeset
22 # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
kono
parents:
diff changeset
23 # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
kono
parents:
diff changeset
24 # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
kono
parents:
diff changeset
25 # USE OR OTHER DEALINGS IN THE SOFTWARE.
kono
parents:
diff changeset
26
kono
parents:
diff changeset
27 # Disable the BRIG frontend and libhsail-rt on untested or known
kono
parents:
diff changeset
28 # broken systems. Currently it has been tested only on x86_64 Linux
kono
parents:
diff changeset
29 # of the upstream gcc targets. More targets shall be added after testing.
kono
parents:
diff changeset
30 case "${target}" in
kono
parents:
diff changeset
31 x86_64-*-linux* | i?86-*-linux*)
kono
parents:
diff changeset
32 ;;
kono
parents:
diff changeset
33 *)
kono
parents:
diff changeset
34 UNSUPPORTED=1
kono
parents:
diff changeset
35 ;;
kono
parents:
diff changeset
36 esac