Tue, 04 Nov 2025 22:32:14 +0100
update uwproj
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
1 | #!/bin/sh |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
2 | # |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
3 | # toolchain detection |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
4 | # |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
5 | |
| 85 | 6 | TAIL=tail |
| 76 | 7 | if isplatform "bsd" && notisplatform "openbsd"; then |
| 8 | C_COMPILERS="clang gcc cc" | |
| 9 | CPP_COMPILERS="clang++ g++ CC" | |
| 85 | 10 | elif isplatform "solaris"; then |
| 11 | C_COMPILERS="cc suncc gcc clang" | |
| 12 | CPP_COMPILERS="CC sunCC g++ clang++" | |
| 13 | if [ -f /usr/xpg4/bin/tail ]; then | |
| 14 | TAIL=/usr/xpg4/bin/tail | |
| 15 | fi | |
| 76 | 16 | else |
| 85 | 17 | C_COMPILERS="gcc clang cc" |
| 18 | CPP_COMPILERS="g++ clang++ c++" | |
| 76 | 19 | fi |
| 20 | unset TOOLCHAIN | |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
21 | unset TOOLCHAIN_NAME |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
22 | unset TOOLCHAIN_CC |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
23 | unset TOOLCHAIN_CXX |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
24 | |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
25 | check_c_compiler() |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
26 | { |
| 76 | 27 | command -v $1 2>&1 >/dev/null |
| 28 | if [ $? -ne 0 ]; then | |
| 29 | return 1 | |
| 30 | fi | |
| 31 | cat > "$TEMP_DIR/test.c" << __EOF__ | |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
32 | /* test file */ |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
33 | #include <stdio.h> |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
34 | int main(int argc, char **argv) { |
| 76 | 35 | #if defined(_MSC_VER) |
| 36 | printf("toolchain:msc\n"); | |
| 37 | #elif defined(__clang__) | |
| 38 | printf("toolchain:clang gnuc\n"); | |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
39 | #elif defined(__GNUC__) |
| 76 | 40 | printf("toolchain:gcc gnuc\n"); |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
41 | #elif defined(__sun) |
| 76 | 42 | printf("toolchain:suncc\n"); |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
43 | #else |
| 76 | 44 | printf("toolchain:unknown\n"); |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
45 | #endif |
| 76 | 46 | printf("wsize:%d\n", (int)sizeof(void*)*8); |
| 47 | #ifdef __STDC_VERSION__ | |
| 48 | printf("stdcversion:%d\n", __STDC_VERSION__); | |
| 49 | #endif | |
| 50 | return 0; | |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
51 | } |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
52 | __EOF__ |
| 76 | 53 | rm -f "$TEMP_DIR/checkcc" |
| 54 | $1 -o "$TEMP_DIR/checkcc" $CFLAGS $LDFLAGS "$TEMP_DIR/test.c" 2> /dev/null | |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
55 | } |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
56 | |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
57 | check_cpp_compiler() |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
58 | { |
| 76 | 59 | command -v $1 2>&1 >/dev/null |
| 60 | if [ $? -ne 0 ]; then | |
| 61 | return 1 | |
| 62 | fi | |
| 63 | cat > "$TEMP_DIR/test.cpp" << __EOF__ | |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
64 | /* test file */ |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
65 | #include <iostream> |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
66 | int main(int argc, char **argv) { |
| 76 | 67 | #if defined(_MSC_VER) |
| 68 | std::cout << "toolchain:msc" << std::endl; | |
| 69 | #elif defined(__clang__) | |
| 70 | std::cout << "toolchain:clang gnuc" << std::endl; | |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
71 | #elif defined(__GNUC__) |
| 76 | 72 | std::cout << "toolchain:gcc gnuc" << std::endl; |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
73 | #elif defined(__sun) |
| 76 | 74 | std::cout << "toolchain:suncc" << std::endl; |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
75 | #else |
| 76 | 76 | std::cout << "toolchain:unknown" << std::endl; |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
77 | #endif |
| 76 | 78 | std::cout << "wsize:" << sizeof(void*)*8 << std::endl; |
| 79 | return 0; | |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
80 | } |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
81 | __EOF__ |
| 76 | 82 | rm -f "$TEMP_DIR/checkcc" |
| 83 | $1 -o "$TEMP_DIR/checkcc" $CXXFLAGS $LDFLAGS "$TEMP_DIR/test.cpp" 2> /dev/null | |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
84 | } |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
85 | |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
86 | create_libtest_source() |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
87 | { |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
88 | # $1: filename |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
89 | # $2: optional include |
| 76 | 90 | cat > "$TEMP_DIR/$1" << __EOF__ |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
91 | /* libtest file */ |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
92 | int main(int argc, char **argv) { |
| 76 | 93 | return 0; |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
94 | } |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
95 | __EOF__ |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
96 | if [ -n "$2" ]; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
97 | echo "#include <$2>" >> "$TEMP_DIR/$1" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
98 | fi |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
99 | } |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
100 | |
| 76 | 101 | parse_toolchain_properties() |
| 102 | { | |
| 103 | info_file="$1" | |
| 85 | 104 | TOOLCHAIN=`grep '^toolchain:' "$info_file" | $TAIL -c +11` |
| 76 | 105 | TOOLCHAIN_NAME=`echo "$TOOLCHAIN" | cut -f1 -d' ' -` |
| 85 | 106 | TOOLCHAIN_WSIZE=`grep '^wsize:' "$info_file" | $TAIL -c +7` |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
107 | } |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
108 | |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
109 | detect_c_compiler() |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
110 | { |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
111 | if [ -n "$TOOLCHAIN_CC" ]; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
112 | return 0 |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
113 | fi |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
114 | printf "detect C compiler... " |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
115 | if [ -n "$CC" ]; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
116 | if check_c_compiler "$CC"; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
117 | TOOLCHAIN_CC=$CC |
| 76 | 118 | "$TEMP_DIR/checkcc" > "$TEMP_DIR/checkcc_out" |
| 119 | parse_toolchain_properties "$TEMP_DIR/checkcc_out" | |
| 85 | 120 | TOOLCHAIN_CSTD=`grep '^stdcversion:' "$TEMP_DIR/checkcc_out" | $TAIL -c +13` |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
121 | echo "$CC" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
122 | return 0 |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
123 | else |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
124 | echo "$CC is not a working C compiler" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
125 | return 1 |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
126 | fi |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
127 | else |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
128 | for COMP in $C_COMPILERS |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
129 | do |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
130 | if check_c_compiler "$COMP"; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
131 | TOOLCHAIN_CC=$COMP |
| 76 | 132 | "$TEMP_DIR/checkcc" > "$TEMP_DIR/checkcc_out" |
| 133 | parse_toolchain_properties "$TEMP_DIR/checkcc_out" | |
| 85 | 134 | TOOLCHAIN_CSTD=`grep '^stdcversion:' "$TEMP_DIR/checkcc_out" | $TAIL -c +13` |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
135 | echo "$COMP" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
136 | return 0 |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
137 | fi |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
138 | done |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
139 | echo "not found" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
140 | return 1 |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
141 | fi |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
142 | } |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
143 | |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
144 | detect_cpp_compiler() |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
145 | { |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
146 | if [ -n "$TOOLCHAIN_CXX" ]; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
147 | return 0 |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
148 | fi |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
149 | printf "detect C++ compiler... " |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
150 | |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
151 | if [ -n "$CXX" ]; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
152 | if check_cpp_compiler "$CXX"; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
153 | TOOLCHAIN_CXX=$CXX |
| 76 | 154 | "$TEMP_DIR/checkcc" > "$TEMP_DIR/checkcc_out" |
| 155 | parse_toolchain_properties "$TEMP_DIR/checkcc_out" | |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
156 | echo "$CXX" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
157 | return 0 |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
158 | else |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
159 | echo "$CXX is not a working C++ compiler" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
160 | return 1 |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
161 | fi |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
162 | else |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
163 | for COMP in $CPP_COMPILERS |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
164 | do |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
165 | if check_cpp_compiler "$COMP"; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
166 | TOOLCHAIN_CXX=$COMP |
| 76 | 167 | "$TEMP_DIR/checkcc" > "$TEMP_DIR/checkcc_out" |
| 168 | parse_toolchain_properties "$TEMP_DIR/checkcc_out" | |
|
71
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
169 | echo "$COMP" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
170 | return 0 |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
171 | fi |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
172 | done |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
173 | echo "${TOOLCHAIN_CXX:-"not found"}" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
174 | return 1 |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
175 | fi |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
176 | } |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
177 | |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
178 | write_toolchain_defaults() |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
179 | { |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
180 | echo "# toolchain" >> "$1" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
181 | if [ -n "$TOOLCHAIN_CC" ]; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
182 | echo "CC = ${TOOLCHAIN_CC}" >> "$1" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
183 | fi |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
184 | if [ -n "$TOOLCHAIN_CXX" ]; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
185 | echo "CXX = ${TOOLCHAIN_CXX}" >> "$1" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
186 | fi |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
187 | echo >> "$1" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
188 | if [ -f "make/${TOOLCHAIN_NAME}.mk" ]; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
189 | cat "make/${TOOLCHAIN_NAME}.mk" >> "$1" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
190 | elif [ -f "make/cc.mk" ]; then |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
191 | cat "make/cc.mk" >> "$1" |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
192 | else |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
193 | echo "!!! WARNING !!! Default toolchain flags not found. Configuration might be incomplete." |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
194 | fi |
|
0bdb910478cc
add uwproj configure script generator
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
195 | } |