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