-
Notifications
You must be signed in to change notification settings - Fork 24
/
autogen.sh
executable file
·100 lines (83 loc) · 2.45 KB
/
autogen.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#! /bin/sh
##
## Copyright (C) by Argonne National Laboratory
## See COPYRIGHT in top-level directory
##
########################################################################
## Utility functions
########################################################################
echo_n() {
# "echo -n" isn't portable, must portably implement with printf
printf "%s" "$*"
}
error() {
echo "===> ERROR: $@"
exit
}
########################################################################
## Parse user environment and arguments
########################################################################
genpup_args=
gentests_args=
if test -n "$YAKSA_AUTOGEN_PUP_NESTING" ; then
genpup_args=$YAKSA_AUTOGEN_PUP_NESTING
fi
for arg in "$@" ; do
case $arg in
-pup-max-nesting=*|--pup-max-nesting=*)
genpup_args="$genpup_args $arg"
;;
-skip-test-complex)
gentests_args="$gentests_args $arg"
;;
*)
error "unknown argument $arg"
;;
esac
done
########################################################################
## Generating required files
########################################################################
# backend pup functions
for x in seq cuda ze hip ; do
echo_n "generating backend pup functions for ${x}... "
./src/backend/${x}/genpup.py ${genpup_args}
if test "$?" = "0" ; then
echo "done"
else
echo "failed"
exit 1
fi
done
# tests
./maint/gentests.py ${gentests_args}
if test "$?" != "0" ; then
echo "test generation failed"
exit 1
fi
########################################################################
## Autotools
########################################################################
# generate configure files
echo
echo "=== generating configure files in main directory ==="
autoreconf -vif
if test "$?" = "0" ; then
echo "=== done === "
else
echo "=== failed === "
exit 1
fi
echo
########################################################################
## Building maint/Version
########################################################################
# build a substitute maint/Version script now that we store the single copy of
# this information in an m4 file for autoconf's benefit
echo_n "Generating a helper maint/Version... "
if autom4te -l M4sugar maint/Version.base.m4 > maint/Version ; then
echo "done"
else
echo "error"
error "unable to correctly generate maint/Version shell helper"
fi