Support TI mode and soft float on PA64
[official-gcc.git] / libgo / match.sh
blobbf4f141e04a7ab87cb5a4fc0a146bc8c1c74149d
1 #!/bin/sh
3 # Copyright 2016 The Go Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style
5 # license that can be found in the LICENSE file.
7 # Given a source directory, returns the non-test Go files that should
8 # be built for this target. This implements Go's build constraints in
9 # a shell script. There is similar code in testsuite/gotest.
11 set -e
13 LANG=C
14 LC_ALL=C
15 LC_CTYPE=C
16 export LANG LC_ALL LC_CTYPE
18 srcdir=""
19 goarch=""
20 goos=""
21 extrafiles=""
22 cmdlinetag="nosuchtag"
23 cgotag="cgo"
25 for arg; do
26 case "x$arg" in
27 x--srcdir)
28 srcdir=$2
29 shift
30 shift
32 x--srcdir=*)
33 srcdir=`echo $1 | sed -e 's/^--srcdir=//'`
34 shift
36 x--goarch)
37 goarch=$2
38 shift
39 shift
41 x--goarch=*)
42 goarch=`echo $1 | sed -e 's/^--goarch=//'`
43 shift
45 x--goos)
46 goos=$2
47 shift
48 shift
50 x--goos=*)
51 goos=`echo $1 | sed -e 's/^--goos=//'`
52 shift
54 x--extrafiles)
55 extrafiles=$2
56 shift
57 shift
59 x--extrafiles=*)
60 extrafiles=`echo $1 | sed -e 's/^--extrafiles=//'`
61 shift
63 x--tag)
64 cmdlinetag=$2
65 shift
66 shift
68 x--tag=*)
69 cmdlinetag=`echo $1 | sed -e 's/^--tag=//'`
70 shift
72 x--nocgo)
73 cgotag="nosuchtag"
74 shift
77 echo 1>&2 "unknown argument $arg"
78 exit 1
80 esac
81 done
83 cd $srcdir
85 gofiles=
86 for f in *.go; do
87 case $f in
88 *_test.go)
90 *.go)
91 gofiles="$gofiles $f"
93 esac
94 done
96 if test "$gofiles" = ""; then
97 echo 1>&2 "no non-test .go files in $srcdir"
98 exit 1
101 matched=
102 for f in $gofiles; do
103 tag1=`echo $f | sed -e 's/^.*_\([^_]*\).go$/\1/'`
104 tag2=`echo $f | sed -e 's/^.*_\([^_]*\)_[^_]*.go$/\1/'`
105 if test x$tag1 = x$f; then
106 tag1=
108 if test x$tag2 = x$f; then
109 tag2=
112 case "$tag1" in
113 "") ;;
114 $goarch) ;;
115 $goos) ;;
116 aix | android | darwin | dragonfly | freebsd | illumos | hurd | ios | js | linux | nacl | netbsd | openbsd | plan9 | solaris | windows | zos)
117 tag1=nonmatchingtag
119 386 | amd64 | amd64p32 | arm | armbe | arm64 | arm64be | alpha | ia64 | m68k | mips | mipsle | mips64 | mips64le | mips64p32 | mips64p32le | nios2 | ppc | ppc64 | ppc64le | riscv | riscv64 | s390 | s390x | sh | shbe | sparc | sparc64 | wasm)
120 tag1=nonmatchingtag
123 # File name like x_amd64_random.go, where tag1=random.
124 # Don't match based on tag2.
125 tag2=
127 esac
129 case "$tag2" in
130 "") ;;
131 $goarch) ;;
132 $goos) ;;
133 aix | android | darwin | dragonfly | freebsd | hurd | ios | illumos | js | linux | nacl | netbsd | openbsd | plan9 | solaris | windows | zos)
134 tag2=nonmatchingtag
136 386 | amd64 | amd64p32 | arm | armbe | arm64 | arm64be | alpha | ia64 | m68k | mips | mipsle | mips64 | mips64le | mips64p32 | mips64p32le | nios2 | ppc | ppc64 | ppc64le | riscv | riscv64 | s390 | s390x | sh | shbe | sparc | sparc64 | wasm)
137 tag2=nonmatchingtag
139 esac
141 if test x$tag1 != xnonmatchingtag -a x$tag2 != xnonmatchingtag; then
142 # Pipe through cat so that `set -e` doesn't affect fgrep.
143 tags=`sed '/^package /q' < $f | grep '^// *+build ' | cat`
144 omatch=true
145 first=true
146 match=false
147 for tag in $tags; do
148 case $tag in
149 "//")
151 "+build" | "//+build")
152 if test "$first" = "true"; then
153 first=false
154 elif test "$match" = "false"; then
155 omatch=false
157 match=false
159 $goos | $goarch | $cgotag | $cmdlinetag | "gccgo" | "goexperiment.fieldtrack" | go1.[0-9] | go1.[0-9][0-9])
160 match=true
162 "!"$goos | "!"$goarch | "!"$cgotag | "!"$cmdlinetag | "!gccgo" | "!goexperiment.fieldtrack" | "!"go1.[0-9] | "!"go1.1[0-7])
164 *,*)
165 cmatch=true
166 for ctag in `echo $tag | sed -e 's/,/ /g'`; do
167 case $ctag in
168 $goos | $goarch | $cgotag | $cmdlinetag | "gccgo" | "goexperiment.fieldtrack" | go1.[0-9] | go1.[0-9][0-9])
170 "!"$goos | "!"$goarch | "!"$cgotag | "!"$cmdlinetag | "!gccgo" | "!goexperiment.fieldtrack" | "!"go1.[0-9] | "!"go1.1[0-7])
171 cmatch=false
173 "!"*)
176 cmatch=false
178 esac
179 done
180 if test "$cmatch" = "true"; then
181 match=true
184 "!"*)
185 match=true
187 esac
188 done
190 if test "$match" = "false" -a "$first" = "false"; then
191 omatch=false
194 if test "$omatch" = "true"; then
195 matched="$matched $srcdir/$f"
198 done
200 echo $matched $extrafiles
202 exit 0