Fri, 11 Apr 2025 16:48:58 +0200
fix allocator of some printf.h functions not being const - fixes #611
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
1 | #!/bin/sh | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
2 | |
| 
960
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
3 | |
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
4 | # some utility functions | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
5 | isplatform() | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
6 | { | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
7 | for p in $PLATFORM | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
8 | do | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
9 | if [ "$p" = "$1" ]; then | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
10 | return 0 | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
11 | fi | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
12 | done | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
13 | return 1 | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
14 | } | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
15 | notisplatform() | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
16 | { | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
17 | for p in $PLATFORM | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
18 | do | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
19 | if [ "$p" = "$1" ]; then | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
20 | return 1 | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
21 | fi | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
22 | done | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
23 | return 0 | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
24 | } | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
25 | istoolchain() | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
26 | { | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
27 | for t in $TOOLCHAIN | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
28 | do | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
29 | if [ "$t" = "$1" ]; then | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
30 | return 0 | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
31 | fi | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
32 | done | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
33 | return 1 | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
34 | } | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
35 | notistoolchain() | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
36 | { | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
37 | for t in $TOOLCHAIN | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
38 | do | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
39 | if [ "$t" = "$1" ]; then | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
40 | return 1 | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
41 | fi | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
42 | done | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
43 | return 0 | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
44 | } | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
45 | |
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
46 | # clean abort | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
47 | abort_configure() | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
48 | { | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
49 | rm -Rf "$TEMP_DIR" | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
50 | exit 1 | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
51 | } | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
52 | |
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
53 | # Test for availability of pkg-config | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
54 | PKG_CONFIG=`command -v pkg-config` | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
55 | : ${PKG_CONFIG:="false"} | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
56 | |
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
57 | # Simple uname based platform detection | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
58 | # $PLATFORM is used for platform dependent dependency selection | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
59 | OS=`uname -s` | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
60 | OS_VERSION=`uname -r` | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
61 | printf "detect platform... " | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
62 | if [ "$OS" = "SunOS" ]; then | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
63 | PLATFORM="solaris sunos unix svr4" | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
64 | elif [ "$OS" = "Linux" ]; then | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
65 | PLATFORM="linux unix" | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
66 | elif [ "$OS" = "FreeBSD" ]; then | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
67 | PLATFORM="freebsd bsd unix" | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
68 | elif [ "$OS" = "OpenBSD" ]; then | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
69 | PLATFORM="openbsd bsd unix" | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
70 | elif [ "$OS" = "NetBSD" ]; then | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
71 | PLATFORM="netbsd bsd unix" | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
72 | elif [ "$OS" = "Darwin" ]; then | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
73 | PLATFORM="macos osx bsd unix" | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
74 | elif echo "$OS" | grep -i "MINGW" > /dev/null; then | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
75 | PLATFORM="windows mingw" | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
76 | fi | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
77 | : ${PLATFORM:="unix"} | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
78 | |
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
79 | PLATFORM_NAME=`echo "$PLATFORM" | cut -f1 -d' ' -` | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
80 | echo "$PLATFORM_NAME" | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
81 | |
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
82 | |
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
83 | # help text | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
84 | printhelp() | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
85 | { | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
86 | echo "Usage: $0 [OPTIONS]..." | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
87 | cat << __EOF__ | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
88 | Installation directories: | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
89 | --prefix=PREFIX path prefix for architecture-independent files | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
90 | [$prefix] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
91 | --exec-prefix=EPREFIX path prefix for architecture-dependent files | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
92 | [PREFIX] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
93 | |
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
94 | --bindir=DIR user executables [EPREFIX/bin] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
95 | --sbindir=DIR system admin executables [EPREFIX/sbin] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
96 | --libexecdir=DIR program executables [EPREFIX/libexec] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
97 | --sysconfdir=DIR system configuration files [PREFIX/etc] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
98 | --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
99 | --localstatedir=DIR modifiable single-machine data [PREFIX/var] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
100 | --runstatedir=DIR run-time variable data [LOCALSTATEDIR/run] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
101 | --libdir=DIR object code libraries [EPREFIX/lib] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
102 | --includedir=DIR C header files [PREFIX/include] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
103 | --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
104 | --datadir=DIR read-only architecture-independent data [DATAROOTDIR] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
105 | --infodir=DIR info documentation [DATAROOTDIR/info] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
106 | --mandir=DIR man documentation [DATAROOTDIR/man] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
107 | --localedir=DIR locale-dependent data [DATAROOTDIR/locale] | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
108 | |
| 
1017
 
b0098854071f
add check for C23 compatibility
 
Mike Becker <universe@uap-core.de> 
parents: 
990 
diff
changeset
 | 
109 | Build Types: | 
| 
 
b0098854071f
add check for C23 compatibility
 
Mike Becker <universe@uap-core.de> 
parents: 
990 
diff
changeset
 | 
110 | --debug add extra compile flags for debug builds | 
| 
 
b0098854071f
add check for C23 compatibility
 
Mike Becker <universe@uap-core.de> 
parents: 
990 
diff
changeset
 | 
111 | --release add extra compile flags for release builds | 
| 
 
b0098854071f
add check for C23 compatibility
 
Mike Becker <universe@uap-core.de> 
parents: 
990 
diff
changeset
 | 
112 | |
| 
960
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
113 | Optional Features: | 
| 
1140
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
114 | --enable-api-docs | 
| 
960
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
115 | --enable-coverage | 
| 
988
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
116 | --disable-cxx-tests the check-cxx makefile target | 
| 
987
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
117 | --disable-szmul-builtin use custom implementation, instead | 
| 
960
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
118 | |
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
119 | __EOF__ | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
120 | } | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
121 | |
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
122 | # create temporary directory | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
123 | TEMP_DIR=".tmp-`uname -n`" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
124 | rm -Rf "$TEMP_DIR" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
125 | if mkdir -p "$TEMP_DIR"; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
126 | : | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
127 | else | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
128 | echo "Cannot create tmp dir $TEMP_DIR" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
129 | echo "Abort" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
130 | exit 1 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
131 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
132 | touch "$TEMP_DIR/options" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
133 | touch "$TEMP_DIR/features" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
134 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
135 | # define standard variables | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
136 | # also define standard prefix (this is where we will search for config.site) | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
137 | prefix=/usr | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
138 | exec_prefix= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
139 | bindir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
140 | sbindir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
141 | libdir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
142 | libexecdir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
143 | datarootdir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
144 | datadir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
145 | sysconfdir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
146 | sharedstatedir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
147 | localstatedir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
148 | runstatedir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
149 | includedir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
150 | infodir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
151 | localedir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
152 | mandir= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
153 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
154 | # custom variables | 
| 
960
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
155 | if true \ | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
156 | ; then | 
| 
1064
 
f3b04cd60776
change coverage tool from gcov to gcovr
 
Mike Becker <universe@uap-core.de> 
parents: 
1017 
diff
changeset
 | 
157 | root_dir=`pwd` | 
| 
960
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
158 | DOXYGEN=`command -v doxygen` | 
| 
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
159 | fi | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
160 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
161 | # features | 
| 
988
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
162 | FEATURE_CXX_TESTS=auto | 
| 
987
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
163 | FEATURE_SZMUL_BUILTIN=auto | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
164 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
165 | # | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
166 | # parse arguments | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
167 | # | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
168 | BUILD_TYPE="default" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
169 | for ARG in "$@" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
170 | do | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
171 | case "$ARG" in | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
172 | "--prefix="*) prefix=${ARG#--prefix=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
173 | "--exec-prefix="*) exec_prefix=${ARG#--exec-prefix=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
174 | "--bindir="*) bindir=${ARG#----bindir=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
175 | "--sbindir="*) sbindir=${ARG#--sbindir=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
176 | "--libdir="*) libdir=${ARG#--libdir=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
177 | "--libexecdir="*) libexecdir=${ARG#--libexecdir=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
178 | "--datarootdir="*) datarootdir=${ARG#--datarootdir=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
179 | "--datadir="*) datadir=${ARG#--datadir=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
180 | "--sysconfdir="*) sysconfdir=${ARG#--sysconfdir=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
181 | "--sharedstatedir="*) sharedstatedir=${ARG#--sharedstatedir=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
182 | "--localstatedir="*) localstatedir=${ARG#--localstatedir=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
183 | "--includedir="*) includedir=${ARG#--includedir=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
184 | "--infodir="*) infodir=${ARG#--infodir=} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
185 | "--mandir"*) mandir=${ARG#--mandir} ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
186 | "--localedir"*) localedir=${ARG#--localedir} ;; | 
| 
1017
 
b0098854071f
add check for C23 compatibility
 
Mike Becker <universe@uap-core.de> 
parents: 
990 
diff
changeset
 | 
187 | "--help"*) printhelp; abort_configure ;; | 
| 
 
b0098854071f
add check for C23 compatibility
 
Mike Becker <universe@uap-core.de> 
parents: 
990 
diff
changeset
 | 
188 | "--debug") BUILD_TYPE="debug" ;; | 
| 
 
b0098854071f
add check for C23 compatibility
 
Mike Becker <universe@uap-core.de> 
parents: 
990 
diff
changeset
 | 
189 | "--release") BUILD_TYPE="release" ;; | 
| 
1140
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
190 | "--enable-api-docs") FEATURE_API_DOCS=on ;; | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
191 | "--disable-api-docs") unset FEATURE_API_DOCS ;; | 
| 
772
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
192 | "--enable-coverage") FEATURE_COVERAGE=on ;; | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
193 | "--disable-coverage") unset FEATURE_COVERAGE ;; | 
| 
988
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
194 | "--enable-cxx-tests") FEATURE_CXX_TESTS=on ;; | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
195 | "--disable-cxx-tests") unset FEATURE_CXX_TESTS ;; | 
| 
987
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
196 | "--enable-szmul-builtin") FEATURE_SZMUL_BUILTIN=on ;; | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
197 | "--disable-szmul-builtin") unset FEATURE_SZMUL_BUILTIN ;; | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
198 | "-"*) echo "unknown option: $ARG"; abort_configure ;; | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
199 | esac | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
200 | done | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
201 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
202 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
203 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
204 | # set defaults for dir variables | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
205 | : ${exec_prefix:="$prefix"} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
206 | : ${bindir:='${exec_prefix}/bin'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
207 | : ${sbindir:='${exec_prefix}/sbin'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
208 | : ${libdir:='${exec_prefix}/lib'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
209 | : ${libexecdir:='${exec_prefix}/libexec'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
210 | : ${datarootdir:='${prefix}/share'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
211 | : ${datadir:='${datarootdir}'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
212 | : ${sysconfdir:='${prefix}/etc'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
213 | : ${sharedstatedir:='${prefix}/com'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
214 | : ${localstatedir:='${prefix}/var'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
215 | : ${runstatedir:='${localstatedir}/run'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
216 | : ${includedir:='${prefix}/include'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
217 | : ${infodir:='${datarootdir}/info'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
218 | : ${mandir:='${datarootdir}/man'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
219 | : ${localedir:='${datarootdir}/locale'} | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
220 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
221 | # check if a config.site exists and load it | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
222 | if [ -n "$CONFIG_SITE" ]; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
223 | # CONFIG_SITE may contain space separated file names | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
224 | for cs in $CONFIG_SITE; do | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
225 | printf "loading defaults from $cs... " | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
226 | . "$cs" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
227 | echo ok | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
228 | done | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
229 | elif [ -f "$prefix/share/config.site" ]; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
230 | printf "loading site defaults... " | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
231 | . "$prefix/share/config.site" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
232 | echo ok | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
233 | elif [ -f "$prefix/etc/config.site" ]; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
234 | printf "loading site defaults... " | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
235 | . "$prefix/etc/config.site" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
236 | echo ok | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
237 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
238 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
239 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
240 | # generate vars.mk | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
241 | cat > "$TEMP_DIR/vars.mk" << __EOF__ | 
| 
821
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
242 | prefix=$prefix | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
243 | exec_prefix=$exec_prefix | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
244 | bindir=$bindir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
245 | sbindir=$sbindir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
246 | libdir=$libdir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
247 | libexecdir=$libexecdir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
248 | datarootdir=$datarootdir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
249 | datadir=$datadir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
250 | sysconfdir=$sysconfdir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
251 | sharedstatedir=$sharedstatedir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
252 | localstatedir=$localstatedir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
253 | runstatedir=$runstatedir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
254 | includedir=$includedir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
255 | infodir=$infodir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
256 | mandir=$mandir | 
| 
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
257 | localedir=$localedir | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
258 | __EOF__ | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
259 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
260 | # toolchain detection utilities | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
261 | . make/toolchain.sh | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
262 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
263 | # | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
264 | # DEPENDENCIES | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
265 | # | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
266 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
267 | # check languages | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
268 | lang_c= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
269 | lang_cpp= | 
| 
988
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
270 | if detect_cpp_compiler ; then | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
271 | lang_cpp=1 | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
272 | fi | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
273 | if detect_c_compiler ; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
274 | lang_c=1 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
275 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
276 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
277 | # create buffer for make variables required by dependencies | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
278 | echo > "$TEMP_DIR/make.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
279 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
280 | test_pkg_config() | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
281 | { | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
282 | if "$PKG_CONFIG" --exists "$1" ; then : | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
283 | else return 1 ; fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
284 | if [ -z "$2" ] || "$PKG_CONFIG" --atleast-version="$2" "$1" ; then : | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
285 | else return 1 ; fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
286 | if [ -z "$3" ] || "$PKG_CONFIG" --exact-version="$3" "$1" ; then : | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
287 | else return 1 ; fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
288 | if [ -z "$4" ] || "$PKG_CONFIG" --max-version="$4" "$1" ; then : | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
289 | else return 1 ; fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
290 | return 0 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
291 | } | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
292 | |
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
293 | print_check_msg() | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
294 | { | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
295 | if [ -z "$1" ]; then | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
296 | shift | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
297 | printf "$@" | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
298 | fi | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
299 | } | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
300 | |
| 
772
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
301 | dependency_error_coverage() | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
302 | { | 
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
303 | print_check_msg "$dep_checked_coverage" "checking for coverage... " | 
| 
960
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
304 | # dependency coverage toolchain="gcc" | 
| 
772
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
305 | while true | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
306 | do | 
| 
960
 
a8a5f3dd5c3d
test coverage does not really work with clang
 
Mike Becker <universe@uap-core.de> 
parents: 
842 
diff
changeset
 | 
307 | if notistoolchain "gcc"; then | 
| 
815
 
b0c4750cecd8
update uwproj and check toolchain dependency for coverage flags - fixes #345
 
Mike Becker <universe@uap-core.de> 
parents: 
796 
diff
changeset
 | 
308 | break | 
| 
 
b0c4750cecd8
update uwproj and check toolchain dependency for coverage flags - fixes #345
 
Mike Becker <universe@uap-core.de> 
parents: 
796 
diff
changeset
 | 
309 | fi | 
| 
1064
 
f3b04cd60776
change coverage tool from gcov to gcovr
 
Mike Becker <universe@uap-core.de> 
parents: 
1017 
diff
changeset
 | 
310 | if command -v gcovr > /dev/null ; then | 
| 
 
f3b04cd60776
change coverage tool from gcov to gcovr
 
Mike Becker <universe@uap-core.de> 
parents: 
1017 
diff
changeset
 | 
311 | : | 
| 
 
f3b04cd60776
change coverage tool from gcov to gcovr
 
Mike Becker <universe@uap-core.de> 
parents: 
1017 
diff
changeset
 | 
312 | else | 
| 
 
f3b04cd60776
change coverage tool from gcov to gcovr
 
Mike Becker <universe@uap-core.de> 
parents: 
1017 
diff
changeset
 | 
313 | break | 
| 
 
f3b04cd60776
change coverage tool from gcov to gcovr
 
Mike Becker <universe@uap-core.de> 
parents: 
1017 
diff
changeset
 | 
314 | fi | 
| 
788
 
b34ff44e6433
move coverage flags to make/*.mk files - relates to #345
 
Mike Becker <universe@uap-core.de> 
parents: 
772 
diff
changeset
 | 
315 | TEMP_CFLAGS="$TEMP_CFLAGS \${COVERAGE_CFLAGS}" | 
| 
 
b34ff44e6433
move coverage flags to make/*.mk files - relates to #345
 
Mike Becker <universe@uap-core.de> 
parents: 
772 
diff
changeset
 | 
316 | TEMP_LDFLAGS="$TEMP_LDFLAGS \${COVERAGE_LDFLAGS}" | 
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
317 | print_check_msg "$dep_checked_coverage" "yes\n" | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
318 | dep_checked_coverage=1 | 
| 
772
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
319 | return 1 | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
320 | done | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
321 | |
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
322 | print_check_msg "$dep_checked_coverage" "no\n" | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
323 | dep_checked_coverage=1 | 
| 
772
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
324 | return 0 | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
325 | } | 
| 
988
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
326 | dependency_error_cxx() | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
327 | { | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
328 | print_check_msg "$dep_checked_cxx" "checking for cxx... " | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
329 | # dependency cxx | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
330 | while true | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
331 | do | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
332 | if [ -z "$lang_cpp" ] ; then | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
333 | break | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
334 | fi | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
335 | print_check_msg "$dep_checked_cxx" "yes\n" | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
336 | dep_checked_cxx=1 | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
337 | return 1 | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
338 | done | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
339 | |
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
340 | print_check_msg "$dep_checked_cxx" "no\n" | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
341 | dep_checked_cxx=1 | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
342 | return 0 | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
343 | } | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
344 | dependency_error_c() | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
345 | { | 
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
346 | print_check_msg "$dep_checked_c" "checking for c... " | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
347 | # dependency c platform="mingw" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
348 | while true | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
349 | do | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
350 | if notisplatform "mingw"; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
351 | break | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
352 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
353 | if [ -z "$lang_c" ] ; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
354 | break | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
355 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
356 | cat >> $TEMP_DIR/make.mk << __EOF__ | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
357 | # Dependency: c | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
358 | AR=ar | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
359 | ARFLAGS=r | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
360 | STLIB_EXT=.lib | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
361 | SHLIB_EXT=.dll | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
362 | __EOF__ | 
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
363 | print_check_msg "$dep_checked_c" "yes\n" | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
364 | dep_checked_c=1 | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
365 | return 1 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
366 | done | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
367 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
368 | # dependency c platform="macos" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
369 | while true | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
370 | do | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
371 | if notisplatform "macos"; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
372 | break | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
373 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
374 | if [ -z "$lang_c" ] ; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
375 | break | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
376 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
377 | cat >> $TEMP_DIR/make.mk << __EOF__ | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
378 | # Dependency: c | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
379 | AR=ar | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
380 | ARFLAGS=r | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
381 | STLIB_EXT=.a | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
382 | SHLIB_EXT=.dylib | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
383 | __EOF__ | 
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
384 | print_check_msg "$dep_checked_c" "yes\n" | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
385 | dep_checked_c=1 | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
386 | return 1 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
387 | done | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
388 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
389 | # dependency c platform="unix" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
390 | while true | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
391 | do | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
392 | if notisplatform "unix"; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
393 | break | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
394 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
395 | if [ -z "$lang_c" ] ; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
396 | break | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
397 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
398 | cat >> $TEMP_DIR/make.mk << __EOF__ | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
399 | # Dependency: c | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
400 | AR=ar | 
| 
982
 
7a88b8a05ae1
add -c flag to ARFLAGS to suppress diagnostic message on stderr
 
Mike Becker <universe@uap-core.de> 
parents: 
979 
diff
changeset
 | 
401 | ARFLAGS=cr | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
402 | STLIB_EXT=.a | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
403 | SHLIB_EXT=.so | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
404 | __EOF__ | 
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
405 | print_check_msg "$dep_checked_c" "yes\n" | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
406 | dep_checked_c=1 | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
407 | return 1 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
408 | done | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
409 | |
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
410 | print_check_msg "$dep_checked_c" "no\n" | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
411 | dep_checked_c=1 | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
412 | return 0 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
413 | } | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
414 | dependency_error_file_tools() | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
415 | { | 
| 
821
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
416 | print_check_msg "$dep_checked_file_tools" "checking for file_tools... " | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
417 | # dependency file-tools | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
418 | while true | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
419 | do | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
420 | cat >> $TEMP_DIR/make.mk << __EOF__ | 
| 
821
 
5e6f15005efd
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
815 
diff
changeset
 | 
421 | # Dependency: file_tools | 
| 
754
 
4bc7d966c9db
add an uwproj based install target
 
Mike Becker <universe@uap-core.de> 
parents: 
753 
diff
changeset
 | 
422 | MKDIR=/bin/mkdir -p | 
| 
 
4bc7d966c9db
add an uwproj based install target
 
Mike Becker <universe@uap-core.de> 
parents: 
753 
diff
changeset
 | 
423 | RMFILE=/bin/rm -f | 
| 
 
4bc7d966c9db
add an uwproj based install target
 
Mike Becker <universe@uap-core.de> 
parents: 
753 
diff
changeset
 | 
424 | RMDIR=/bin/rm -f -R | 
| 
 
4bc7d966c9db
add an uwproj based install target
 
Mike Becker <universe@uap-core.de> 
parents: 
753 
diff
changeset
 | 
425 | COPYFILE=/bin/cp -f | 
| 
 
4bc7d966c9db
add an uwproj based install target
 
Mike Becker <universe@uap-core.de> 
parents: 
753 
diff
changeset
 | 
426 | COPYALL=/bin/cp -f -R | 
| 
 
4bc7d966c9db
add an uwproj based install target
 
Mike Becker <universe@uap-core.de> 
parents: 
753 
diff
changeset
 | 
427 | SYMLINK=/bin/ln -s | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
428 | __EOF__ | 
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
429 | print_check_msg "$dep_checked_file_tools" "yes\n" | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
430 | dep_checked_file_tools=1 | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
431 | return 1 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
432 | done | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
433 | |
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
434 | print_check_msg "$dep_checked_file_tools" "no\n" | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
435 | dep_checked_file_tools=1 | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
436 | return 0 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
437 | } | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
438 | dependency_error_doxygen() | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
439 | { | 
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
440 | print_check_msg "$dep_checked_doxygen" "checking for doxygen... " | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
441 | # dependency doxygen | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
442 | while true | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
443 | do | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
444 | if test -n "$DOXYGEN" > /dev/null ; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
445 | : | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
446 | else | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
447 | break | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
448 | fi | 
| 
979
 
bbae1ebf309b
fix broken docs target after uwproj update
 
Mike Becker <universe@uap-core.de> 
parents: 
960 
diff
changeset
 | 
449 | cat >> $TEMP_DIR/make.mk << __EOF__ | 
| 
 
bbae1ebf309b
fix broken docs target after uwproj update
 
Mike Becker <universe@uap-core.de> 
parents: 
960 
diff
changeset
 | 
450 | # Dependency: doxygen | 
| 
 
bbae1ebf309b
fix broken docs target after uwproj update
 
Mike Becker <universe@uap-core.de> 
parents: 
960 
diff
changeset
 | 
451 | DOXYGEN=$DOXYGEN | 
| 
 
bbae1ebf309b
fix broken docs target after uwproj update
 
Mike Becker <universe@uap-core.de> 
parents: 
960 
diff
changeset
 | 
452 | __EOF__ | 
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
453 | print_check_msg "$dep_checked_doxygen" "yes\n" | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
454 | dep_checked_doxygen=1 | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
455 | return 1 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
456 | done | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
457 | |
| 
796
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
458 | print_check_msg "$dep_checked_doxygen" "no\n" | 
| 
 
fec90b848f4b
update uwproj configure template
 
Mike Becker <universe@uap-core.de> 
parents: 
788 
diff
changeset
 | 
459 | dep_checked_doxygen=1 | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
460 | return 0 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
461 | } | 
| 
990
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
462 | dependency_error_no_coverage() | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
463 | { | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
464 | print_check_msg "$dep_checked_no_coverage" "checking for no_coverage... " | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
465 | # dependency no_coverage | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
466 | while true | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
467 | do | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
468 | if test -z "$FEATURE_COVERAGE" > /dev/null ; then | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
469 | : | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
470 | else | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
471 | break | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
472 | fi | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
473 | print_check_msg "$dep_checked_no_coverage" "yes\n" | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
474 | dep_checked_no_coverage=1 | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
475 | return 1 | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
476 | done | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
477 | |
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
478 | print_check_msg "$dep_checked_no_coverage" "no\n" | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
479 | dep_checked_no_coverage=1 | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
480 | return 0 | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
481 | } | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
482 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
483 | # start collecting dependency information | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
484 | echo > "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
485 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
486 | DEPENDENCIES_FAILED= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
487 | ERROR=0 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
488 | # unnamed dependencies | 
| 
1017
 
b0098854071f
add check for C23 compatibility
 
Mike Becker <universe@uap-core.de> 
parents: 
990 
diff
changeset
 | 
489 | TEMP_CFLAGS="$CFLAGS" | 
| 
 
b0098854071f
add check for C23 compatibility
 
Mike Becker <universe@uap-core.de> 
parents: 
990 
diff
changeset
 | 
490 | TEMP_CXXFLAGS="$CXXFLAGS" | 
| 
 
b0098854071f
add check for C23 compatibility
 
Mike Becker <universe@uap-core.de> 
parents: 
990 
diff
changeset
 | 
491 | TEMP_LDFLAGS="$LDFLAGS" | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
492 | while true | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
493 | do | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
494 | while true | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
495 | do | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
496 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
497 | cat >> "$TEMP_DIR/make.mk" << __EOF__ | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
498 | # library version | 
| 
1280
 
60123b3db06e
start development of UCX 3.2
 
Mike Becker <universe@uap-core.de> 
parents: 
1140 
diff
changeset
 | 
499 | VERSION=3.2.0 | 
| 
 
60123b3db06e
start development of UCX 3.2
 
Mike Becker <universe@uap-core.de> 
parents: 
1140 
diff
changeset
 | 
500 | LIBVERSION=5.1.0 | 
| 
825
 
3f324ea53152
be honest at least in the lib version
 
Mike Becker <universe@uap-core.de> 
parents: 
821 
diff
changeset
 | 
501 | LIBVERSION_MAJOR=5 | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
502 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
503 | # build directory structure !! do not change or override !! | 
| 
1064
 
f3b04cd60776
change coverage tool from gcov to gcovr
 
Mike Becker <universe@uap-core.de> 
parents: 
1017 
diff
changeset
 | 
504 | root_dir=${root_dir} | 
| 
 
f3b04cd60776
change coverage tool from gcov to gcovr
 
Mike Becker <universe@uap-core.de> 
parents: 
1017 
diff
changeset
 | 
505 | build_dir=${root_dir}/build | 
| 
 
f3b04cd60776
change coverage tool from gcov to gcovr
 
Mike Becker <universe@uap-core.de> 
parents: 
1017 
diff
changeset
 | 
506 | docs_dir=${root_dir}/build/docs | 
| 
 
f3b04cd60776
change coverage tool from gcov to gcovr
 
Mike Becker <universe@uap-core.de> 
parents: 
1017 
diff
changeset
 | 
507 | dist_dir=${root_dir}/dist | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
508 | __EOF__ | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
509 | break | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
510 | done | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
511 | break | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
512 | done | 
| 
842
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
513 | while true | 
| 
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
514 | do | 
| 
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
515 | if notisplatform "solaris"; then | 
| 
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
516 | break | 
| 
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
517 | fi | 
| 
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
518 | while true | 
| 
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
519 | do | 
| 
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
520 | |
| 
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
521 | TEMP_LDFLAGS="$TEMP_LDFLAGS -lm" | 
| 
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
522 | break | 
| 
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
523 | done | 
| 
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
524 | break | 
| 
 
b48cbfa109d4
add -lm to ldflags on Solaris
 
Olaf Wintermann <olaf.wintermann@gmail.com> 
parents: 
825 
diff
changeset
 | 
525 | done | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
526 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
527 | # add general dependency flags to flags.mk | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
528 | echo "# general flags" >> "$TEMP_DIR/flags.mk" | 
| 
815
 
b0c4750cecd8
update uwproj and check toolchain dependency for coverage flags - fixes #345
 
Mike Becker <universe@uap-core.de> 
parents: 
796 
diff
changeset
 | 
529 | if [ -n "${TEMP_CFLAGS}" ] && [ -n "$lang_c" ]; then | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
530 | echo "CFLAGS += $TEMP_CFLAGS" >> "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
531 | fi | 
| 
815
 
b0c4750cecd8
update uwproj and check toolchain dependency for coverage flags - fixes #345
 
Mike Becker <universe@uap-core.de> 
parents: 
796 
diff
changeset
 | 
532 | if [ -n "${TEMP_CXXFLAGS}" ] && [ -n "$lang_cpp" ]; then | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
533 | echo "CXXFLAGS += $TEMP_CXXFLAGS" >> "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
534 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
535 | if [ -n "${TEMP_LDFLAGS}" ]; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
536 | echo "LDFLAGS += $TEMP_LDFLAGS" >> "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
537 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
538 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
539 | # | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
540 | # OPTION VALUES | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
541 | # | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
542 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
543 | # | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
544 | # TARGETS | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
545 | # | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
546 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
547 | echo >> "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
548 | echo "configuring global target" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
549 | echo "# flags for unnamed target" >> "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
550 | TEMP_CFLAGS= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
551 | TEMP_CXXFLAGS= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
552 | TEMP_LDFLAGS= | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
553 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
554 | if dependency_error_c; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
555 | DEPENDENCIES_FAILED="$DEPENDENCIES_FAILED c " | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
556 | ERROR=1 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
557 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
558 | if dependency_error_file_tools; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
559 | DEPENDENCIES_FAILED="$DEPENDENCIES_FAILED file_tools " | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
560 | ERROR=1 | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
561 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
562 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
563 | # Features | 
| 
1140
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
564 | if [ -n "$FEATURE_API_DOCS" ]; then | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
565 | # check dependency | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
566 | if dependency_error_doxygen ; then | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
567 | # "auto" features can fail and are just disabled in this case | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
568 | if [ "$FEATURE_API_DOCS" = "auto" ]; then | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
569 | DISABLE_FEATURE_API_DOCS=1 | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
570 | else | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
571 | DEPENDENCIES_FAILED="$DEPENDENCIES_FAILED doxygen " | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
572 | ERROR=1 | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
573 | fi | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
574 | fi | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
575 | if [ -n "$DISABLE_FEATURE_API_DOCS" ]; then | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
576 | unset FEATURE_API_DOCS | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
577 | fi | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
578 | fi | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
579 | if [ -n "$FEATURE_API_DOCS" ]; then | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
580 | : | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
581 | cat >> "$TEMP_DIR/make.mk" << __EOF__ | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
582 | # Documentation | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
583 | WITH_API_DOCS=yes | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
584 | __EOF__ | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
585 | else | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
586 | : | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
587 | fi | 
| 
772
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
588 | if [ -n "$FEATURE_COVERAGE" ]; then | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
589 | # check dependency | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
590 | if dependency_error_coverage ; then | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
591 | # "auto" features can fail and are just disabled in this case | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
592 | if [ "$FEATURE_COVERAGE" = "auto" ]; then | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
593 | DISABLE_FEATURE_COVERAGE=1 | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
594 | else | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
595 | DEPENDENCIES_FAILED="$DEPENDENCIES_FAILED coverage " | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
596 | ERROR=1 | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
597 | fi | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
598 | fi | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
599 | if [ -n "$DISABLE_FEATURE_COVERAGE" ]; then | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
600 | unset FEATURE_COVERAGE | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
601 | fi | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
602 | fi | 
| 
987
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
603 | if [ -n "$FEATURE_COVERAGE" ]; then | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
604 | : | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
605 | else | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
606 | : | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
607 | fi | 
| 
988
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
608 | if [ -n "$FEATURE_CXX_TESTS" ]; then | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
609 | # check dependency | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
610 | if dependency_error_cxx ; then | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
611 | # "auto" features can fail and are just disabled in this case | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
612 | if [ "$FEATURE_CXX_TESTS" = "auto" ]; then | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
613 | DISABLE_FEATURE_CXX_TESTS=1 | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
614 | else | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
615 | DEPENDENCIES_FAILED="$DEPENDENCIES_FAILED cxx " | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
616 | ERROR=1 | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
617 | fi | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
618 | fi | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
619 | if [ -n "$DISABLE_FEATURE_CXX_TESTS" ]; then | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
620 | unset FEATURE_CXX_TESTS | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
621 | fi | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
622 | fi | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
623 | if [ -n "$FEATURE_CXX_TESTS" ]; then | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
624 | : | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
625 | cat >> "$TEMP_DIR/make.mk" << __EOF__ | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
626 | # Enable the check-cxx target | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
627 | WITH_CXX_TEST=yes | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
628 | __EOF__ | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
629 | else | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
630 | : | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
631 | fi | 
| 
987
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
632 | if [ -n "$FEATURE_SZMUL_BUILTIN" ]; then | 
| 
990
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
633 | # check dependency | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
634 | if dependency_error_no_coverage ; then | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
635 | # "auto" features can fail and are just disabled in this case | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
636 | if [ "$FEATURE_SZMUL_BUILTIN" = "auto" ]; then | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
637 | DISABLE_FEATURE_SZMUL_BUILTIN=1 | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
638 | else | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
639 | DEPENDENCIES_FAILED="$DEPENDENCIES_FAILED no_coverage " | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
640 | ERROR=1 | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
641 | fi | 
| 
 
f708863e7ec6
automatically disable szmul builtin when testing with coverage
 
Mike Becker <universe@uap-core.de> 
parents: 
988 
diff
changeset
 | 
642 | fi | 
| 
987
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
643 | if [ -n "$DISABLE_FEATURE_SZMUL_BUILTIN" ]; then | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
644 | unset FEATURE_SZMUL_BUILTIN | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
645 | fi | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
646 | fi | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
647 | if [ -n "$FEATURE_SZMUL_BUILTIN" ]; then | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
648 | : | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
649 | else | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
650 | : | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
651 | TEMP_CFLAGS="$TEMP_CFLAGS -DCX_NO_SZMUL_BUILTIN" | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
652 | TEMP_CXXFLAGS="$TEMP_CXXFLAGS -DCX_NO_SZMUL_BUILTIN" | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
653 | fi | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
654 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
655 | |
| 
815
 
b0c4750cecd8
update uwproj and check toolchain dependency for coverage flags - fixes #345
 
Mike Becker <universe@uap-core.de> 
parents: 
796 
diff
changeset
 | 
656 | if [ -n "${TEMP_CFLAGS}" ] && [ -n "$lang_c" ]; then | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
657 | echo "CFLAGS += $TEMP_CFLAGS" >> "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
658 | fi | 
| 
815
 
b0c4750cecd8
update uwproj and check toolchain dependency for coverage flags - fixes #345
 
Mike Becker <universe@uap-core.de> 
parents: 
796 
diff
changeset
 | 
659 | if [ -n "${TEMP_CXXFLAGS}" ] && [ -n "$lang_cpp" ]; then | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
660 | echo "CXXFLAGS += $TEMP_CXXFLAGS" >> "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
661 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
662 | if [ "$BUILD_TYPE" = "debug" ]; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
663 | if [ -n "$lang_c" ]; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
664 | echo 'CFLAGS += ${DEBUG_CC_FLAGS}' >> "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
665 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
666 | if [ -n "$lang_cpp" ]; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
667 | echo 'CXXFLAGS += ${DEBUG_CXX_FLAGS}' >> "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
668 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
669 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
670 | if [ "$BUILD_TYPE" = "release" ]; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
671 | if [ -n "$lang_c" ]; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
672 | echo 'CFLAGS += ${RELEASE_CC_FLAGS}' >> "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
673 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
674 | if [ -n "$lang_cpp" ]; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
675 | echo 'CXXFLAGS += ${RELEASE_CXX_FLAGS}' >> "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
676 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
677 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
678 | if [ -n "${TEMP_LDFLAGS}" ]; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
679 | echo "LDFLAGS += $TEMP_LDFLAGS" >> "$TEMP_DIR/flags.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
680 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
681 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
682 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
683 | # final result | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
684 | if [ $ERROR -ne 0 ]; then | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
685 | echo | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
686 | echo "Error: Unresolved dependencies" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
687 | echo "$DEPENDENCIES_FAILED" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
688 | abort_configure | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
689 | fi | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
690 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
691 | echo "configure finished" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
692 | echo | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
693 | echo "Build Config:" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
694 | echo " PREFIX: $prefix" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
695 | echo " TOOLCHAIN: $TOOLCHAIN_NAME" | 
| 
772
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
696 | echo "Features:" | 
| 
1140
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
697 | if [ -n "$FEATURE_API_DOCS" ]; then | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
698 | echo " api-docs: on" | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
699 | else | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
700 | echo " api-docs: off" | 
| 
 
88a9ee79c102
start overhauling the entire web documentation
 
Mike Becker <universe@uap-core.de> 
parents: 
1064 
diff
changeset
 | 
701 | fi | 
| 
772
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
702 | if [ -n "$FEATURE_COVERAGE" ]; then | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
703 | echo " coverage: on" | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
704 | else | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
705 | echo " coverage: off" | 
| 
 
4586a84c0c0b
add coverage feature - relates to #342
 
Mike Becker <universe@uap-core.de> 
parents: 
766 
diff
changeset
 | 
706 | fi | 
| 
988
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
707 | if [ -n "$FEATURE_CXX_TESTS" ]; then | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
708 | echo " cxx-tests: on" | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
709 | else | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
710 | echo " cxx-tests: off" | 
| 
 
15b3ca7ee33f
make ucx C++ compatible again (and add tests for it) - fixes #486
 
Mike Becker <universe@uap-core.de> 
parents: 
987 
diff
changeset
 | 
711 | fi | 
| 
987
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
712 | if [ -n "$FEATURE_SZMUL_BUILTIN" ]; then | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
713 | echo " szmul-builtin: on" | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
714 | else | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
715 | echo " szmul-builtin: off" | 
| 
 
53e22f112b11
add configure option for szmul
 
Mike Becker <universe@uap-core.de> 
parents: 
982 
diff
changeset
 | 
716 | fi | 
| 
753
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
717 | echo | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
718 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
719 | # generate the config.mk file | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
720 | cat > "$TEMP_DIR/config.mk" << __EOF__ | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
721 | # | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
722 | # config.mk generated by configure | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
723 | # | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
724 | |
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
725 | __EOF__ | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
726 | write_toolchain_defaults "$TEMP_DIR/toolchain.mk" | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
727 | cat "$TEMP_DIR/vars.mk" "$TEMP_DIR/toolchain.mk" "$TEMP_DIR/flags.mk" "$TEMP_DIR/make.mk" > config.mk | 
| 
 
24dc84788dee
replace most of the build system with uwproj
 
Mike Becker <universe@uap-core.de> 
parents:  
diff
changeset
 | 
728 | rm -Rf "$TEMP_DIR" |