author | etisserant |
Tue, 12 Feb 2008 11:52:45 +0100 | |
changeset 392 | 3788feef57e0 |
parent 391 | 7802a7d5584f |
child 398 | c928fd8cb759 |
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. |
|
360 | 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. |
|
360 | 36 |
#for a slave node, usually put 1. |
0 | 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 |
||
360 | 61 |
#Timeout in milliseconds for LSS. |
62 |
LSS_TIMEOUT_MS=1000 |
|
63 |
#Timeout in milliseconds for LSS FastScan. |
|
64 |
LSS_FS_TIMEOUT_MS=100 |
|
65 |
||
0 | 66 |
########################################################################### |
67 |
# DEFAULT BUILD OPTIONS # |
|
68 |
########################################################################### |
|
69 |
||
70 |
# Leave empty for automatic detection |
|
71 |
CC= |
|
354 | 72 |
CXX= |
73 |
LD= |
|
0 | 74 |
|
75 |
#default target |
|
76 |
SUB_TARGET= |
|
77 |
||
78 |
# First compiler option - we will check if it exists |
|
79 |
CC1=gcc |
|
80 |
# Second compiler option - we will check if it exists |
|
81 |
CC2=cc |
|
82 |
||
83 |
# Install prefix |
|
84 |
SUB_PREFIX= |
|
85 |
||
86 |
# Used for C compiler test/detection |
|
87 |
CFLAGS= |
|
88 |
test=conftest |
|
89 |
rm -f $test $test.c |
|
90 |
||
278 | 91 |
if [ "$XENO_CONFIG" = "" ]; then |
190 | 92 |
XENO_CONFIG=/usr/xenomai/bin/xeno-config |
93 |
fi |
|
0 | 94 |
|
95 |
########################################################################### |
|
96 |
# ARGUMENTS PARSING # |
|
97 |
########################################################################### |
|
98 |
while [ $# -ge 1 ]; do |
|
99 |
optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` |
|
100 |
||
101 |
case $1 in |
|
102 |
--cc=*) CC=$optarg;; |
|
341 | 103 |
--cxx=*) CXX=$optarg;; |
104 |
--ld=*) LD=$optarg;; |
|
0 | 105 |
--arch=*) SUB_ARCH_NAME=$optarg;; |
106 |
--os=*) SUB_OS_NAME=$optarg;; |
|
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
107 |
--kerneldir=*) SUB_KERNELDIR=$optarg;; |
0 | 108 |
--prefix=*) SUB_PREFIX=$optarg;; |
109 |
--target=*) SUB_TARGET=$optarg;; |
|
110 |
--can=*) SUB_CAN_DRIVER=$optarg;; |
|
111 |
--timers=*) SUB_TIMERS_DRIVER=$optarg;; |
|
112 |
--disable-Ox) DISABLE_OPT=1; |
|
113 |
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
|
114 |
--disable-dll) DISABLE_DLL=1; |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
115 |
echo "On user request: Won't create and link to dll";; |
343 | 116 |
--enable-lss) ENABLE_LSS=1; |
117 |
echo "On user request: LSS services enabled";; |
|
360 | 118 |
--enable-lss-fs) ENABLE_LSS_FS=1; |
119 |
echo "On user request: LSS FastScan service enabled";; |
|
195
1510dd61ead0
Added debug level opt in configure and re-enabled debug macros.
etisserant
parents:
190
diff
changeset
|
120 |
--debug=*) DEBUG=$optarg;; |
363
40b351ab5a93
fixed configure command line constant specification bug. Thanks to Jorge.
etisserant
parents:
360
diff
changeset
|
121 |
--MAX_CAN_BUS_ID=*) MAX_CAN_BUS_ID=$optarg;; |
40b351ab5a93
fixed configure command line constant specification bug. Thanks to Jorge.
etisserant
parents:
360
diff
changeset
|
122 |
--SDO_MAX_LENGTH_TRANSFERT=*) SDO_MAX_LENGTH_TRANSFERT=$optarg;; |
40b351ab5a93
fixed configure command line constant specification bug. Thanks to Jorge.
etisserant
parents:
360
diff
changeset
|
123 |
--SDO_MAX_SIMULTANEOUS_TRANSFERTS=*) SDO_MAX_SIMULTANEOUS_TRANSFERTS=$optarg;; |
40b351ab5a93
fixed configure command line constant specification bug. Thanks to Jorge.
etisserant
parents:
360
diff
changeset
|
124 |
--NMT_MAX_NODE_ID=*) NMT_MAX_NODE_ID=$optarg;; |
40b351ab5a93
fixed configure command line constant specification bug. Thanks to Jorge.
etisserant
parents:
360
diff
changeset
|
125 |
--SDO_TIMEOUT_MS=*) SDO_TIMEOUT_MS=$optarg;; |
40b351ab5a93
fixed configure command line constant specification bug. Thanks to Jorge.
etisserant
parents:
360
diff
changeset
|
126 |
--CANOPEN_BIG_ENDIAN=*) CANOPEN_BIG_ENDIAN=$optarg;; |
40b351ab5a93
fixed configure command line constant specification bug. Thanks to Jorge.
etisserant
parents:
360
diff
changeset
|
127 |
--MAX_NB_TIMER=*) MAX_NB_TIMER=$optarg;; |
40b351ab5a93
fixed configure command line constant specification bug. Thanks to Jorge.
etisserant
parents:
360
diff
changeset
|
128 |
--EMCY_MAX_ERRORS=*) EMCY_MAX_ERRORS=$optarg;; |
360 | 129 |
--LSS_TIMEOUT_MS=*) LSS_TIMEOUT_MS=$optarg;; |
130 |
--LSS_FS_TIMEOUT_MS=*) LSS_FS_TIMEOUT_MS=$optarg;; |
|
341 | 131 |
--help) |
132 |
echo "Usage: ./configure [options]" |
|
133 |
echo "Options:" |
|
134 |
echo " --cc=foo Use C compiler 'foo' instead of defaults ${CC1} or ${CC2}." |
|
135 |
echo " --cxx=foo Use C++ compiler 'foo' instead of defaults g++." |
|
136 |
echo " --ld=foo Use linker 'foo' instead of ld." |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
137 |
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
|
138 |
echo " --os=foo Use operative system 'foo' instead of trying to autodetect." |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
139 |
echo " --kerneldir=foo Use 'foo' as kernel source directory instead of default" |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
140 |
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
|
141 |
echo " --target=foo Use 'foo' as build target." |
341 | 142 |
echo " \"unix\" for unix-like systems (Linux, Cygwin)" |
143 |
echo " \"win32\" for win32 systems (native, mingw or VC++)" |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
144 |
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
|
145 |
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
|
146 |
echo " \"peak_linux\" use Linux build host installed Peak driver and library" |
341 | 147 |
echo " see http://www.peak-system.com/linux/" |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
148 |
echo " \"peak_win32\" use win32 PcanLight Peak driver and library with Cygwin" |
341 | 149 |
echo " see http://www.peak-system.com/themen/download_gb.html" |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
150 |
echo " \"virtual\" use unix pipe based virtual can driver" |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
151 |
echo " \"virtual_kernel\" use kernel module virtual can driver" |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
152 |
echo " \"socket\" use socket-can " |
341 | 153 |
echo " see http://developer.berlios.de/projects/socketcan/" |
154 |
echo " \"lincan\" lincan driver" |
|
155 |
echo " see http://www.ocera.org/download/components/WP7/lincan-0.3.3.html" |
|
364 | 156 |
echo " \"can4linux\" can4linux driver" |
157 |
echo " see http://www.port.de/engl/canprod/hw_can4linux.html" |
|
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
158 |
echo " --timers=foo Use 'foo' as TIMERS driver (can be 'unix', 'xeno' or 'kernel')" |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
159 |
echo " --disable-dll Disable run-time dynamic linking of can, led and nvram drivers" |
343 | 160 |
echo " --enable-lss Enable the LSS services" |
360 | 161 |
echo " --enable-lss-fs Enable the LSS FastScan service" |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
162 |
echo " --disable-Ox Disable gcc \"-Ox\" optimizations." |
329 | 163 |
echo " --debug=foo,foo,.. Enable debug messages, ERR -> only errors, WAR)." |
341 | 164 |
echo " \"PDO\" send errors and warnings through PDO messages" |
165 |
echo " \"ERR\" print errors only, to stdout" |
|
166 |
echo " \"WAR\" print errors and warnings, to stdout" |
|
167 |
echo " \"MSG\" print messages content, to stdout" |
|
0 | 168 |
echo |
169 |
echo "Stack compilation constants" |
|
170 |
echo " --MAX_CAN_BUS_ID [=1] Number of can bus to use" |
|
171 |
echo " --SDO_MAX_LENGTH_TRANSFERT [=32] max bytes to transmit by SDO" |
|
172 |
echo " --SDO_MAX_SIMULTANEOUS_TRANSFERTS [=4] Number of SDO that the node can manage concurrently" |
|
173 |
echo " --NMT_MAX_NODE_ID [=128] can be reduced to gain memory on small network" |
|
174 |
echo " --SDO_TIMEOUT_MS [=3000] Timeout in milliseconds for SDO (None to disable the feature)" |
|
284 | 175 |
echo " --EMCY_MAX_ERRORS [=8] Max number of active errors managed in error_data structure" |
360 | 176 |
echo " --LSS_TIMEOUT_MS [=1000] Timeout in milliseconds for LSS services." |
177 |
echo " LSS must be enabled with \"--enable-lss\"" |
|
178 |
echo " --LSS_FS_TIMEOUT_MS [=100] Timeout in milliseconds for LSS FastScan service." |
|
179 |
echo " LSS FastScan must be enabled with \"--enable-lss-fs\"" |
|
0 | 180 |
exit 0;; |
181 |
*) echo "Unknown argument ${1}"; exit -1;; |
|
182 |
esac |
|
183 |
||
184 |
shift |
|
185 |
done |
|
186 |
||
187 |
########################################################################### |
|
188 |
# GUESS OS/ARCH # |
|
189 |
########################################################################### |
|
190 |
||
191 |
if [ "$SUB_OS_NAME" = "" ]; then |
|
192 |
SUB_OS_NAME="`(uname -s | sed \"s/\//-/\" | sed \"s/_/-/\" \ |
|
193 |
| sed \"s/-.*//g\") 2>&1`" |
|
194 |
fi |
|
195 |
||
196 |
if [ "$SUB_ARCH_NAME" = "" ]; then |
|
197 |
if [ "$CC" = "" ]; then |
|
198 |
A_NAME="`(uname -m) 2>&1`" |
|
199 |
else |
|
200 |
A_NAME="`$CC -dumpmachine | sed 's:-.*::'`" |
|
201 |
fi |
|
202 |
fi |
|
203 |
||
204 |
# x86 |
|
341 | 205 |
if [ "$A_NAME" = "i386" -o "$A_NAME" = "i486" -o "$A_NAME" = "i586" -o "$A_NAME" = "i686" -o "$A_NAME" = "x86" ]; then |
0 | 206 |
SUB_ARCH_NAME=x86 |
207 |
fi |
|
208 |
||
209 |
# x86_64 |
|
210 |
if [ "$A_NAME" = "x86_64" ]; then |
|
211 |
SUB_ARCH_NAME=x86_64 |
|
212 |
fi |
|
213 |
||
214 |
# ppc |
|
215 |
if [ "$A_NAME" = "powerpc" ]; then |
|
216 |
SUB_ARCH_NAME=ppc |
|
217 |
fi |
|
218 |
||
219 |
# ppc64 |
|
220 |
if [ "$A_NAME" = "powerpc64" ]; then |
|
221 |
SUB_ARCH_NAME=ppc64 |
|
222 |
fi |
|
223 |
||
224 |
# arm |
|
225 |
if [ "$A_NAME" = "arm" ]; then |
|
226 |
SUB_ARCH_NAME=arm |
|
227 |
fi |
|
228 |
||
376
b082ffeef254
little fix on arch detection when using mingw32-only compiler from within cygwin's bash
etisserant
parents:
364
diff
changeset
|
229 |
# mingw32 |
b082ffeef254
little fix on arch detection when using mingw32-only compiler from within cygwin's bash
etisserant
parents:
364
diff
changeset
|
230 |
if [ "$A_NAME" = "mingw32" ]; then |
b082ffeef254
little fix on arch detection when using mingw32-only compiler from within cygwin's bash
etisserant
parents:
364
diff
changeset
|
231 |
SUB_ARCH_NAME=mingw32 |
b082ffeef254
little fix on arch detection when using mingw32-only compiler from within cygwin's bash
etisserant
parents:
364
diff
changeset
|
232 |
fi |
b082ffeef254
little fix on arch detection when using mingw32-only compiler from within cygwin's bash
etisserant
parents:
364
diff
changeset
|
233 |
|
0 | 234 |
if [ "$SUB_ARCH_NAME" = "" ]; then |
235 |
echo "Error: could not detect what architecture this system is running!" |
|
236 |
echo "Please supply manually instead with \"--arch=foo\"" |
|
237 |
exit -1 |
|
238 |
fi |
|
239 |
||
376
b082ffeef254
little fix on arch detection when using mingw32-only compiler from within cygwin's bash
etisserant
parents:
364
diff
changeset
|
240 |
echo "Host OS: ${SUB_OS_NAME}" |
b082ffeef254
little fix on arch detection when using mingw32-only compiler from within cygwin's bash
etisserant
parents:
364
diff
changeset
|
241 |
echo "Host arch: ${SUB_ARCH_NAME}" |
0 | 242 |
|
243 |
if [ "$SUB_ARCH_NAME" = "x86_64" -a "$CC" = "gcc" ]; then |
|
244 |
# Only if we are on x86_64 and using gcc |
|
245 |
# For shared library generation, it needs this |
|
246 |
SUB_PROG_CFLAGS=-fPIC |
|
247 |
fi |
|
248 |
||
200 | 249 |
if [ "$SUB_ARCH_NAME" = "ppc" -o "$SUB_ARCH_NAME" = "powerpc" ]; then |
250 |
# PowerPC uses big endian format |
|
251 |
CANOPEN_BIG_ENDIAN=1 |
|
252 |
fi |
|
253 |
||
0 | 254 |
########################################################################### |
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
255 |
# DEFAULT TARGET/DRIVERS GUESSING # |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
256 |
########################################################################### |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
257 |
# 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
|
258 |
if [ "$SUB_TARGET" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
259 |
if [ "$SUB_OS_NAME" = "CYGWIN" ]; then |
38 | 260 |
echo "Choosing unix (cygwin) target" |
261 |
SUB_TARGET=unix |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
262 |
fi |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
263 |
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
|
264 |
echo "Choosing unix target" |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
265 |
SUB_TARGET=unix |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
266 |
fi |
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
267 |
if [ "$SUB_OS_NAME" = "MINGW32" ]; then |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
268 |
echo "Choosing windows target" |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
269 |
SUB_TARGET=win32 |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
270 |
fi |
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
271 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
272 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
273 |
# Try to gess can |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
274 |
if [ "$SUB_CAN_DRIVER" = "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
275 |
if [ "$SUB_TARGET" = "unix" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
276 |
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
|
277 |
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
|
278 |
SUB_CAN_DRIVER=peak_linux |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
279 |
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
|
280 |
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
|
281 |
SUB_CAN_DRIVER=peak_win32 |
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
282 |
else |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
283 |
echo "Choosing virtual CAN driver." |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
284 |
SUB_CAN_DRIVER=virtual |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
285 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
286 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
287 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
288 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
289 |
# 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
|
290 |
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
|
291 |
echo "Choosing unix timers driver." |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
292 |
SUB_TIMERS_DRIVER=unix |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
293 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
294 |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
295 |
# If target is windows, default timers also |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
296 |
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
|
297 |
echo "Choosing windows timers driver." |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
298 |
SUB_TIMERS_DRIVER=win32 |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
299 |
fi |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
300 |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
301 |
# 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
|
302 |
if [ "$SUB_CAN_DRIVER" = "peak" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
303 |
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
|
304 |
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
|
305 |
exit -1 |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
306 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
307 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
308 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
309 |
########################################################################### |
0 | 310 |
# TARGET/DRIVER SPECIFIC CFLAGS and OPTIONS # |
311 |
########################################################################### |
|
312 |
if [ "$SUB_TARGET" = "hcs12" ]; then |
|
360 | 313 |
# Only if we want to compile for a C HCS12 |
81 | 314 |
# it is a big endian architecture. |
315 |
CANOPEN_BIG_ENDIAN=1 |
|
0 | 316 |
# search for gcc hcs12 compiler m6811-elf-gcc or m68hc12-gcc ? |
317 |
if [ "$CC" = "" ]; then |
|
318 |
which m6811-elf-gcc >/dev/null 2>&1 |
|
319 |
if (( $? )); then |
|
320 |
which m68hc12-gcc >/dev/null 2>&1 |
|
321 |
if (( $? )); then |
|
322 |
echo "Please use --cc flag to specify compiler" |
|
323 |
exit 0 |
|
324 |
else |
|
325 |
CC=m68hc12-gcc |
|
326 |
fi |
|
327 |
else |
|
328 |
CC=m6811-elf-gcc |
|
329 |
SUB_PROG_CFLAGS=-m68hc12 |
|
330 |
fi |
|
331 |
fi |
|
332 |
fi |
|
333 |
||
334 |
#### CAN_DRIVER #### |
|
335 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
336 |
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
|
337 |
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
|
338 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
339 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
340 |
PW32DIR=drivers/can_peak_win32 |
38 | 341 |
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
|
342 |
if [ "$PCAN_HEADER" = "" -o "PCAN_LIB" = "" ]; then |
38 | 343 |
echo "!!! ERROR !!! Please set PCAN_LIB PCAN_HEADER [PCAN_INCLUDE] to appropriate paths ! " |
344 |
fi |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
345 |
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
|
346 |
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
|
347 |
cat $PW32DIR/cancfg.h.head $PCAN_INCLUDE/$PCAN_HEADER > $PW32DIR/cancfg.h |
331 | 348 |
echo >> $PW32DIR/cancfg.h |
41
e70439f50539
First working cygwin/pcan_light commit. can_peak_win32.c is obfuscated.
etisserant
parents:
40
diff
changeset
|
349 |
# second port handling |
e70439f50539
First working cygwin/pcan_light commit. can_peak_win32.c is obfuscated.
etisserant
parents:
40
diff
changeset
|
350 |
if [ "$PCAN2_HEADER" != "" ]; then |
e70439f50539
First working cygwin/pcan_light commit. can_peak_win32.c is obfuscated.
etisserant
parents:
40
diff
changeset
|
351 |
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
|
352 |
echo >> $PW32DIR/cancfg.h |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
353 |
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
|
354 |
echo >> $PW32DIR/cancfg.h |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
355 |
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
|
356 |
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
|
357 |
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
|
358 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
359 |
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
|
360 |
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
|
361 |
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
|
362 |
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
|
363 |
fi |
331 | 364 |
if ! grep -q CAN_Init $PW32DIR/cancfg.h ; then |
365 |
echo "Pcan Light header/lib is for second port of device only" |
|
366 |
echo "CAN_* calls redefined to CAN2_* " |
|
367 |
echo '#define CAN_Init CAN2_Init' >> $PW32DIR/cancfg.h |
|
368 |
echo '#define CAN_Read CAN2_Read' >> $PW32DIR/cancfg.h |
|
369 |
echo '#define CAN_Write CAN2_Write' >> $PW32DIR/cancfg.h |
|
370 |
echo '#define CAN_Close CAN2_Close' >> $PW32DIR/cancfg.h |
|
371 |
fi |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
372 |
cat $PW32DIR/cancfg.h.tail >> $PW32DIR/cancfg.h |
38 | 373 |
fi |
374 |
||
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
375 |
if [ "$SUB_CAN_DRIVER" = "none" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
376 |
SUB_CAN_DRIVER= |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
377 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
378 |
|
0 | 379 |
#### TIMERS_DRIVER #### |
380 |
||
381 |
if [ "$SUB_TIMERS_DRIVER" = "unix" ]; then |
|
38 | 382 |
if [ "$SUB_OS_NAME" != "CYGWIN" ]; then |
383 |
SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS\ -lpthread\ -lrt |
|
384 |
fi |
|
0 | 385 |
fi |
386 |
||
387 |
if [ "$SUB_TIMERS_DRIVER" = "xeno" ]; then |
|
341 | 388 |
SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS\ -lnative\ -lrtdm\ -L`$XENO_CONFIG --library-dir` |
0 | 389 |
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
|
390 |
RTCAN_SOCKET=1 |
0 | 391 |
fi |
392 |
||
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
393 |
if [ "$SUB_TIMERS_DRIVER" = "kernel" ]; then |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
394 |
DISABLE_DLL=1 |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
395 |
if [ "$SUB_KERNELDIR" = "" ]; then |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
396 |
# use directory of current kernel |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
397 |
SUB_KERNELDIR=/lib/modules/$(uname -r)/build |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
398 |
fi |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
399 |
fi |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
400 |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
401 |
if [ "$SUB_TIMERS_DRIVER" = "none" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
402 |
SUB_TIMERS_DRIVER= |
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 |
########################################################################### |
354 | 406 |
# GUESS TOOLCHAIN # |
0 | 407 |
########################################################################### |
408 |
# If CC is empty, the user wanted automatic detection |
|
409 |
if [ "$CC" = "" ]; then |
|
410 |
# Check for second compiler, CC2 |
|
411 |
cat > $test.c <<EOF |
|
412 |
int main() { return 0; } |
|
413 |
EOF |
|
414 |
if test "`($CC2 -c $CFLAGS $test.c) 2>&1`" = ""; then |
|
415 |
DETECTCC=$CC2 |
|
416 |
echo "Checking for ${CC2}... Yes." |
|
417 |
else |
|
418 |
echo "Checking for ${CC2}... No." |
|
419 |
fi |
|
420 |
rm -f $test.c $test.o |
|
421 |
||
422 |
# Check for first compiler, CC1 |
|
423 |
cat > $test.c <<EOF |
|
424 |
int main() { return 0; } |
|
425 |
EOF |
|
426 |
if test "`($CC1 -c $CFLAGS $test.c) 2>&1`" = ""; then |
|
427 |
DETECTCC=$CC1 |
|
428 |
echo "Checking for ${CC1}... Yes." |
|
429 |
else |
|
430 |
echo "Checking for ${CC1}... No." |
|
431 |
fi |
|
432 |
rm -f $test.c $test.o |
|
433 |
CC=$DETECTCC |
|
434 |
fi |
|
435 |
# Check if we decided on a compiler after all |
|
436 |
if [ "$CC" = "" ]; then |
|
437 |
echo "Error: Could not find a C compiler" |
|
438 |
echo "Please supply the wanted compiler" |
|
439 |
exit -1 |
|
440 |
fi |
|
441 |
||
354 | 442 |
echo "Using ${CC} as a C compiler" |
0 | 443 |
|
444 |
SUB_BINUTILS_PREFIX=`echo "$CC" | sed 's/gcc$//'` |
|
445 |
||
354 | 446 |
if [ "$CXX" = "" ]; then |
447 |
CXX=${SUB_BINUTILS_PREFIX}g++ |
|
448 |
fi |
|
449 |
||
450 |
echo "Using ${CXX} as a C++ compiler" |
|
451 |
||
452 |
if [ "$SUB_TARGET" = "win32" ]; then |
|
453 |
# on cygwin/mingw, choose g++ as a linker for native target |
|
454 |
if [ "$LD" = "" ]; then |
|
455 |
LD=$CXX |
|
456 |
fi |
|
457 |
if [ "$SUB_OS_NAME" = "CYGWIN" ]; then |
|
458 |
SUB_PROG_CFLAGS="-mno-cygwin" |
|
459 |
fi |
|
460 |
fi |
|
461 |
||
462 |
if [ "$SUB_TARGET" = "unix" ]; then |
|
463 |
if [ "$LD" = "" ]; then |
|
464 |
LD=$CC |
|
465 |
fi |
|
466 |
fi |
|
467 |
||
468 |
echo "Using ${LD} as a linker" |
|
469 |
||
0 | 470 |
# Guess prefix as regard cross compiling target machine |
471 |
if [ "$SUB_PREFIX" = "" ]; then |
|
472 |
$CC -dumpspecs |grep -A 1 'cross_compile'|grep -q 1 |
|
473 |
if (( $? )); then |
|
474 |
SUB_PREFIX=/usr/local |
|
475 |
echo "Not cross-compiling. Will install in $SUB_PREFIX"; |
|
476 |
else |
|
477 |
SUB_PREFIX=/usr/`$CC -dumpmachine` |
|
478 |
echo "This is a cross-compiler. Will install in $SUB_PREFIX"; |
|
479 |
fi |
|
480 |
fi |
|
481 |
||
482 |
echo "Using prefix: ${SUB_PREFIX}" |
|
483 |
||
484 |
########################################################################### |
|
354 | 485 |
# GUESS DEPENDENCIES # |
486 |
########################################################################### |
|
487 |
||
488 |
if which wx-config >/dev/null 2>&1; then |
|
489 |
echo -n "Testing wxWidgets compiles ... " |
|
490 |
cat > /tmp/wx_test.cpp <<EOF |
|
491 |
#include "wx/wx.h" |
|
492 |
class MyApp : public wxApp |
|
493 |
{ |
|
494 |
}; |
|
495 |
IMPLEMENT_APP(MyApp) |
|
496 |
EOF |
|
497 |
if $CXX /tmp/wx_test.cpp `wx-config --cxxflags` `wx-config --libs` -o /tmp/wx_test >/dev/null 2>&1 ; then |
|
498 |
SUB_WX=1 |
|
499 |
echo "Yes" |
|
500 |
else |
|
501 |
SUB_WX=0 |
|
502 |
echo "No" |
|
503 |
fi |
|
504 |
rm -f /tmp/wx_test* |
|
505 |
else |
|
506 |
SUB_WX=0 |
|
507 |
echo "No wxWidgets available" |
|
508 |
fi |
|
509 |
||
510 |
########################################################################### |
|
0 | 511 |
# CANFESTIVAL DEFINES --> config.h # |
512 |
########################################################################### |
|
513 |
# Some CONSTANTS preparation |
|
514 |
||
515 |
# Create include/config.h with the relevant contents |
|
516 |
rm -f include/config.h |
|
77 | 517 |
echo "/* !!!!!!!!!! FILE GENERATED by configure. DO NOT EDIT !!!!!!!!!!*/" >> include/config.h |
518 |
echo "" >> include/config.h |
|
519 |
echo "/*"\ >> include/config.h |
|
0 | 520 |
echo "This file is part of CanFestival, a library implementing CanOpen Stack." >> include/config.h |
521 |
echo "" >> include/config.h |
|
522 |
echo "Copyright (C): Edouard TISSERANT and Francis DUPIN" >> include/config.h |
|
523 |
echo "See COPYING file for copyrights details." >> include/config.h |
|
524 |
echo "" >> include/config.h |
|
525 |
echo "This library is free software; you can redistribute it and/or" >> include/config.h |
|
526 |
echo "modify it under the terms of the GNU Lesser General Public" >> include/config.h |
|
527 |
echo "License as published by the Free Software Foundation; either" >> include/config.h |
|
528 |
echo "version 2.1 of the License, or (at your option) any later version." >> include/config.h |
|
529 |
echo "" >> include/config.h |
|
530 |
echo "This library is distributed in the hope that it will be useful," >> include/config.h |
|
531 |
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of" >> include/config.h |
|
532 |
echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU" >> include/config.h |
|
533 |
echo "Lesser General Public License for more details." >> include/config.h |
|
534 |
echo "" >> include/config.h |
|
535 |
echo "You should have received a copy of the GNU Lesser General Public" >> include/config.h |
|
536 |
echo "License along with this library; if not, write to the Free Software" >> include/config.h |
|
537 |
echo "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA" >> include/config.h |
|
538 |
echo "*/" >> include/config.h |
|
539 |
echo "" >> include/config.h |
|
540 |
echo "#ifndef _CONFIG_H_" >> include/config.h |
|
541 |
echo "#define _CONFIG_H_" >> include/config.h |
|
542 |
echo "" >> include/config.h |
|
543 |
for i in \ |
|
544 |
MAX_CAN_BUS_ID\ |
|
545 |
SDO_MAX_LENGTH_TRANSFERT\ |
|
546 |
SDO_MAX_SIMULTANEOUS_TRANSFERTS\ |
|
547 |
NMT_MAX_NODE_ID\ |
|
548 |
SDO_TIMEOUT_MS\ |
|
549 |
MAX_NB_TIMER\ |
|
550 |
CANOPEN_BIG_ENDIAN\ |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
551 |
US_TO_TIMEVAL_FACTOR\ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
552 |
TIMEVAL\ |
47
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
42
diff
changeset
|
553 |
TIMEVAL_MAX\ |
284 | 554 |
RTCAN_SOCKET\ |
360 | 555 |
EMCY_MAX_ERRORS\ |
556 |
LSS_TIMEOUT_MS\ |
|
557 |
LSS_FS_TIMEOUT_MS; do |
|
0 | 558 |
if [ "${!i}" = "" ]; then |
77 | 559 |
echo "/* $i is not defined */" >> include/config.h |
0 | 560 |
else |
561 |
echo "#define $i ${!i}" >> include/config.h |
|
562 |
fi |
|
563 |
done |
|
564 |
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
|
565 |
|
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
|
566 |
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
|
567 |
SDO_MAX_SIMULTANEOUS_TRANSFERTS\ |
284 | 568 |
NMT_MAX_NODE_ID\ |
569 |
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
|
570 |
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
|
571 |
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
|
572 |
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
|
573 |
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
|
574 |
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
|
575 |
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
|
576 |
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
|
577 |
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
|
578 |
|
0 | 579 |
echo "#endif /* _CONFIG_H_ */" >> include/config.h |
580 |
||
581 |
########################################################################### |
|
582 |
# DEBUG DEFINES/CFLAGS # |
|
583 |
########################################################################### |
|
329 | 584 |
|
585 |
save_ifs="$IFS"; IFS=',' |
|
586 |
||
587 |
for DEBUG_METHOD in $DEBUG; |
|
588 |
do |
|
589 |
IFS="$save_ifs" |
|
590 |
case $DEBUG_METHOD in |
|
591 |
ERR)ERR=1;; |
|
592 |
WAR)WAR=1;ERR=1;; |
|
593 |
MSG)MSG=1;; |
|
594 |
PDO)PDO=1;WAR=1;ERR=1;; |
|
595 |
*)echo "" |
|
596 |
echo "$DEBUG_METHOD is not a valid debug's method" |
|
597 |
echo "Possible Debug's methods are : \"ERR\", \"WAR\", \"MSG\", \"PDO\"" |
|
598 |
exit -1 |
|
599 |
;; |
|
600 |
esac |
|
601 |
done |
|
602 |
||
603 |
if [ $WAR ]; then |
|
604 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DDEBUG_WAR_CONSOLE_ON; |
|
605 |
fi |
|
606 |
||
607 |
if [ $ERR ]; then |
|
608 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DDEBUG_ERR_CONSOLE_ON; |
|
609 |
fi |
|
610 |
||
611 |
if [ $MSG ]; then |
|
612 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DDEBUG_MSG_CONSOLE_ON; |
|
613 |
fi |
|
614 |
||
615 |
if [ $PDO ]; then |
|
616 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DDEBUG_PDO_CONSOLE_ON; |
|
617 |
fi |
|
618 |
||
619 |
if [ $DEBUG ]; then |
|
620 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -g |
|
621 |
fi |
|
622 |
||
623 |
IFS="$save_ifs" |
|
0 | 624 |
|
625 |
if [ "$DISABLE_OPT" = "1" ]; then |
|
626 |
SUB_OPT_CFLAGS= |
|
627 |
else |
|
628 |
SUB_OPT_CFLAGS=\$\(OPT_CFLAGS\) |
|
629 |
fi |
|
630 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
631 |
if [ "$DISABLE_DLL" = "1" ]; then |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
632 |
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
|
633 |
SUB_ENABLE_DLL_DRIVERS=0 |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
634 |
else |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
635 |
SUB_ENABLE_DLL_DRIVERS=1 |
354 | 636 |
if [ "$SUB_TARGET" = "win32" ]; then |
351
fb106ad03770
fix SUB_EXE_CFLAGS in configure to link without "-ldl" when use MINGW
greg
parents:
343
diff
changeset
|
637 |
SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS |
fb106ad03770
fix SUB_EXE_CFLAGS in configure to link without "-ldl" when use MINGW
greg
parents:
343
diff
changeset
|
638 |
else |
fb106ad03770
fix SUB_EXE_CFLAGS in configure to link without "-ldl" when use MINGW
greg
parents:
343
diff
changeset
|
639 |
SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS\ -ldl |
fb106ad03770
fix SUB_EXE_CFLAGS in configure to link without "-ldl" when use MINGW
greg
parents:
343
diff
changeset
|
640 |
fi |
fb106ad03770
fix SUB_EXE_CFLAGS in configure to link without "-ldl" when use MINGW
greg
parents:
343
diff
changeset
|
641 |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
642 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
643 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
644 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
645 |
if [ "$DISABLE_DLL" = "1" ]; then |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
646 |
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
|
647 |
fi |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
93
diff
changeset
|
648 |
|
343 | 649 |
if [ $ENABLE_LSS ]; then |
650 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DCO_ENABLE_LSS; |
|
651 |
SUB_ENABLE_LSS=1 |
|
360 | 652 |
if [ $ENABLE_LSS_FS ]; then |
653 |
SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DCO_ENABLE_LSS_FS; |
|
654 |
fi |
|
343 | 655 |
else |
656 |
SUB_ENABLE_LSS=0 |
|
657 |
fi |
|
658 |
||
0 | 659 |
########################################################################### |
660 |
# CREATE MAKEFILES # |
|
661 |
########################################################################### |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
662 |
# General Makefiles |
0 | 663 |
MAKEFILES=Makefile.in\ |
664 |
\ src/Makefile.in\ |
|
665 |
\ drivers/Makefile.in\ |
|
666 |
\ 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
|
667 |
\ 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
|
668 |
\ objdictgen/canfestival_config.py.in |
0 | 669 |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
670 |
# Drivers dependent Makefiles |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
671 |
if [ "$SUB_TIMERS_DRIVER" != "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
672 |
MAKEFILES=$MAKEFILES\ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
673 |
\ 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
|
674 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
675 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
676 |
if [ "$SUB_CAN_DRIVER" != "" ]; then |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
677 |
MAKEFILES=$MAKEFILES\ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
678 |
\ 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
|
679 |
fi |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
680 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
681 |
# Target dependent Makefiles |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
682 |
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
|
683 |
|
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
684 |
if [ "$SUB_TARGET" = "unix" -a "$SUB_TIMERS_DRIVER" = "kernel" ]; then |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
685 |
MAKEFILES=$MAKEFILES\ |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
686 |
\ examples/kerneltest/Makefile.in |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
687 |
|
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
688 |
elif [ "$SUB_TARGET" = "unix" ]; then |
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
689 |
MAKEFILES=$MAKEFILES\ |
381 | 690 |
\ examples/TestMasterSlave/Makefile.in\ |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
691 |
\ examples/TestMasterSlaveLSS/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
|
692 |
\ 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
|
693 |
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
|
694 |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
695 |
if [ "$SUB_TARGET" = "win32" ]; then |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
696 |
MAKEFILES=$MAKEFILES\ |
329 | 697 |
\ examples/TestMasterSlave/Makefile.in\ |
381 | 698 |
\ examples/TestMasterSlaveLSS/Makefile.in\ |
354 | 699 |
\ examples/TestMasterMicroMod/Makefile.in |
700 |
fi |
|
701 |
||
702 |
if [ "$SUB_WX" = "1" ]; then |
|
703 |
MAKEFILES=$MAKEFILES\ |
|
329 | 704 |
\ examples/DS401_Master/Makefile.in\ |
705 |
\ examples/DS401_Slave_Gui/Makefile.in |
|
706 |
fi |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
246
diff
changeset
|
707 |
|
0 | 708 |
if [ "$SUB_TARGET" = "hcs12" ]; then |
709 |
MAKEFILES=$MAKEFILES\ |
|
710 |
\ examples/gene_SYNC_HCS12/Makefile.in |
|
711 |
fi |
|
712 |
||
713 |
for makefile_in in $MAKEFILES; do |
|
714 |
makefile=`echo $makefile_in | sed 's:.in$::'` |
|
715 |
echo "Creating $makefile" |
|
716 |
sed < $makefile_in " |
|
717 |
s:SUB_CC:${CC}: |
|
329 | 718 |
s:SUB_CXX:${CXX}: |
719 |
s:SUB_LD:${LD}: |
|
0 | 720 |
s:SUB_PROG_CFLAGS:${SUB_PROG_CFLAGS}: |
721 |
s:SUB_EXE_CFLAGS:${SUB_EXE_CFLAGS}: |
|
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
722 |
s:SUB_KERNELDIR:${SUB_KERNELDIR}: |
0 | 723 |
s:SUB_PREFIX:${SUB_PREFIX}: |
724 |
s:SUB_OS_NAME:${SUB_OS_NAME}: |
|
725 |
s:SUB_ARCH_NAME:${SUB_ARCH_NAME}: |
|
726 |
s:SUB_OPT_CFLAGS:${SUB_OPT_CFLAGS}: |
|
727 |
s:SUB_TARGET:${SUB_TARGET}: |
|
728 |
s:SUB_BINUTILS_PREFIX:${SUB_BINUTILS_PREFIX}: |
|
729 |
s:SUB_TIMERS_DRIVER:timers_${SUB_TIMERS_DRIVER}: |
|
730 |
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
|
731 |
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
|
732 |
s:SUB_ENABLE_DLL_DRIVERS:${SUB_ENABLE_DLL_DRIVERS}: |
343 | 733 |
s:SUB_ENABLE_LSS:${SUB_ENABLE_LSS}: |
354 | 734 |
s:SUB_WX:${SUB_WX}: |
0 | 735 |
" > $makefile |
736 |
done |
|
737 |
||
738 |
echo "All done." |