author | greg |
Sat, 08 Dec 2007 15:01:14 +0100 | |
changeset 329 | 7717252e3ed9 |
parent 284 | 24bf3d692993 |
child 331 | da55aa2f9e64 |
permissions | -rwxr-xr-x |
275
7d5130f2f8ab
fix problem sh. Replace with bash in configure script. For msys, there is a bash version to download.
greg
parents:
267
diff
changeset
|
1 |
#!/bin/bash |
0 | 2 |
|
3 |
# |
|
4 |
# Copyright (C) 2004 Edouard TISSERRANT, Laurent BESSARD |
|
5 |
# Based on Gabriel Gerhardsson's cacheprobe configure script. |
|
6 |
# |
|
7 |
# This file is part of CanFestival, a library implementing CanOpen Stack. |
|
8 |
# |
|
9 |
# This library is free software; you can redistribute it and/or |
|
10 |
# modify it under the terms of the GNU Lesser General Public |
|
11 |
# License as published by the Free Software Foundation; either |
|
12 |
# version 2.1 of the License, or (at your option) any later version. |
|
13 |
# |
|
14 |
# This library is distributed in the hope that it will be useful, |
|
15 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
16 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
17 |
# Lesser General Public License for more details. |
|
18 |
# |
|
19 |
# You should have received a copy of the GNU Lesser General Public |
|
20 |
# License along with this library; if not, write to the Free Software |
|
21 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
22 |
# |
|
23 |
||
24 |
########################################################################### |
|
25 |
# DEFAULT CANFESTIVAL DEFINES # |
|
26 |
########################################################################### |
|
27 |
||
28 |
# Number of can bus to use |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
29 |
MAX_CAN_BUS_ID=1 |
0 | 30 |
|
31 |
# max bytes to transmit by SDO Put 4 if you only support expedited transfert. |
|
32 |
# For a normal transfert, (usually for a string), put the maximum string size to transfer. |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
33 |
SDO_MAX_LENGTH_TRANSFERT=32 |
0 | 34 |
|
35 |
# Number of SDO from differents nodes that the node can manage concurrently. |
|
36 |
# for a slave node, usually put 1. |
|
37 |
SDO_MAX_SIMULTANEOUS_TRANSFERTS=4 |
|
38 |
||
39 |
# Used for NMTable[bus][nodeId] |
|
40 |
# You can put less of 128 if on the netwo |
|
41 |
# are connected only smaller nodeId node. |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
42 |
NMT_MAX_NODE_ID=128 |
0 | 43 |
|
44 |
#Timeout in milliseconds for SDO. |
|
45 |
# Comment the #define if not used (infinite wait for SDO response message) |
|
46 |
SDO_TIMEOUT_MS=3000 |
|
47 |
||
48 |
MAX_NB_TIMER=32 |
|
49 |
||
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
50 |
# Generic timers declaration defaults |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
51 |
US_TO_TIMEVAL_FACTOR= |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
52 |
TIMEVAL= |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
53 |
TIMEVAL_MAX= |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
54 |
|
0 | 55 |
# Default to little-endian |
56 |
CANOPEN_BIG_ENDIAN= |
|
57 |
||
284 | 58 |
# Max number of active errors managed in error_data structure. |
59 |
EMCY_MAX_ERRORS=8 |
|
60 |
||
0 | 61 |
########################################################################### |
62 |
# DEFAULT BUILD OPTIONS # |
|
63 |
########################################################################### |
|
64 |
||
65 |
# Leave empty for automatic detection |
|
66 |
CC= |
|
329 | 67 |
CXX=g++ |
68 |
LD=ld |
|
0 | 69 |
|
70 |
#default target |
|
71 |
SUB_TARGET= |
|
72 |
||
73 |
# First compiler option - we will check if it exists |
|
74 |
CC1=gcc |
|
75 |
# Second compiler option - we will check if it exists |
|
76 |
CC2=cc |
|
77 |
||
78 |
# Install prefix |
|
79 |
SUB_PREFIX= |
|
80 |
||
81 |
# Used for C compiler test/detection |
|
82 |
CFLAGS= |
|
83 |
test=conftest |
|
84 |
rm -f $test $test.c |
|
85 |
||
278 | 86 |
if [ "$XENO_CONFIG" = "" ]; then |
190 | 87 |
XENO_CONFIG=/usr/xenomai/bin/xeno-config |
88 |
fi |
|
0 | 89 |
|
90 |
########################################################################### |
|
91 |
# ARGUMENTS PARSING # |
|
92 |
########################################################################### |
|
93 |
while [ $# -ge 1 ]; do |
|
94 |
optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` |
|
95 |
||
96 |
case $1 in |
|
97 |
--cc=*) CC=$optarg;; |
|
98 |
--arch=*) SUB_ARCH_NAME=$optarg;; |
|
99 |
--os=*) SUB_OS_NAME=$optarg;; |
|
100 |
--prefix=*) SUB_PREFIX=$optarg;; |
|
101 |
--target=*) SUB_TARGET=$optarg;; |
|
102 |
--can=*) SUB_CAN_DRIVER=$optarg;; |
|
103 |
--timers=*) SUB_TIMERS_DRIVER=$optarg;; |
|
104 |
--disable-Ox) DISABLE_OPT=1; |
|
105 |
echo "On user request: Won't optimize with \"-Ox\"";; |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
106 |
--disable-dll) DISABLE_DLL=1; |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
107 |
echo "On user request: Won't create and link to dll";; |
195
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
108 |
--debug=*) DEBUG=$optarg;; |
0 | 109 |
--MAX_CAN_BUS_ID=*) MAX_CAN_BUS_ID=$1;; |
110 |
--SDO_MAX_LENGTH_TRANSFERT=*) SDO_MAX_LENGTH_TRANSFERT=$1;; |
|
111 |
--SDO_MAX_SIMULTANEOUS_TRANSFERTS=*) SDO_MAX_SIMULTANEOUS_TRANSFERTS=$1;; |
|
112 |
--NMT_MAX_NODE_ID=*) NMT_MAX_NODE_ID=$1;; |
|
113 |
--SDO_TIMEOUT_MS=*) SDO_TIMEOUT_MS=$1;; |
|
114 |
--CANOPEN_BIG_ENDIAN=*) CANOPEN_BIG_ENDIAN=$1;; |
|
115 |
--MAX_NB_TIMER=*) MAX_NB_TIMER=$1;; |
|
284 | 116 |
--EMCY_MAX_ERRORS=*) EMCY_MAX_ERRORS=$1;; |
0 | 117 |
--help) echo "Usage: ./configure [options]" |
118 |
echo "Options:" |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
119 |
echo " --cc=foo Use compiler 'foo' instead of defaults ${CC1} or ${CC2}." |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
120 |
echo " --arch=foo Use architecture 'foo' instead of trying to autodetect." |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
121 |
echo " --os=foo Use operative system 'foo' instead of trying to autodetect." |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
122 |
echo " --prefix=foo Use prefix 'foo' instead of default ${SUB_PREFIX}." |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
123 |
echo " --target=foo Use 'foo' as build target." |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
124 |
echo " \"generic\" for have independant CAN and TIMERS driver" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
125 |
echo " \"unix\" for unix-like systems" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
126 |
echo " \"win32\" for win32 systems" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
127 |
echo " \"hcs12\" for HCS12 micro-controller" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
128 |
echo " --can=foo Use 'foo' as CAN driver" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
129 |
echo " \"peak_linux\" use Linux build host installed Peak driver and library" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
130 |
echo " please see http://www.peak-system.com/linux/" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
131 |
echo " \"peak_win32\" use win32 PcanLight Peak driver and library with Cygwin" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
132 |
echo " please see http://www.peak-system.com/themen/download_gb.html" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
133 |
echo " \"virtual\" use unix pipe based virtual can driver" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
134 |
echo " \"socket\" use socket-can " |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
135 |
echo " please see http://developer.berlios.de/projects/socketcan/" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
136 |
echo " \"lincan\" for HCS12 micro-controller" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
137 |
echo " please see http://www.ocera.org/download/components/WP7/lincan-0.3.3.html" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
138 |
echo " --timers=foo Use 'foo' as TIMERS driver (can be either 'unix' or 'xeno')" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
139 |
echo " --disable-dll Disable run-time dynamic linking of can, led and nvram drivers" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
140 |
echo " --disable-Ox Disable gcc \"-Ox\" optimizations." |
329 | 141 |
echo " --debug=foo,foo,.. Enable debug messages, ERR -> only errors, WAR)." |
195
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
142 |
echo " \"PDO\" send errors and warnings through PDO messages" |
329 | 143 |
echo " \"ERR\" print errors only, to stdout" |
144 |
echo " \"WAR\" print errors and warnings, to stdout" |
|
145 |
echo " \"MSG\" print messages content, to stdout" |
|
0 | 146 |
echo |
147 |
echo "Stack compilation constants" |
|
148 |
echo " --MAX_CAN_BUS_ID [=1] Number of can bus to use" |
|
149 |
echo " --SDO_MAX_LENGTH_TRANSFERT [=32] max bytes to transmit by SDO" |
|
150 |
echo " --SDO_MAX_SIMULTANEOUS_TRANSFERTS [=4] Number of SDO that the node can manage concurrently" |
|
151 |
echo " --NMT_MAX_NODE_ID [=128] can be reduced to gain memory on small network" |
|
152 |
echo " --SDO_TIMEOUT_MS [=3000] Timeout in milliseconds for SDO (None to disable the feature)" |
|
284 | 153 |
echo " --EMCY_MAX_ERRORS [=8] Max number of active errors managed in error_data structure" |
0 | 154 |
exit 0;; |
155 |
*) echo "Unknown argument ${1}"; exit -1;; |
|
156 |
esac |
|
157 |
||
158 |
shift |
|
159 |
done |
|
160 |
||
161 |
########################################################################### |
|
162 |
# GUESS OS/ARCH # |
|
163 |
########################################################################### |
|
164 |
||
165 |
if [ "$SUB_OS_NAME" = "" ]; then |
|
166 |
SUB_OS_NAME="`(uname -s | sed \"s/\//-/\" | sed \"s/_/-/\" \ |
|
167 |
| sed \"s/-.*//g\") 2>&1`" |
|
168 |
fi |
|
169 |
if [ "$SUB_OS_NAME" = "HP" -o "$SUB_OS_NAME" = "HP-UX" ]; then |
|
170 |
SUB_OS_NAME=HPUX |
|
171 |
fi |
|
172 |
||
173 |
if [ "$SUB_ARCH_NAME" = "" ]; then |
|
174 |
if [ "$CC" = "" ]; then |
|
175 |
A_NAME="`(uname -m) 2>&1`" |
|
176 |
else |
|
177 |
A_NAME="`$CC -dumpmachine | sed 's:-.*::'`" |
|
178 |
fi |
|
179 |
fi |
|
180 |
||
181 |
# x86 |
|
182 |
if [ "$A_NAME" = "i386" ]; then |
|
183 |
SUB_ARCH_NAME=x86 |
|
184 |
fi |
|
185 |
if [ "$A_NAME" = "i486" ]; then |
|
186 |
SUB_ARCH_NAME=x86 |
|
187 |
fi |
|
188 |
if [ "$A_NAME" = "i586" ]; then |
|
189 |
SUB_ARCH_NAME=x86 |
|
190 |
fi |
|
191 |
if [ "$A_NAME" = "i686" ]; then |
|
192 |
SUB_ARCH_NAME=x86 |
|
193 |
fi |
|
194 |
if [ "$A_NAME" = "x86" ]; then |
|
195 |
SUB_ARCH_NAME=x86 |
|
196 |
fi |
|
197 |
||
198 |
# x86_64 |
|
199 |
if [ "$A_NAME" = "x86_64" ]; then |
|
200 |
SUB_ARCH_NAME=x86_64 |
|
201 |
fi |
|
202 |
||
203 |
# ia64 |
|
204 |
if [ "$A_NAME" = "ia64" ]; then |
|
205 |
SUB_ARCH_NAME=ia64 |
|
206 |
fi |
|
207 |
||
208 |
# alpha |
|
209 |
if [ "$A_NAME" = "alpha" ]; then |
|
210 |
SUB_ARCH_NAME=alpha |
|
211 |
fi |
|
212 |
||
213 |
# parisc |
|
214 |
if [ "$A_NAME" = "parisc" ]; then |
|
215 |
SUB_ARCH_NAME=parisc |
|
216 |
fi |
|
217 |
if [ "$SUB_OS_NAME" = "HPUX" -a "$A_NAME" != "ia64" ]; then |
|
218 |
# If we're on HP-UX and the architecture is *not* ia64, |
|
219 |
# it's most likely parisc |
|
220 |
SUB_ARCH_NAME=parisc |
|
221 |
fi |
|
222 |
||
223 |
# sparc |
|
224 |
if [ "$A_NAME" = "sparc" ]; then |
|
225 |
SUB_ARCH_NAME=sparc |
|
226 |
fi |
|
227 |
if [ "$A_NAME" = "sun4u" ]; then |
|
228 |
SUB_ARCH_NAME=sparc |
|
229 |
fi |
|
230 |
||
231 |
# sparc64 |
|
232 |
if [ "$A_NAME" = "sparc64" ]; then |
|
233 |
SUB_ARCH_NAME=sparc64 |
|
234 |
fi |
|
235 |
||
236 |
# ppc |
|
237 |
if [ "$A_NAME" = "powerpc" ]; then |
|
238 |
SUB_ARCH_NAME=ppc |
|
239 |
fi |
|
240 |
||
241 |
# ppc64 |
|
242 |
if [ "$A_NAME" = "powerpc64" ]; then |
|
243 |
SUB_ARCH_NAME=ppc64 |
|
244 |
fi |
|
245 |
||
246 |
# arm |
|
247 |
if [ "$A_NAME" = "arm" ]; then |
|
248 |
SUB_ARCH_NAME=arm |
|
249 |
fi |
|
250 |
||
251 |
# mips3 |
|
252 |
if [ "$A_NAME" = "ip32" ]; then # IRIX |
|
253 |
SUB_ARCH_NAME=mips3 |
|
254 |
fi |
|
255 |
if [ "$A_NAME" = "ip35" ]; then # IRIX |
|
256 |
SUB_ARCH_NAME=mips3 |
|
257 |
fi |
|
258 |
||
259 |
# mips32 |
|
260 |
if [ "$A_NAME" = "mips32" ]; then |
|
261 |
SUB_ARCH_NAME=mips32 |
|
262 |
fi |
|
263 |
if [ "$A_NAME" = "mips" ]; then |
|
264 |
SUB_ARCH_NAME=mips32 |
|
265 |
fi |
|
266 |
if [ "$A_NAME" = "MIPS" ]; then |
|
267 |
SUB_ARCH_NAME=mips32 |
|
268 |
fi |
|
269 |
if [ "$A_NAME" = "RISC" ]; then # MIPS Ultrix |
|
270 |
SUB_ARCH_NAME=mips32 |
|
271 |
fi |
|
272 |
||
273 |
# mips64 |
|
274 |
if [ "$A_NAME" = "mips64" ]; then |
|
275 |
SUB_ARCH_NAME=mips64 |
|
276 |
fi |
|
277 |
if [ "$A_NAME" = "MIPS64" ]; then |
|
278 |
SUB_ARCH_NAME=mips64 |
|
279 |
fi |
|
280 |
if [ "$A_NAME" = "IP64" ]; then # IRIX |
|
281 |
SUB_ARCH_NAME=mips64 |
|
282 |
fi |
|
283 |
||
284 |
# power |
|
285 |
if [ "$A_NAME" = "power" ]; then # Manual |
|
286 |
SUB_ARCH_NAME=power |
|
287 |
fi |
|
288 |
||
289 |
echo "Using OS: ${SUB_OS_NAME}" |
|
290 |
echo "Using architecture: ${SUB_ARCH_NAME}" |
|
291 |
||
292 |
if [ "$SUB_ARCH_NAME" = "" ]; then |
|
293 |
echo "Error: could not detect what architecture this system is running!" |
|
294 |
echo "Please supply manually instead with \"--arch=foo\"" |
|
295 |
exit -1 |
|
296 |
fi |
|
297 |
||
298 |
if [ "$SUB_OS_NAME" = "HPUX" -a "$CC" = "gcc" ]; then |
|
299 |
# Only if we are on HP-UX, ia64 and using gcc |
|
300 |
SUB_PROG_CFLAGS=-mlp64 |
|
301 |
fi |
|
302 |
||
303 |
if [ "$SUB_OS_NAME" = "SunOS" -a "$SUB_ARCH_NAME" = "sparc" -a "$CC" = "gcc" ]; then |
|
304 |
# Only if we are on SunOS, sparc and using gcc |
|
305 |
# Tells the assembler that we are dealing with a v8plusa arch sparc |
|
306 |
# and -mimpure-text is needed for shared library linking |
|
307 |
SUB_PROG_CFLAGS="-Wa,-xarch=v8plusa -mimpure-text" |
|
308 |
fi |
|
309 |
||
310 |
if [ "$SUB_OS_NAME" = "AIX" -a "$SUB_ARCH_NAME" = "power" -a "$CC" = "gcc" ]; then |
|
311 |
# Only if we are on AIX, power and using gcc |
|
312 |
# The assembler may default to generating Power and PowerPC compatible |
|
313 |
# code. We need to override that. |
|
314 |
SUB_PROG_CFLAGS=-Wa,-mpwr |
|
315 |
fi |
|
316 |
||
317 |
if [ "$SUB_OS_NAME" = "AIX" -a "$SUB_ARCH_NAME" = "ppc" -a "$CC" = "gcc" ]; then |
|
318 |
# Only if we are on AIX, ppc and using gcc |
|
319 |
# The assembler may default to generating Power and PowerPC compatible |
|
320 |
# code. We need to override that. |
|
321 |
SUB_PROG_CFLAGS=-Wa,-mppc |
|
322 |
fi |
|
323 |
||
324 |
if [ "$SUB_ARCH_NAME" = "x86_64" -a "$CC" = "gcc" ]; then |
|
325 |
# Only if we are on x86_64 and using gcc |
|
326 |
# For shared library generation, it needs this |
|
327 |
SUB_PROG_CFLAGS=-fPIC |
|
328 |
fi |
|
329 |
||
200 | 330 |
if [ "$SUB_ARCH_NAME" = "ppc" -o "$SUB_ARCH_NAME" = "powerpc" ]; then |
331 |
# PowerPC uses big endian format |
|
332 |
CANOPEN_BIG_ENDIAN=1 |
|
333 |
fi |
|
334 |
||
0 | 335 |
########################################################################### |
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
336 |
# DEFAULT TARGET/DRIVERS GUESSING # |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
337 |
########################################################################### |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
338 |
# If target not specified, try to gess one |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
339 |
if [ "$SUB_TARGET" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
340 |
if [ "$SUB_OS_NAME" = "CYGWIN" ]; then |
38 | 341 |
echo "Choosing unix (cygwin) target" |
342 |
SUB_TARGET=unix |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
343 |
fi |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
344 |
if [ "$SUB_OS_NAME" = "Linux" ]; then |
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
345 |
echo "Choosing unix target" |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
346 |
SUB_TARGET=unix |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
347 |
fi |
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
348 |
if [ "$SUB_OS_NAME" = "MINGW32" ]; then |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
349 |
echo "Choosing windows target" |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
350 |
SUB_TARGET=win32 |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
351 |
fi |
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
352 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
353 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
354 |
# Try to gess can |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
355 |
if [ "$SUB_CAN_DRIVER" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
356 |
if [ "$SUB_TARGET" = "unix" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
357 |
if [ -e /usr/lib/libpcan.so ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
358 |
echo "Choosing installed Peak driver as CAN driver." |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
359 |
SUB_CAN_DRIVER=peak_linux |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
360 |
elif [ "$SUB_OS_NAME" = "CYGWIN" -a "PCAN_LIB" != "" ]; then |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
361 |
echo "Choosing installed Peak driver as CAN driver." |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
362 |
SUB_CAN_DRIVER=peak_win32 |
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
363 |
else |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
364 |
echo "Choosing virtual CAN driver." |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
365 |
SUB_CAN_DRIVER=virtual |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
366 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
367 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
368 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
369 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
370 |
# If target is unix, default timers also |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
371 |
if [ "$SUB_TARGET" = "unix" -a "$SUB_TIMERS_DRIVER" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
372 |
echo "Choosing unix timers driver." |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
373 |
SUB_TIMERS_DRIVER=unix |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
374 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
375 |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
376 |
# If target is windows, default timers also |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
377 |
if [ "$SUB_TARGET" = "win32" -a "$SUB_TIMERS_DRIVER" = "" ]; then |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
378 |
echo "Choosing windows timers driver." |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
379 |
SUB_TIMERS_DRIVER=win32 |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
380 |
fi |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
381 |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
382 |
# Warn for unstalled peak driver if choosen |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
383 |
if [ "$SUB_CAN_DRIVER" = "peak" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
384 |
if [ ! -e /usr/lib/libpcan.so ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
385 |
echo "Peak driver hasn't been installed !" |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
386 |
exit -1 |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
387 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
388 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
389 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
390 |
########################################################################### |
0 | 391 |
# TARGET/DRIVER SPECIFIC CFLAGS and OPTIONS # |
392 |
########################################################################### |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
393 |
if [ "$SUB_TARGET" = "generic" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
394 |
if [ "$US_TO_TIMEVAL_FACTOR" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
395 |
US_TO_TIMEVAL_FACTOR=1 |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
396 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
397 |
if [ "$TIMEVAL" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
398 |
TIMEVAL=UNS64 |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
399 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
400 |
if [ "$TIMEVAL_MAX" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
401 |
TIMEVAL_MAX=0xffffffffffffffff |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
402 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
403 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
404 |
|
0 | 405 |
if [ "$SUB_TARGET" = "hcs12" ]; then |
406 |
# Only if we want to compile for a µC HCS12 |
|
81 | 407 |
# it is a big endian architecture. |
408 |
CANOPEN_BIG_ENDIAN=1 |
|
0 | 409 |
# search for gcc hcs12 compiler m6811-elf-gcc or m68hc12-gcc ? |
410 |
if [ "$CC" = "" ]; then |
|
411 |
which m6811-elf-gcc >/dev/null 2>&1 |
|
412 |
if (( $? )); then |
|
413 |
which m68hc12-gcc >/dev/null 2>&1 |
|
414 |
if (( $? )); then |
|
415 |
echo "Please use --cc flag to specify compiler" |
|
416 |
exit 0 |
|
417 |
else |
|
418 |
CC=m68hc12-gcc |
|
419 |
fi |
|
420 |
else |
|
421 |
CC=m6811-elf-gcc |
|
422 |
SUB_PROG_CFLAGS=-m68hc12 |
|
423 |
fi |
|
424 |
fi |
|
425 |
fi |
|
426 |
||
329 | 427 |
if [ "$SUB_TARGET" = "win32" ]; then |
428 |
LD=g++ |
|
429 |
SUB_PROG_CFLAGS="-mno-cygwin" |
|
430 |
fi |
|
431 |
||
0 | 432 |
#### CAN_DRIVER #### |
433 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
434 |
if [ "$SUB_CAN_DRIVER" = "peak_linux" ]; then |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
435 |
SUB_CAN_DLL_CFLAGS=$SUB_CAN_DLL_CFLAGS\ -lpcan |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
436 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
437 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
438 |
PW32DIR=drivers/can_peak_win32 |
38 | 439 |
if [ "$SUB_CAN_DRIVER" = "peak_win32" ]; then |
41
e70439f50539
First working cygwin/pcan_light commit. can_peak_win32.c is obfuscated.
etisserant
parents:
40
diff
changeset
|
440 |
if [ "$PCAN_HEADER" = "" -o "PCAN_LIB" = "" ]; then |
38 | 441 |
echo "!!! ERROR !!! Please set PCAN_LIB PCAN_HEADER [PCAN_INCLUDE] to appropriate paths ! " |
442 |
fi |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
443 |
SUB_CAN_DLL_CFLAGS=$SUB_CAN_DLL_CFLAGS\ -liberty\ \'$PCAN_LIB\' |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
444 |
echo "Converting PcanLib header files for gcc -> $PW32DIR/cancfg.h" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
445 |
cat $PW32DIR/cancfg.h.head $PCAN_INCLUDE/$PCAN_HEADER > $PW32DIR/cancfg.h |
41
e70439f50539
First working cygwin/pcan_light commit. can_peak_win32.c is obfuscated.
etisserant
parents:
40
diff
changeset
|
446 |
# second port handling |
e70439f50539
First working cygwin/pcan_light commit. can_peak_win32.c is obfuscated.
etisserant
parents:
40
diff
changeset
|
447 |
if [ "$PCAN2_HEADER" != "" ]; then |
e70439f50539
First working cygwin/pcan_light commit. can_peak_win32.c is obfuscated.
etisserant
parents:
40
diff
changeset
|
448 |
echo "Stripping down second Pcan Light header " |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
449 |
echo >> $PW32DIR/cancfg.h |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
450 |
echo "// Stripped PcanLight header to prevent typedef conflicts ">> $PW32DIR/cancfg.h |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
451 |
echo >> $PW32DIR/cancfg.h |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
452 |
grep __stdcall $PCAN_INCLUDE/$PCAN2_HEADER >> $PW32DIR/cancfg.h |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
453 |
echo '#define PCAN2_HEADER_' >> $PW32DIR/cancfg.h |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
454 |
SUB_CAN_DLL_CFLAGS=$SUB_CAN_DLL_CFLAGS\ \'$PCAN2_LIB\' |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
455 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
456 |
if grep -q CANHwType $PW32DIR/cancfg.h ; then |
42
17f0ea205942
cygwin/pcan_light commit. Changes in configure for dual port handling.
etisserant
parents:
41
diff
changeset
|
457 |
echo "Peak Init HwType, IO_Port and IRQ will be passed in environment :" |
17f0ea205942
cygwin/pcan_light commit. Changes in configure for dual port handling.
etisserant
parents:
41
diff
changeset
|
458 |
echo " PCANHwType PCANIO_Port PCANInterupt" |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
459 |
echo '#define extra_PCAN_init_params' >> $PW32DIR/cancfg.h |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
460 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
461 |
cat $PW32DIR/cancfg.h.tail >> $PW32DIR/cancfg.h |
38 | 462 |
fi |
463 |
||
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
464 |
if [ "$SUB_CAN_DRIVER" = "none" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
465 |
SUB_CAN_DRIVER= |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
466 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
467 |
|
0 | 468 |
#### TIMERS_DRIVER #### |
469 |
||
470 |
if [ "$SUB_TIMERS_DRIVER" = "unix" ]; then |
|
38 | 471 |
if [ "$SUB_OS_NAME" != "CYGWIN" ]; then |
472 |
SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS\ -lpthread\ -lrt |
|
473 |
fi |
|
0 | 474 |
fi |
475 |
||
476 |
if [ "$SUB_TIMERS_DRIVER" = "xeno" ]; then |
|
47
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
42
diff
changeset
|
477 |
SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS\ -lnative\ -lrtdm\ |
0 | 478 |
\ -L`$XENO_CONFIG --library-dir` |
479 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ `$XENO_CONFIG --xeno-cflags` |
|
47
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
42
diff
changeset
|
480 |
RTCAN_SOCKET=1 |
0 | 481 |
fi |
482 |
||
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
483 |
if [ "$SUB_TIMERS_DRIVER" = "none" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
484 |
SUB_TIMERS_DRIVER= |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
485 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
486 |
|
0 | 487 |
########################################################################### |
488 |
# GUESS COMPILER # |
|
489 |
########################################################################### |
|
490 |
# If CC is empty, the user wanted automatic detection |
|
491 |
if [ "$CC" = "" ]; then |
|
492 |
# Check for second compiler, CC2 |
|
493 |
cat > $test.c <<EOF |
|
494 |
int main() { return 0; } |
|
495 |
EOF |
|
496 |
if test "`($CC2 -c $CFLAGS $test.c) 2>&1`" = ""; then |
|
497 |
DETECTCC=$CC2 |
|
498 |
echo "Checking for ${CC2}... Yes." |
|
499 |
else |
|
500 |
echo "Checking for ${CC2}... No." |
|
501 |
fi |
|
502 |
rm -f $test.c $test.o |
|
503 |
||
504 |
# Check for first compiler, CC1 |
|
505 |
cat > $test.c <<EOF |
|
506 |
int main() { return 0; } |
|
507 |
EOF |
|
508 |
if test "`($CC1 -c $CFLAGS $test.c) 2>&1`" = ""; then |
|
509 |
DETECTCC=$CC1 |
|
510 |
echo "Checking for ${CC1}... Yes." |
|
511 |
else |
|
512 |
echo "Checking for ${CC1}... No." |
|
513 |
fi |
|
514 |
rm -f $test.c $test.o |
|
515 |
CC=$DETECTCC |
|
516 |
fi |
|
517 |
# Check if we decided on a compiler after all |
|
518 |
if [ "$CC" = "" ]; then |
|
519 |
echo "Error: Could not find a C compiler" |
|
520 |
echo "Please supply the wanted compiler" |
|
521 |
exit -1 |
|
522 |
fi |
|
523 |
||
524 |
echo "Using ${CC}" |
|
525 |
||
526 |
########################################################################### |
|
527 |
# GUESS PREFIX's # |
|
528 |
########################################################################### |
|
529 |
||
530 |
SUB_BINUTILS_PREFIX=`echo "$CC" | sed 's/gcc$//'` |
|
531 |
||
532 |
# Guess prefix as regard cross compiling target machine |
|
533 |
if [ "$SUB_PREFIX" = "" ]; then |
|
534 |
$CC -dumpspecs |grep -A 1 'cross_compile'|grep -q 1 |
|
535 |
if (( $? )); then |
|
536 |
SUB_PREFIX=/usr/local |
|
537 |
echo "Not cross-compiling. Will install in $SUB_PREFIX"; |
|
538 |
else |
|
539 |
SUB_PREFIX=/usr/`$CC -dumpmachine` |
|
540 |
echo "This is a cross-compiler. Will install in $SUB_PREFIX"; |
|
541 |
fi |
|
542 |
fi |
|
543 |
||
544 |
echo "Using prefix: ${SUB_PREFIX}" |
|
545 |
||
546 |
########################################################################### |
|
547 |
# CANFESTIVAL DEFINES --> config.h # |
|
548 |
########################################################################### |
|
549 |
# Some CONSTANTS preparation |
|
550 |
||
551 |
# Create include/config.h with the relevant contents |
|
552 |
rm -f include/config.h |
|
77 | 553 |
echo "/* !!!!!!!!!! FILE GENERATED by configure. DO NOT EDIT !!!!!!!!!!*/" >> include/config.h |
554 |
echo "" >> include/config.h |
|
555 |
echo "/*"\ >> include/config.h |
|
0 | 556 |
echo "This file is part of CanFestival, a library implementing CanOpen Stack." >> include/config.h |
557 |
echo "" >> include/config.h |
|
558 |
echo "Copyright (C): Edouard TISSERANT and Francis DUPIN" >> include/config.h |
|
559 |
echo "See COPYING file for copyrights details." >> include/config.h |
|
560 |
echo "" >> include/config.h |
|
561 |
echo "This library is free software; you can redistribute it and/or" >> include/config.h |
|
562 |
echo "modify it under the terms of the GNU Lesser General Public" >> include/config.h |
|
563 |
echo "License as published by the Free Software Foundation; either" >> include/config.h |
|
564 |
echo "version 2.1 of the License, or (at your option) any later version." >> include/config.h |
|
565 |
echo "" >> include/config.h |
|
566 |
echo "This library is distributed in the hope that it will be useful," >> include/config.h |
|
567 |
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of" >> include/config.h |
|
568 |
echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU" >> include/config.h |
|
569 |
echo "Lesser General Public License for more details." >> include/config.h |
|
570 |
echo "" >> include/config.h |
|
571 |
echo "You should have received a copy of the GNU Lesser General Public" >> include/config.h |
|
572 |
echo "License along with this library; if not, write to the Free Software" >> include/config.h |
|
573 |
echo "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA" >> include/config.h |
|
574 |
echo "*/" >> include/config.h |
|
575 |
echo "" >> include/config.h |
|
576 |
echo "#ifndef _CONFIG_H_" >> include/config.h |
|
577 |
echo "#define _CONFIG_H_" >> include/config.h |
|
578 |
echo "" >> include/config.h |
|
579 |
for i in \ |
|
580 |
MAX_CAN_BUS_ID\ |
|
581 |
SDO_MAX_LENGTH_TRANSFERT\ |
|
582 |
SDO_MAX_SIMULTANEOUS_TRANSFERTS\ |
|
583 |
NMT_MAX_NODE_ID\ |
|
584 |
SDO_TIMEOUT_MS\ |
|
585 |
MAX_NB_TIMER\ |
|
586 |
CANOPEN_BIG_ENDIAN\ |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
587 |
US_TO_TIMEVAL_FACTOR\ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
588 |
TIMEVAL\ |
47
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
42
diff
changeset
|
589 |
TIMEVAL_MAX\ |
284 | 590 |
RTCAN_SOCKET\ |
591 |
EMCY_MAX_ERRORS; do |
|
0 | 592 |
if [ "${!i}" = "" ]; then |
77 | 593 |
echo "/* $i is not defined */" >> include/config.h |
0 | 594 |
else |
595 |
echo "#define $i ${!i}" >> include/config.h |
|
596 |
fi |
|
597 |
done |
|
598 |
echo "" >> include/config.h |
|
91
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
81
diff
changeset
|
599 |
|
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
81
diff
changeset
|
600 |
for i in \ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
81
diff
changeset
|
601 |
SDO_MAX_SIMULTANEOUS_TRANSFERTS\ |
284 | 602 |
NMT_MAX_NODE_ID\ |
603 |
EMCY_MAX_ERRORS; do |
|
91
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
81
diff
changeset
|
604 |
echo "#define REPEAT_"$i"_TIMES(repeat)\\">> include/config.h |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
81
diff
changeset
|
605 |
times=${!i} |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
81
diff
changeset
|
606 |
result="" |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
81
diff
changeset
|
607 |
for (( j=0; j<times; j++ ));do |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
81
diff
changeset
|
608 |
result="$result repeat" |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
81
diff
changeset
|
609 |
done |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
81
diff
changeset
|
610 |
echo $result >> include/config.h |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
81
diff
changeset
|
611 |
done |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
81
diff
changeset
|
612 |
|
0 | 613 |
echo "#endif /* _CONFIG_H_ */" >> include/config.h |
614 |
||
615 |
########################################################################### |
|
616 |
# DEBUG DEFINES/CFLAGS # |
|
617 |
########################################################################### |
|
329 | 618 |
|
619 |
save_ifs="$IFS"; IFS=',' |
|
620 |
||
621 |
for DEBUG_METHOD in $DEBUG; |
|
622 |
do |
|
623 |
IFS="$save_ifs" |
|
624 |
case $DEBUG_METHOD in |
|
625 |
ERR)ERR=1;; |
|
626 |
WAR)WAR=1;ERR=1;; |
|
627 |
MSG)MSG=1;; |
|
628 |
PDO)PDO=1;WAR=1;ERR=1;; |
|
629 |
*)echo "" |
|
630 |
echo "$DEBUG_METHOD is not a valid debug's method" |
|
631 |
echo "Possible Debug's methods are : \"ERR\", \"WAR\", \"MSG\", \"PDO\"" |
|
632 |
exit -1 |
|
633 |
;; |
|
634 |
esac |
|
635 |
done |
|
636 |
||
637 |
if [ $WAR ]; then |
|
638 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DDEBUG_WAR_CONSOLE_ON; |
|
639 |
fi |
|
640 |
||
641 |
if [ $ERR ]; then |
|
642 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DDEBUG_ERR_CONSOLE_ON; |
|
643 |
fi |
|
644 |
||
645 |
if [ $MSG ]; then |
|
646 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DDEBUG_MSG_CONSOLE_ON; |
|
647 |
fi |
|
648 |
||
649 |
if [ $PDO ]; then |
|
650 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DDEBUG_PDO_CONSOLE_ON; |
|
651 |
fi |
|
652 |
||
653 |
if [ $DEBUG ]; then |
|
654 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -g |
|
655 |
fi |
|
656 |
||
657 |
IFS="$save_ifs" |
|
0 | 658 |
|
659 |
if [ "$DISABLE_OPT" = "1" ]; then |
|
660 |
SUB_OPT_CFLAGS= |
|
661 |
else |
|
662 |
SUB_OPT_CFLAGS=\$\(OPT_CFLAGS\) |
|
663 |
fi |
|
664 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
665 |
if [ "$DISABLE_DLL" = "1" ]; then |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
666 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DNOT_USE_DYNAMIC_LOADING |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
667 |
SUB_ENABLE_DLL_DRIVERS=0 |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
668 |
else |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
669 |
SUB_ENABLE_DLL_DRIVERS=1 |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
670 |
SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS\ -ldl |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
671 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
672 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
673 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
674 |
if [ "$DISABLE_DLL" = "1" ]; then |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
675 |
SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS\ $SUB_CAN_DLL_CFLAGS |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
676 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
677 |
|
0 | 678 |
########################################################################### |
679 |
# CREATE MAKEFILES # |
|
680 |
########################################################################### |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
681 |
# General Makefiles |
0 | 682 |
MAKEFILES=Makefile.in\ |
683 |
\ src/Makefile.in\ |
|
684 |
\ drivers/Makefile.in\ |
|
685 |
\ objdictgen/Makefile.in\ |
|
279
9b69f2fabafe
added config.py.in, filled by configure, so that python program using objdictedit can gat compilation params. Reomved old dead files.
etisserant
parents:
278
diff
changeset
|
686 |
\ examples/Makefile.in\ |
9b69f2fabafe
added config.py.in, filled by configure, so that python program using objdictedit can gat compilation params. Reomved old dead files.
etisserant
parents:
278
diff
changeset
|
687 |
\ objdictgen/canfestival_config.py.in |
0 | 688 |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
689 |
# Drivers dependent Makefiles |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
690 |
if [ "$SUB_TIMERS_DRIVER" != "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
691 |
MAKEFILES=$MAKEFILES\ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
692 |
\ drivers/timers_$SUB_TIMERS_DRIVER/Makefile.in |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
693 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
694 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
695 |
if [ "$SUB_CAN_DRIVER" != "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
696 |
MAKEFILES=$MAKEFILES\ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
697 |
\ drivers/can_$SUB_CAN_DRIVER/Makefile.in |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
698 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
699 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
700 |
# Target dependent Makefiles |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
701 |
MAKEFILES=$MAKEFILES\ drivers/$SUB_TARGET/Makefile.in |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
702 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
703 |
if [ "$SUB_TARGET" = "unix" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
704 |
MAKEFILES=$MAKEFILES\ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
705 |
\ examples/TestMasterSlave/Makefile.in |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
706 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
707 |
|
166
b6fbc1c59a44
Added a MicroMod Master sample in examples/TestMasterMicroMod. Fixed some SDO abort code and callback problem in sdo.c.
etisserant
parents:
145
diff
changeset
|
708 |
if [ "$SUB_TARGET" = "unix" ]; then |
b6fbc1c59a44
Added a MicroMod Master sample in examples/TestMasterMicroMod. Fixed some SDO abort code and callback problem in sdo.c.
etisserant
parents:
145
diff
changeset
|
709 |
MAKEFILES=$MAKEFILES\ |
329 | 710 |
\ examples/DS401_Master/Makefile.in\ |
711 |
\ examples/DS401_Slave_Gui/Makefile.in\ |
|
166
b6fbc1c59a44
Added a MicroMod Master sample in examples/TestMasterMicroMod. Fixed some SDO abort code and callback problem in sdo.c.
etisserant
parents:
145
diff
changeset
|
712 |
\ examples/TestMasterMicroMod/Makefile.in |
b6fbc1c59a44
Added a MicroMod Master sample in examples/TestMasterMicroMod. Fixed some SDO abort code and callback problem in sdo.c.
etisserant
parents:
145
diff
changeset
|
713 |
fi |
b6fbc1c59a44
Added a MicroMod Master sample in examples/TestMasterMicroMod. Fixed some SDO abort code and callback problem in sdo.c.
etisserant
parents:
145
diff
changeset
|
714 |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
715 |
if [ "$SUB_TARGET" = "win32" ]; then |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
716 |
MAKEFILES=$MAKEFILES\ |
329 | 717 |
\ examples/TestMasterSlave/Makefile.in\ |
718 |
\ examples/TestMasterMicroMod/Makefile.in\ |
|
719 |
\ examples/DS401_Master/Makefile.in\ |
|
720 |
\ examples/DS401_Slave_Gui/Makefile.in |
|
721 |
fi |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
722 |
|
0 | 723 |
if [ "$SUB_TARGET" = "hcs12" ]; then |
724 |
MAKEFILES=$MAKEFILES\ |
|
725 |
\ examples/gene_SYNC_HCS12/Makefile.in |
|
726 |
fi |
|
727 |
||
728 |
for makefile_in in $MAKEFILES; do |
|
729 |
makefile=`echo $makefile_in | sed 's:.in$::'` |
|
730 |
echo "Creating $makefile" |
|
731 |
sed < $makefile_in " |
|
732 |
s:SUB_CC:${CC}: |
|
329 | 733 |
s:SUB_CXX:${CXX}: |
734 |
s:SUB_LD:${LD}: |
|
0 | 735 |
s:SUB_PROG_CFLAGS:${SUB_PROG_CFLAGS}: |
736 |
s:SUB_EXE_CFLAGS:${SUB_EXE_CFLAGS}: |
|
737 |
s:SUB_PREFIX:${SUB_PREFIX}: |
|
738 |
s:SUB_OS_NAME:${SUB_OS_NAME}: |
|
739 |
s:SUB_ARCH_NAME:${SUB_ARCH_NAME}: |
|
740 |
s:SUB_OPT_CFLAGS:${SUB_OPT_CFLAGS}: |
|
741 |
s:SUB_TARGET:${SUB_TARGET}: |
|
742 |
s:SUB_BINUTILS_PREFIX:${SUB_BINUTILS_PREFIX}: |
|
743 |
s:SUB_TIMERS_DRIVER:timers_${SUB_TIMERS_DRIVER}: |
|
744 |
s:SUB_CAN_DRIVER:can_${SUB_CAN_DRIVER}: |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
745 |
s:SUB_CAN_DLL_CFLAGS:${SUB_CAN_DLL_CFLAGS}: |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
746 |
s:SUB_ENABLE_DLL_DRIVERS:${SUB_ENABLE_DLL_DRIVERS}: |
0 | 747 |
" > $makefile |
748 |
done |
|
749 |
||
750 |
echo "All done." |