annotate libcilkrts/configure.tgt @ 120:f93fa5091070

fix conv1.c
author mir3636
date Thu, 08 Mar 2018 14:53:42 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 # Copyright (C) 2013-2016, Intel Corporation
kono
parents:
diff changeset
2 # All rights reserved.
kono
parents:
diff changeset
3 #
kono
parents:
diff changeset
4 # Redistribution and use in source and binary forms, with or without
kono
parents:
diff changeset
5 # modification, are permitted provided that the following conditions
kono
parents:
diff changeset
6 # are met:
kono
parents:
diff changeset
7 #
kono
parents:
diff changeset
8 # * Redistributions of source code must retain the above copyright
kono
parents:
diff changeset
9 # notice, this list of conditions and the following disclaimer.
kono
parents:
diff changeset
10 # * Redistributions in binary form must reproduce the above copyright
kono
parents:
diff changeset
11 # notice, this list of conditions and the following disclaimer in
kono
parents:
diff changeset
12 # the documentation and/or other materials provided with the
kono
parents:
diff changeset
13 # distribution.
kono
parents:
diff changeset
14 # * Neither the name of Intel Corporation nor the names of its
kono
parents:
diff changeset
15 # contributors may be used to endorse or promote products derived
kono
parents:
diff changeset
16 # from this software without specific prior written permission.
kono
parents:
diff changeset
17 #
kono
parents:
diff changeset
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
kono
parents:
diff changeset
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
kono
parents:
diff changeset
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
kono
parents:
diff changeset
21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
kono
parents:
diff changeset
22 # HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
kono
parents:
diff changeset
23 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
kono
parents:
diff changeset
24 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
kono
parents:
diff changeset
25 # OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
kono
parents:
diff changeset
26 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
kono
parents:
diff changeset
27 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
kono
parents:
diff changeset
28 # WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
kono
parents:
diff changeset
29 # POSSIBILITY OF SUCH DAMAGE.
kono
parents:
diff changeset
30 #
kono
parents:
diff changeset
31 # *********************************************************************
kono
parents:
diff changeset
32 #
kono
parents:
diff changeset
33 # PLEASE NOTE: This file is a downstream copy of a file mainitained in
kono
parents:
diff changeset
34 # a repository at cilkplus.org. Changes made to this file that are not
kono
parents:
diff changeset
35 # submitted through the contribution process detailed at
kono
parents:
diff changeset
36 # http://www.cilkplus.org/submit-cilk-contribution will be lost the next
kono
parents:
diff changeset
37 # time that a new version is released. Changes only submitted to the
kono
parents:
diff changeset
38 # GNU compiler collection or posted to the git repository at
kono
parents:
diff changeset
39 # https://bitbucket.org/intelcilkruntime/intel-cilk-runtime.git are
kono
parents:
diff changeset
40 # not tracked.
kono
parents:
diff changeset
41 #
kono
parents:
diff changeset
42 # We welcome your contributions to this open source project. Thank you
kono
parents:
diff changeset
43 # for your assistance in helping us improve Cilk Plus.
kono
parents:
diff changeset
44
kono
parents:
diff changeset
45 # Disable Cilk Runtime library for unsupported architectures.
kono
parents:
diff changeset
46 case "${target}" in
kono
parents:
diff changeset
47 i?86-*-* | x86_64-*-*)
kono
parents:
diff changeset
48 ;;
kono
parents:
diff changeset
49 arm-*-*)
kono
parents:
diff changeset
50 ;;
kono
parents:
diff changeset
51 sparc*-*-*)
kono
parents:
diff changeset
52 ;;
kono
parents:
diff changeset
53 *-*-*)
kono
parents:
diff changeset
54 UNSUPPORTED=1
kono
parents:
diff changeset
55 ;;
kono
parents:
diff changeset
56 esac
kono
parents:
diff changeset
57
kono
parents:
diff changeset
58 # Disable libcilkrts on non POSIX hosted systems.
kono
parents:
diff changeset
59 . ${srcdir}/../config/target-posix