author | etisserant |
Thu, 28 Jun 2007 16:29:41 +0200 | |
changeset 231 | 4fd03ee0c30e |
parent 200 | 930be51ddc24 |
child 234 | 5a17bcb520ef |
permissions | -rwxr-xr-x |
0 | 1 |
#!/bin/bash |
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 |
|
29 |
MAX_CAN_BUS_ID=1 |
|
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. |
|
33 |
SDO_MAX_LENGTH_TRANSFERT=32 |
|
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. |
|
42 |
NMT_MAX_NODE_ID=128 |
|
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 |
||
58 |
########################################################################### |
|
59 |
# DEFAULT BUILD OPTIONS # |
|
60 |
########################################################################### |
|
61 |
||
62 |
# Leave empty for automatic detection |
|
63 |
CC= |
|
64 |
||
65 |
#default target |
|
66 |
SUB_TARGET= |
|
67 |
||
68 |
# First compiler option - we will check if it exists |
|
69 |
CC1=gcc |
|
70 |
# Second compiler option - we will check if it exists |
|
71 |
CC2=cc |
|
72 |
||
73 |
# Install prefix |
|
74 |
SUB_PREFIX= |
|
75 |
||
76 |
# Used for C compiler test/detection |
|
77 |
CFLAGS= |
|
78 |
test=conftest |
|
79 |
rm -f $test $test.c |
|
80 |
||
190 | 81 |
if [ "$XENO_CONFIG" == "" ]; then |
82 |
XENO_CONFIG=/usr/xenomai/bin/xeno-config |
|
83 |
fi |
|
0 | 84 |
|
85 |
########################################################################### |
|
86 |
# ARGUMENTS PARSING # |
|
87 |
########################################################################### |
|
88 |
while [ $# -ge 1 ]; do |
|
89 |
optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` |
|
90 |
||
91 |
case $1 in |
|
92 |
--cc=*) CC=$optarg;; |
|
93 |
--arch=*) SUB_ARCH_NAME=$optarg;; |
|
94 |
--os=*) SUB_OS_NAME=$optarg;; |
|
95 |
--prefix=*) SUB_PREFIX=$optarg;; |
|
96 |
--target=*) SUB_TARGET=$optarg;; |
|
97 |
--can=*) SUB_CAN_DRIVER=$optarg;; |
|
98 |
--timers=*) SUB_TIMERS_DRIVER=$optarg;; |
|
99 |
--disable-Ox) DISABLE_OPT=1; |
|
100 |
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
|
101 |
--disable-dll) DISABLE_DLL=1; |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
102 |
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
|
103 |
--debug=*) DEBUG=$optarg;; |
0 | 104 |
--MAX_CAN_BUS_ID=*) MAX_CAN_BUS_ID=$1;; |
105 |
--SDO_MAX_LENGTH_TRANSFERT=*) SDO_MAX_LENGTH_TRANSFERT=$1;; |
|
106 |
--SDO_MAX_SIMULTANEOUS_TRANSFERTS=*) SDO_MAX_SIMULTANEOUS_TRANSFERTS=$1;; |
|
107 |
--NMT_MAX_NODE_ID=*) NMT_MAX_NODE_ID=$1;; |
|
108 |
--SDO_TIMEOUT_MS=*) SDO_TIMEOUT_MS=$1;; |
|
109 |
--CANOPEN_BIG_ENDIAN=*) CANOPEN_BIG_ENDIAN=$1;; |
|
110 |
--MAX_NB_TIMER=*) MAX_NB_TIMER=$1;; |
|
111 |
--help) echo "Usage: ./configure [options]" |
|
112 |
echo "Options:" |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
113 |
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
|
114 |
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
|
115 |
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
|
116 |
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
|
117 |
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
|
118 |
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
|
119 |
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
|
120 |
echo " \"win32\" for win32 systems" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
121 |
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
|
122 |
echo " \"ecos_lpc2138_sja1000\" for eCOS + Philips ARM LPC21381 + Philips SJA1000" |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
123 |
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
|
124 |
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
|
125 |
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
|
126 |
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
|
127 |
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
|
128 |
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
|
129 |
echo " \"socket\" use socket-can " |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
130 |
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
|
131 |
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
|
132 |
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
|
133 |
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
|
134 |
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
|
135 |
echo " --disable-Ox Disable gcc \"-Ox\" optimizations." |
195
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
136 |
echo " --debug=foo Enable debug messages, ERR -> only errors, WAR)." |
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
137 |
echo " \"PDO\" send errors and warnings through PDO messages" |
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
138 |
echo " \"ERR\" errors only, to stdout" |
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
139 |
echo " \"WAR\" errors and warnings, to stdout" |
0 | 140 |
echo |
141 |
echo "Stack compilation constants" |
|
142 |
echo " --MAX_CAN_BUS_ID [=1] Number of can bus to use" |
|
143 |
echo " --SDO_MAX_LENGTH_TRANSFERT [=32] max bytes to transmit by SDO" |
|
144 |
echo " --SDO_MAX_SIMULTANEOUS_TRANSFERTS [=4] Number of SDO that the node can manage concurrently" |
|
145 |
echo " --NMT_MAX_NODE_ID [=128] can be reduced to gain memory on small network" |
|
146 |
echo " --SDO_TIMEOUT_MS [=3000] Timeout in milliseconds for SDO (None to disable the feature)" |
|
147 |
exit 0;; |
|
148 |
*) echo "Unknown argument ${1}"; exit -1;; |
|
149 |
esac |
|
150 |
||
151 |
shift |
|
152 |
done |
|
153 |
||
154 |
########################################################################### |
|
155 |
# GUESS OS/ARCH # |
|
156 |
########################################################################### |
|
157 |
||
158 |
if [ "$SUB_OS_NAME" = "" ]; then |
|
159 |
SUB_OS_NAME="`(uname -s | sed \"s/\//-/\" | sed \"s/_/-/\" \ |
|
160 |
| sed \"s/-.*//g\") 2>&1`" |
|
161 |
fi |
|
162 |
if [ "$SUB_OS_NAME" = "HP" -o "$SUB_OS_NAME" = "HP-UX" ]; then |
|
163 |
SUB_OS_NAME=HPUX |
|
164 |
fi |
|
165 |
||
166 |
if [ "$SUB_ARCH_NAME" = "" ]; then |
|
167 |
if [ "$CC" = "" ]; then |
|
168 |
A_NAME="`(uname -m) 2>&1`" |
|
169 |
else |
|
170 |
A_NAME="`$CC -dumpmachine | sed 's:-.*::'`" |
|
171 |
fi |
|
172 |
fi |
|
173 |
||
174 |
# x86 |
|
175 |
if [ "$A_NAME" = "i386" ]; then |
|
176 |
SUB_ARCH_NAME=x86 |
|
177 |
fi |
|
178 |
if [ "$A_NAME" = "i486" ]; then |
|
179 |
SUB_ARCH_NAME=x86 |
|
180 |
fi |
|
181 |
if [ "$A_NAME" = "i586" ]; then |
|
182 |
SUB_ARCH_NAME=x86 |
|
183 |
fi |
|
184 |
if [ "$A_NAME" = "i686" ]; then |
|
185 |
SUB_ARCH_NAME=x86 |
|
186 |
fi |
|
187 |
if [ "$A_NAME" = "x86" ]; then |
|
188 |
SUB_ARCH_NAME=x86 |
|
189 |
fi |
|
190 |
||
191 |
# x86_64 |
|
192 |
if [ "$A_NAME" = "x86_64" ]; then |
|
193 |
SUB_ARCH_NAME=x86_64 |
|
194 |
fi |
|
195 |
||
196 |
# ia64 |
|
197 |
if [ "$A_NAME" = "ia64" ]; then |
|
198 |
SUB_ARCH_NAME=ia64 |
|
199 |
fi |
|
200 |
||
201 |
# alpha |
|
202 |
if [ "$A_NAME" = "alpha" ]; then |
|
203 |
SUB_ARCH_NAME=alpha |
|
204 |
fi |
|
205 |
||
206 |
# parisc |
|
207 |
if [ "$A_NAME" = "parisc" ]; then |
|
208 |
SUB_ARCH_NAME=parisc |
|
209 |
fi |
|
210 |
if [ "$SUB_OS_NAME" = "HPUX" -a "$A_NAME" != "ia64" ]; then |
|
211 |
# If we're on HP-UX and the architecture is *not* ia64, |
|
212 |
# it's most likely parisc |
|
213 |
SUB_ARCH_NAME=parisc |
|
214 |
fi |
|
215 |
||
216 |
# sparc |
|
217 |
if [ "$A_NAME" = "sparc" ]; then |
|
218 |
SUB_ARCH_NAME=sparc |
|
219 |
fi |
|
220 |
if [ "$A_NAME" = "sun4u" ]; then |
|
221 |
SUB_ARCH_NAME=sparc |
|
222 |
fi |
|
223 |
||
224 |
# sparc64 |
|
225 |
if [ "$A_NAME" = "sparc64" ]; then |
|
226 |
SUB_ARCH_NAME=sparc64 |
|
227 |
fi |
|
228 |
||
229 |
# ppc |
|
230 |
if [ "$A_NAME" = "powerpc" ]; then |
|
231 |
SUB_ARCH_NAME=ppc |
|
232 |
fi |
|
233 |
||
234 |
# ppc64 |
|
235 |
if [ "$A_NAME" = "powerpc64" ]; then |
|
236 |
SUB_ARCH_NAME=ppc64 |
|
237 |
fi |
|
238 |
||
239 |
# arm |
|
240 |
if [ "$A_NAME" = "arm" ]; then |
|
241 |
SUB_ARCH_NAME=arm |
|
242 |
fi |
|
243 |
||
244 |
# mips3 |
|
245 |
if [ "$A_NAME" = "ip32" ]; then # IRIX |
|
246 |
SUB_ARCH_NAME=mips3 |
|
247 |
fi |
|
248 |
if [ "$A_NAME" = "ip35" ]; then # IRIX |
|
249 |
SUB_ARCH_NAME=mips3 |
|
250 |
fi |
|
251 |
||
252 |
# mips32 |
|
253 |
if [ "$A_NAME" = "mips32" ]; then |
|
254 |
SUB_ARCH_NAME=mips32 |
|
255 |
fi |
|
256 |
if [ "$A_NAME" = "mips" ]; then |
|
257 |
SUB_ARCH_NAME=mips32 |
|
258 |
fi |
|
259 |
if [ "$A_NAME" = "MIPS" ]; then |
|
260 |
SUB_ARCH_NAME=mips32 |
|
261 |
fi |
|
262 |
if [ "$A_NAME" = "RISC" ]; then # MIPS Ultrix |
|
263 |
SUB_ARCH_NAME=mips32 |
|
264 |
fi |
|
265 |
||
266 |
# mips64 |
|
267 |
if [ "$A_NAME" = "mips64" ]; then |
|
268 |
SUB_ARCH_NAME=mips64 |
|
269 |
fi |
|
270 |
if [ "$A_NAME" = "MIPS64" ]; then |
|
271 |
SUB_ARCH_NAME=mips64 |
|
272 |
fi |
|
273 |
if [ "$A_NAME" = "IP64" ]; then # IRIX |
|
274 |
SUB_ARCH_NAME=mips64 |
|
275 |
fi |
|
276 |
||
277 |
# power |
|
278 |
if [ "$A_NAME" = "power" ]; then # Manual |
|
279 |
SUB_ARCH_NAME=power |
|
280 |
fi |
|
281 |
||
282 |
echo "Using OS: ${SUB_OS_NAME}" |
|
283 |
echo "Using architecture: ${SUB_ARCH_NAME}" |
|
284 |
||
285 |
if [ "$SUB_ARCH_NAME" = "" ]; then |
|
286 |
echo "Error: could not detect what architecture this system is running!" |
|
287 |
echo "Please supply manually instead with \"--arch=foo\"" |
|
288 |
exit -1 |
|
289 |
fi |
|
290 |
||
291 |
if [ "$SUB_OS_NAME" = "HPUX" -a "$CC" = "gcc" ]; then |
|
292 |
# Only if we are on HP-UX, ia64 and using gcc |
|
293 |
SUB_PROG_CFLAGS=-mlp64 |
|
294 |
fi |
|
295 |
||
296 |
if [ "$SUB_OS_NAME" = "SunOS" -a "$SUB_ARCH_NAME" = "sparc" -a "$CC" = "gcc" ]; then |
|
297 |
# Only if we are on SunOS, sparc and using gcc |
|
298 |
# Tells the assembler that we are dealing with a v8plusa arch sparc |
|
299 |
# and -mimpure-text is needed for shared library linking |
|
300 |
SUB_PROG_CFLAGS="-Wa,-xarch=v8plusa -mimpure-text" |
|
301 |
fi |
|
302 |
||
303 |
if [ "$SUB_OS_NAME" = "AIX" -a "$SUB_ARCH_NAME" = "power" -a "$CC" = "gcc" ]; then |
|
304 |
# Only if we are on AIX, power and using gcc |
|
305 |
# The assembler may default to generating Power and PowerPC compatible |
|
306 |
# code. We need to override that. |
|
307 |
SUB_PROG_CFLAGS=-Wa,-mpwr |
|
308 |
fi |
|
309 |
||
310 |
if [ "$SUB_OS_NAME" = "AIX" -a "$SUB_ARCH_NAME" = "ppc" -a "$CC" = "gcc" ]; then |
|
311 |
# Only if we are on AIX, ppc 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,-mppc |
|
315 |
fi |
|
316 |
||
317 |
if [ "$SUB_ARCH_NAME" = "x86_64" -a "$CC" = "gcc" ]; then |
|
318 |
# Only if we are on x86_64 and using gcc |
|
319 |
# For shared library generation, it needs this |
|
320 |
SUB_PROG_CFLAGS=-fPIC |
|
321 |
fi |
|
322 |
||
200 | 323 |
if [ "$SUB_ARCH_NAME" = "ppc" -o "$SUB_ARCH_NAME" = "powerpc" ]; then |
324 |
# PowerPC uses big endian format |
|
325 |
CANOPEN_BIG_ENDIAN=1 |
|
326 |
fi |
|
327 |
||
0 | 328 |
########################################################################### |
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
329 |
# DEFAULT TARGET/DRIVERS GUESSING # |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
330 |
########################################################################### |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
331 |
# 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
|
332 |
if [ "$SUB_TARGET" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
333 |
if [ "$SUB_OS_NAME" = "CYGWIN" ]; then |
38 | 334 |
echo "Choosing unix (cygwin) target" |
335 |
SUB_TARGET=unix |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
336 |
else |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
337 |
echo "Choosing unix target" |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
338 |
SUB_TARGET=unix |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
339 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
340 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
341 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
342 |
# Try to gess can |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
343 |
if [ "$SUB_CAN_DRIVER" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
344 |
if [ "$SUB_TARGET" = "unix" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
345 |
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
|
346 |
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
|
347 |
SUB_CAN_DRIVER=peak_linux |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
348 |
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
|
349 |
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
|
350 |
SUB_CAN_DRIVER=peak_win32 |
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
351 |
else |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
352 |
echo "Choosing virtual CAN driver." |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
353 |
SUB_CAN_DRIVER=virtual |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
354 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
355 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
356 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
357 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
358 |
# 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
|
359 |
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
|
360 |
echo "Choosing unix timers driver." |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
361 |
SUB_TIMERS_DRIVER=unix |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
362 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
363 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
364 |
# 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
|
365 |
if [ "$SUB_CAN_DRIVER" = "peak" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
366 |
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
|
367 |
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
|
368 |
exit -1 |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
369 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
370 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
371 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
372 |
########################################################################### |
0 | 373 |
# TARGET/DRIVER SPECIFIC CFLAGS and OPTIONS # |
374 |
########################################################################### |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
375 |
if [ "$SUB_TARGET" = "generic" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
376 |
if [ "$US_TO_TIMEVAL_FACTOR" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
377 |
US_TO_TIMEVAL_FACTOR=1 |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
378 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
379 |
if [ "$TIMEVAL" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
380 |
TIMEVAL=UNS64 |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
381 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
382 |
if [ "$TIMEVAL_MAX" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
383 |
TIMEVAL_MAX=0xffffffffffffffff |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
384 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
385 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
386 |
|
0 | 387 |
if [ "$SUB_TARGET" = "hcs12" ]; then |
388 |
# Only if we want to compile for a µC HCS12 |
|
81 | 389 |
# it is a big endian architecture. |
390 |
CANOPEN_BIG_ENDIAN=1 |
|
0 | 391 |
# search for gcc hcs12 compiler m6811-elf-gcc or m68hc12-gcc ? |
392 |
if [ "$CC" = "" ]; then |
|
393 |
which m6811-elf-gcc >/dev/null 2>&1 |
|
394 |
if (( $? )); then |
|
395 |
which m68hc12-gcc >/dev/null 2>&1 |
|
396 |
if (( $? )); then |
|
397 |
echo "Please use --cc flag to specify compiler" |
|
398 |
exit 0 |
|
399 |
else |
|
400 |
CC=m68hc12-gcc |
|
401 |
fi |
|
402 |
else |
|
403 |
CC=m6811-elf-gcc |
|
404 |
SUB_PROG_CFLAGS=-m68hc12 |
|
405 |
fi |
|
406 |
fi |
|
407 |
fi |
|
408 |
||
409 |
#### CAN_DRIVER #### |
|
410 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
411 |
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
|
412 |
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
|
413 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
414 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
415 |
PW32DIR=drivers/can_peak_win32 |
38 | 416 |
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
|
417 |
if [ "$PCAN_HEADER" = "" -o "PCAN_LIB" = "" ]; then |
38 | 418 |
echo "!!! ERROR !!! Please set PCAN_LIB PCAN_HEADER [PCAN_INCLUDE] to appropriate paths ! " |
419 |
fi |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
420 |
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
|
421 |
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
|
422 |
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
|
423 |
# second port handling |
e70439f50539
First working cygwin/pcan_light commit. can_peak_win32.c is obfuscated.
etisserant
parents:
40
diff
changeset
|
424 |
if [ "$PCAN2_HEADER" != "" ]; then |
e70439f50539
First working cygwin/pcan_light commit. can_peak_win32.c is obfuscated.
etisserant
parents:
40
diff
changeset
|
425 |
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
|
426 |
echo >> $PW32DIR/cancfg.h |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
427 |
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
|
428 |
echo >> $PW32DIR/cancfg.h |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
429 |
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
|
430 |
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
|
431 |
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
|
432 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
433 |
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
|
434 |
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
|
435 |
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
|
436 |
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
|
437 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
438 |
cat $PW32DIR/cancfg.h.tail >> $PW32DIR/cancfg.h |
38 | 439 |
fi |
440 |
||
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
441 |
if [ "$SUB_CAN_DRIVER" = "none" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
442 |
SUB_CAN_DRIVER= |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
443 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
444 |
|
0 | 445 |
#### TIMERS_DRIVER #### |
446 |
||
447 |
if [ "$SUB_TIMERS_DRIVER" = "unix" ]; then |
|
38 | 448 |
if [ "$SUB_OS_NAME" != "CYGWIN" ]; then |
449 |
SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS\ -lpthread\ -lrt |
|
450 |
fi |
|
0 | 451 |
fi |
452 |
||
453 |
if [ "$SUB_TIMERS_DRIVER" = "xeno" ]; then |
|
47
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
42
diff
changeset
|
454 |
SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS\ -lnative\ -lrtdm\ |
0 | 455 |
\ -L`$XENO_CONFIG --library-dir` |
456 |
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
|
457 |
RTCAN_SOCKET=1 |
0 | 458 |
fi |
459 |
||
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
460 |
if [ "$SUB_TIMERS_DRIVER" = "none" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
461 |
SUB_TIMERS_DRIVER= |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
462 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
463 |
|
0 | 464 |
########################################################################### |
465 |
# GUESS COMPILER # |
|
466 |
########################################################################### |
|
467 |
# If CC is empty, the user wanted automatic detection |
|
468 |
if [ "$CC" = "" ]; then |
|
469 |
# Check for second compiler, CC2 |
|
470 |
cat > $test.c <<EOF |
|
471 |
int main() { return 0; } |
|
472 |
EOF |
|
473 |
if test "`($CC2 -c $CFLAGS $test.c) 2>&1`" = ""; then |
|
474 |
DETECTCC=$CC2 |
|
475 |
echo "Checking for ${CC2}... Yes." |
|
476 |
else |
|
477 |
echo "Checking for ${CC2}... No." |
|
478 |
fi |
|
479 |
rm -f $test.c $test.o |
|
480 |
||
481 |
# Check for first compiler, CC1 |
|
482 |
cat > $test.c <<EOF |
|
483 |
int main() { return 0; } |
|
484 |
EOF |
|
485 |
if test "`($CC1 -c $CFLAGS $test.c) 2>&1`" = ""; then |
|
486 |
DETECTCC=$CC1 |
|
487 |
echo "Checking for ${CC1}... Yes." |
|
488 |
else |
|
489 |
echo "Checking for ${CC1}... No." |
|
490 |
fi |
|
491 |
rm -f $test.c $test.o |
|
492 |
CC=$DETECTCC |
|
493 |
fi |
|
494 |
# Check if we decided on a compiler after all |
|
495 |
if [ "$CC" = "" ]; then |
|
496 |
echo "Error: Could not find a C compiler" |
|
497 |
echo "Please supply the wanted compiler" |
|
498 |
exit -1 |
|
499 |
fi |
|
500 |
||
501 |
echo "Using ${CC}" |
|
502 |
||
503 |
########################################################################### |
|
504 |
# GUESS PREFIX's # |
|
505 |
########################################################################### |
|
506 |
||
507 |
SUB_BINUTILS_PREFIX=`echo "$CC" | sed 's/gcc$//'` |
|
508 |
||
509 |
# Guess prefix as regard cross compiling target machine |
|
510 |
if [ "$SUB_PREFIX" = "" ]; then |
|
511 |
$CC -dumpspecs |grep -A 1 'cross_compile'|grep -q 1 |
|
512 |
if (( $? )); then |
|
513 |
SUB_PREFIX=/usr/local |
|
514 |
echo "Not cross-compiling. Will install in $SUB_PREFIX"; |
|
515 |
else |
|
516 |
SUB_PREFIX=/usr/`$CC -dumpmachine` |
|
517 |
echo "This is a cross-compiler. Will install in $SUB_PREFIX"; |
|
518 |
fi |
|
519 |
fi |
|
520 |
||
521 |
echo "Using prefix: ${SUB_PREFIX}" |
|
522 |
||
523 |
########################################################################### |
|
524 |
# CANFESTIVAL DEFINES --> config.h # |
|
525 |
########################################################################### |
|
526 |
# Some CONSTANTS preparation |
|
527 |
||
528 |
# Create include/config.h with the relevant contents |
|
529 |
rm -f include/config.h |
|
77 | 530 |
echo "/* !!!!!!!!!! FILE GENERATED by configure. DO NOT EDIT !!!!!!!!!!*/" >> include/config.h |
531 |
echo "" >> include/config.h |
|
532 |
echo "/*"\ >> include/config.h |
|
0 | 533 |
echo "This file is part of CanFestival, a library implementing CanOpen Stack." >> include/config.h |
534 |
echo "" >> include/config.h |
|
535 |
echo "Copyright (C): Edouard TISSERANT and Francis DUPIN" >> include/config.h |
|
536 |
echo "See COPYING file for copyrights details." >> include/config.h |
|
537 |
echo "" >> include/config.h |
|
538 |
echo "This library is free software; you can redistribute it and/or" >> include/config.h |
|
539 |
echo "modify it under the terms of the GNU Lesser General Public" >> include/config.h |
|
540 |
echo "License as published by the Free Software Foundation; either" >> include/config.h |
|
541 |
echo "version 2.1 of the License, or (at your option) any later version." >> include/config.h |
|
542 |
echo "" >> include/config.h |
|
543 |
echo "This library is distributed in the hope that it will be useful," >> include/config.h |
|
544 |
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of" >> include/config.h |
|
545 |
echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU" >> include/config.h |
|
546 |
echo "Lesser General Public License for more details." >> include/config.h |
|
547 |
echo "" >> include/config.h |
|
548 |
echo "You should have received a copy of the GNU Lesser General Public" >> include/config.h |
|
549 |
echo "License along with this library; if not, write to the Free Software" >> include/config.h |
|
550 |
echo "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA" >> include/config.h |
|
551 |
echo "*/" >> include/config.h |
|
552 |
echo "" >> include/config.h |
|
553 |
echo "#ifndef _CONFIG_H_" >> include/config.h |
|
554 |
echo "#define _CONFIG_H_" >> include/config.h |
|
555 |
echo "" >> include/config.h |
|
556 |
for i in \ |
|
557 |
MAX_CAN_BUS_ID\ |
|
558 |
SDO_MAX_LENGTH_TRANSFERT\ |
|
559 |
SDO_MAX_SIMULTANEOUS_TRANSFERTS\ |
|
560 |
NMT_MAX_NODE_ID\ |
|
561 |
SDO_TIMEOUT_MS\ |
|
562 |
MAX_NB_TIMER\ |
|
563 |
CANOPEN_BIG_ENDIAN\ |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
564 |
US_TO_TIMEVAL_FACTOR\ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
565 |
TIMEVAL\ |
47
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
42
diff
changeset
|
566 |
TIMEVAL_MAX\ |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
42
diff
changeset
|
567 |
RTCAN_SOCKET; do |
0 | 568 |
if [ "${!i}" = "" ]; then |
77 | 569 |
echo "/* $i is not defined */" >> include/config.h |
0 | 570 |
else |
571 |
echo "#define $i ${!i}" >> include/config.h |
|
572 |
fi |
|
573 |
done |
|
574 |
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
|
575 |
|
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
|
576 |
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
|
577 |
SDO_MAX_SIMULTANEOUS_TRANSFERTS\ |
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
|
578 |
NMT_MAX_NODE_ID; 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
|
579 |
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
|
580 |
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
|
581 |
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
|
582 |
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
|
583 |
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
|
584 |
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
|
585 |
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
|
586 |
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
|
587 |
|
0 | 588 |
echo "#endif /* _CONFIG_H_ */" >> include/config.h |
589 |
||
590 |
########################################################################### |
|
591 |
# DEBUG DEFINES/CFLAGS # |
|
592 |
########################################################################### |
|
195
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
593 |
if [ "$DEBUG" = "WAR" ]; then |
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
594 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DDEBUG_WAR_CONSOLE_ON\ -DDEBUG_ERR_CONSOLE_ON\ -g |
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
595 |
fi |
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
596 |
|
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
597 |
if [ "$DEBUG" = "ERR" ]; then |
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
598 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DDEBUG_ERR_CONSOLE_ON\ -g |
0 | 599 |
fi |
600 |
||
601 |
if [ "$DEBUG" = "PDO" ]; then |
|
195
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
602 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DDEBUG_WAR_CONSOLE_ON\ -DDEBUG_ERR_CONSOLE_ON\ -g\ -DPDO_ERROR |
0 | 603 |
fi |
604 |
||
605 |
if [ "$DISABLE_OPT" = "1" ]; then |
|
606 |
SUB_OPT_CFLAGS= |
|
607 |
else |
|
608 |
SUB_OPT_CFLAGS=\$\(OPT_CFLAGS\) |
|
609 |
fi |
|
610 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
611 |
if [ "$DISABLE_DLL" = "1" ]; then |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
612 |
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
|
613 |
SUB_ENABLE_DLL_DRIVERS=0 |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
614 |
else |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
615 |
SUB_ENABLE_DLL_DRIVERS=1 |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
616 |
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
|
617 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
618 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
619 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
620 |
if [ "$DISABLE_DLL" = "1" ]; then |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
621 |
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
|
622 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
623 |
|
0 | 624 |
########################################################################### |
625 |
# CREATE MAKEFILES # |
|
626 |
########################################################################### |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
627 |
# General Makefiles |
0 | 628 |
MAKEFILES=Makefile.in\ |
629 |
\ src/Makefile.in\ |
|
630 |
\ drivers/Makefile.in\ |
|
631 |
\ objdictgen/Makefile.in\ |
|
632 |
\ examples/Makefile.in |
|
633 |
||
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
634 |
# Drivers dependent Makefiles |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
635 |
if [ "$SUB_TIMERS_DRIVER" != "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
636 |
MAKEFILES=$MAKEFILES\ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
637 |
\ 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
|
638 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
639 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
640 |
if [ "$SUB_CAN_DRIVER" != "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
641 |
MAKEFILES=$MAKEFILES\ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
642 |
\ 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
|
643 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
644 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
645 |
# Target dependent Makefiles |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
646 |
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
|
647 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
648 |
if [ "$SUB_TARGET" = "unix" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
649 |
MAKEFILES=$MAKEFILES\ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
650 |
\ examples/TestMasterSlave/Makefile.in |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
651 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
652 |
|
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
|
653 |
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
|
654 |
MAKEFILES=$MAKEFILES\ |
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
|
655 |
\ 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
|
656 |
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
|
657 |
|
0 | 658 |
if [ "$SUB_TARGET" = "hcs12" ]; then |
659 |
MAKEFILES=$MAKEFILES\ |
|
660 |
\ examples/gene_SYNC_HCS12/Makefile.in |
|
661 |
fi |
|
662 |
||
663 |
for makefile_in in $MAKEFILES; do |
|
664 |
makefile=`echo $makefile_in | sed 's:.in$::'` |
|
665 |
echo "Creating $makefile" |
|
666 |
sed < $makefile_in " |
|
667 |
s:SUB_CC:${CC}: |
|
668 |
s:SUB_PROG_CFLAGS:${SUB_PROG_CFLAGS}: |
|
669 |
s:SUB_EXE_CFLAGS:${SUB_EXE_CFLAGS}: |
|
670 |
s:SUB_PREFIX:${SUB_PREFIX}: |
|
671 |
s:SUB_OS_NAME:${SUB_OS_NAME}: |
|
672 |
s:SUB_ARCH_NAME:${SUB_ARCH_NAME}: |
|
673 |
s:SUB_OPT_CFLAGS:${SUB_OPT_CFLAGS}: |
|
674 |
s:SUB_TARGET:${SUB_TARGET}: |
|
675 |
s:SUB_BINUTILS_PREFIX:${SUB_BINUTILS_PREFIX}: |
|
676 |
s:SUB_TIMERS_DRIVER:timers_${SUB_TIMERS_DRIVER}: |
|
677 |
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
|
678 |
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
|
679 |
s:SUB_ENABLE_DLL_DRIVERS:${SUB_ENABLE_DLL_DRIVERS}: |
0 | 680 |
" > $makefile |
681 |
done |
|
682 |
||
683 |
echo "All done." |