OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [stable_0_1_0/] [or1ksim/] [configure.in] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 7 jrydberg
dnl
2
dnl Configure script for the OpenRISC 1000 simulator
3
dnl
4
dnl report bugs to jrydberg@phx.pp.se
5
dnl
6
dnl Process this file with autoconf to produce a configure script.
7
 
8 18 lampret
AC_INIT(cpu/or32/execute.c)
9 10 jrydberg
AC_CANONICAL_SYSTEM
10 26 lampret
AM_INIT_AUTOMAKE(or1ksim, 1.3)
11 7 jrydberg
AM_CONFIG_HEADER(config.h)
12
 
13 18 lampret
AC_REVISION([for or1ksim-1.2, version 2.14, from autoconf version] AC_ACVERSION)
14
SIMVERSION=1.2
15 7 jrydberg
 
16
dnl make sure we are using a recent autoconf version
17
AC_PREREQ(2.10)
18
AC_CANONICAL_HOST
19
 
20 28 lampret
dnl yuck
21
case "$target_cpu" in
22
or32*)  CPU_ARCH=or32;
23
        ARCH_ISA=OR32;;
24
dlx*)   CPU_ARCH=dlx;
25
        ARCH_ISA=DLX;;
26
esac
27
AC_SUBST(CPU_ARCH)
28
 
29 7 jrydberg
# We want these before the checks, so the checks can modify their values.
30 1308 phoenix
test -z "$CFLAGS" && CFLAGS="-g -Wall" auto_cflags=1
31 7 jrydberg
 
32
AC_PROG_CC
33
AC_MINIX
34
 
35 28 lampret
AC_PROG_MAKE_SET
36 7 jrydberg
 
37
# If we're using gcc and the user hasn't specified CFLAGS, add -O2 to CFLAGS.
38 28 lampret
test -n "$GCC" && test -n "$auto_cflags" && CFLAGS="$CFLAGS -O2 -D$ARCH_ISA"
39 7 jrydberg
 
40
AC_PROG_GCC_TRADITIONAL
41
AC_PROG_INSTALL
42
AC_CHECK_PROG(AR, ar, ar)
43
dnl Set default for ARFLAGS, since autoconf does not have a macro for it.
44
dnl This allows people to set it when running configure or make
45
test -n "$ARFLAGS" || ARFLAGS="cr"
46
AC_PROG_RANLIB
47
 
48
MAKE_SHELL=/bin/sh
49
 
50
AC_SUBST(MAKE_SHELL)
51
 
52 28 lampret
AC_TYPE_SIGNAL
53 7 jrydberg
AC_HEADER_STAT
54
AC_HEADER_DIRENT
55
AC_CHECK_FUNCS(strcasecmp select setenv putenv tcgetattr setlocale lstat)
56 1323 phoenix
AC_CHECK_FUNCS(strndup grantpt unlockpt ptsname on_exit isblank)
57 7 jrydberg
AC_FUNC_STRCOLL
58
AC_CHECK_HEADERS(unistd.h stdlib.h varargs.h stdarg.h string.h \
59 1242 hpanther
                sys/ptem.h sys/pte.h sys/stream.h sys/stropts.h sys/select.h \
60 345 erez
                termcap.h termios.h termio.h sys/file.h locale.h\
61 1350 nogj
                net/ethernet.h sys/ethernet.h malloc.h inttypes.h)
62 1242 hpanther
AC_C_BIGENDIAN
63 7 jrydberg
 
64 202 erez
dnl check for "long long" (added by Erez)
65
AC_TRY_COMPILE(,[long long ll; unsigned long long ull;],AC_DEFINE(CC_HAS_LONG_LONG))
66
 
67 1350 nogj
dnl check for {u,}int{8,16,32}_t in inttypes.h
68
AC_CHECK_TYPES([uint8_t, uint16_t, uint32_t],,, [#include ])
69
AC_CHECK_TYPES([int8_t, int16_t, int32_t],,, [#include ])
70
 
71
AC_CHECK_SIZEOF(char, 1)
72
AC_CHECK_SIZEOF(short, 1)
73
AC_CHECK_SIZEOF(int, 1)
74
AC_CHECK_SIZEOF(long, 1)
75
 
76 16 jrydberg
dnl check for GNU readline
77
AC_ARG_ENABLE(readline,
78
  [  --enable-readline       Use GNU readline], AC_CHECK_LIB(readline, add_history))
79
 
80 7 jrydberg
dnl yuck
81
case "$host_os" in
82
aix*)   prefer_curses=yes ;;
83
esac
84
 
85
case "$host_cpu" in
86
*cray*) LOCAL_CFLAGS=-DCRAY ;;
87
esac
88
 
89
case "$host_os" in
90
isc*)   LOCAL_CFLAGS=-Disc386 ;;
91
esac
92
 
93 132 chris
case "$host_os" in
94
solaris*) LIBS="-lsocket -lnsl" ;;
95
esac
96
 
97 175 markom
dnl define options
98
 
99 517 markom
AC_MSG_CHECKING(whether to enable profiling)
100
AC_ARG_ENABLE(profiling,
101
    [  --enable-profiling      generate profiling code], [
102
    case "$enableval" in
103
        yes) profile="-pg -a" ;;
104
    esac
105
])
106
AC_MSG_RESULT(${enable_profiling-no})
107
 
108 566 simons
fast_sim="0"
109 551 markom
AC_MSG_CHECKING(whether to compile fsim)
110
AC_ARG_ENABLE(fsim,
111
    [  --enable-fsim      compiles fsim, based on fast_config.c], [
112
    case "$enableval" in
113 557 markom
  no)  fast_sim="0" ;;
114
        yes) fast_sim="1" ;;
115 551 markom
    esac
116
])
117
AC_MSG_RESULT(${enable_fsim-no})
118
 
119 706 markom
simple_execution="0"
120 1345 nogj
INCLUDES="-I\${top_builddir}/cpu/$CPU_ARCH"
121 706 markom
AC_MSG_CHECKING(whether to use simple execution)
122
AC_ARG_ENABLE(simple,
123
    [  --enable-simple    compiles sim with simple execution], [
124
    case "$enableval" in
125 1345 nogj
    no) INCLUDES="-I\${top_builddir}/cpu/$CPU_ARCH" simple_execution="0" ;;
126
    yes) INCLUDES="-I\${top_srcdir}/cpu/$CPU_ARCH" simple_execution="1" ;;
127 706 markom
    esac
128
])
129
AC_MSG_RESULT(${enable_simple-no})
130
 
131 849 markom
eth_phy="0"
132
AC_MSG_CHECKING(whether to enable ethernet phy emulation)
133
AC_ARG_ENABLE(ethphy,
134 894 simons
    [  --enable-ethphy    compiles sim with ethernet phy support], [
135 849 markom
    case "$enableval" in
136
  no)  eth_phy="0" ;;
137
        yes) eth_phy="1" ;;
138
    esac
139
])
140
AC_MSG_RESULT(${enable_eth_phy-no})
141
 
142
 
143 721 markom
raw_range_stats="0"
144
AC_MSG_CHECKING(whether to use raw range stats)
145
AC_ARG_ENABLE(range_stats,
146
    [  --enable-range-stats      Specifies, whether we should do register accesses over time analysis.], [
147
    case "$enableval" in
148
  no)  raw_range_stats="0" ;;
149
        yes) raw_range_stats="1" simple_execution="1" ;;
150
    esac
151
])
152
AC_MSG_RESULT(${enable_range_stats-no})
153
 
154 910 lampret
set_ov_flag="0"
155 721 markom
AC_MSG_CHECKING(whether instructions set overflow flag)
156
AC_ARG_ENABLE(ov_flag,
157
    [  --enable-ov-flag      Whether instructions set overflow flag.], [
158
    case "$enableval" in
159
  no)  set_ov_flag="0" ;;
160
        yes) set_ov_flag="1" ;;
161
    esac
162
])
163
AC_MSG_RESULT(${enable_ov_flag-no})
164
 
165 910 lampret
set_arith_flag="0"
166 721 markom
AC_MSG_CHECKING(whether arithmethic instructions set flag)
167
AC_ARG_ENABLE(arith_flag,
168
    [  --enable-arith-flag      Whether arithmethic instructions setflag.], [
169
    case "$enableval" in
170
  no)  set_arith_flag="0" ;;
171
        yes) set_arith_flag="1" ;;
172
    esac
173
])
174
AC_MSG_RESULT(${enable_arith_flag-no})
175
 
176
AC_DEFINE_UNQUOTED(FAST_SIM, $fast_sim)
177
AC_DEFINE_UNQUOTED(RAW_RANGE_STATS, $raw_range_stats)
178
AC_DEFINE_UNQUOTED(SET_OV_FLAG, $set_ov_flag)
179
AC_DEFINE_UNQUOTED(ARITH_SET_FLAG, $set_arith_flag)
180 849 markom
AC_DEFINE_UNQUOTED(HAVE_ETH_PHY, $eth_phy)
181 706 markom
AC_DEFINE_UNQUOTED(SIMPLE_EXECUTION, $simple_execution)
182
AM_CONDITIONAL(SIMPLE_EXECUTION, test x$simple_execution = x1)
183
 
184 721 markom
 
185 175 markom
AC_MSG_CHECKING(for implementation-specific data)
186
AC_ARG_ENABLE(impl,
187
    [  --enable-impl=     use -specific environment
188
                          (one of: bender, mp3, default)], [
189
    case "$enableval" in
190
        no|default)        IMPL="DEFAULT" ;;
191
        mp3)               IMPL="MP3"     ;;
192
        bender)            IMPL="BENDER"  ;;
193
        *)
194
            AC_MSG_RESULT(failed)
195
            AC_MSG_ERROR([bad --enable-impl option])
196
            ;;
197
    esac
198
])
199
AC_MSG_RESULT(${IMPL=DEFAULT})
200
if test "$IMPL" = "DEFAULT"
201
then
202
    AC_MSG_WARN([using default environment])
203
fi
204 517 markom
 
205
test -n "$profile"  && CFLAGS="$CFLAGS $profile" LDFLAGS="$LDFLAGS $profile"
206 175 markom
IMPL="-DIMPL_$IMPL"
207 518 markom
# CFLAGS="$CFLAGS -O4"
208 175 markom
 
209 7 jrydberg
BUILD_DIR=`pwd`
210
AC_SUBST(BUILD_DIR)
211
 
212
AC_SUBST(CFLAGS)
213
AC_SUBST(LOCAL_CFLAGS)
214 1323 phoenix
dnl AC_SUBST(LOCAL_LDFLAGS) (LOCAL_LDFLAGS not defined)
215 7 jrydberg
AC_SUBST(LOCAL_DEFS)
216
 
217
AC_SUBST(AR)
218
AC_SUBST(ARFLAGS)
219
 
220
AC_SUBST(host_cpu)
221
AC_SUBST(host_os)
222
AC_SUBST(host)
223
 
224
AC_SUBST(SUMVERSION)
225
AC_SUBST(TERMCAP_LIB)
226
 
227 123 markom
AC_DEFINE(HAS_EXECUTION)
228 371 markom
AC_DEFINE(HAS_DEBUG)
229 7 jrydberg
 
230
dnl yuck
231 1345 nogj
INCLUDES="$INCLUDES -I\${top_srcdir} -I\${top_srcdir}/cpu/common \
232
-I\${top_srcdir}/cpu/or1k -I\${top_srcdir}/cache -I\${top_srcdir}/mmu \
233 103 lampret
-I\${top_srcdir}/bpb -I\${top_srcdir}/peripheral -I\${top_srcdir}/tick \
234 1345 nogj
-I\${top_srcdir}/peripheral/channels -I\${top_srcdir}/pm -I\${top_srcdir}/pic \
235
-I\${top_srcdir}/debug -I\${top_srcdir}/vapi -I\${top_srcdir}/support \
236 1350 nogj
-I\${top_srcdir}/cuc -I\${top_srcdir}/port"
237 7 jrydberg
AC_SUBST(INCLUDES)
238
 
239
AC_OUTPUT([Makefile bpb/Makefile cache/Makefile cpu/Makefile
240 879 markom
        cpu/common/Makefile cpu/or32/Makefile cuc/Makefile
241 221 markom
        cpu/or1k/Makefile cpu/dlx/Makefile debug/Makefile
242 103 lampret
        support/Makefile mmu/Makefile peripheral/Makefile tick/Makefile
243 1074 rprescott
        peripheral/channels/Makefile
244 1350 nogj
        pm/Makefile pic/Makefile vapi/Makefile port/Makefile],
245 7 jrydberg
[
246
# Makefile uses this timestamp file to record whether config.h is up to date.
247
echo > stamp-h
248
])

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.