o32.S (ffi_call_O32, [...]): Use jalr instead of jal.
[gcc.git] / libjava / configure.host
1 # configure.host
2
3 # This shell script handles all host based configuration for libgcj.
4 # It sets various shell variables based on the the host and the
5 # configuration options. You can modify this shell script without
6 # needing to rerun autoconf.
7
8 # This shell script should be invoked as
9 # . configure.host
10 # If it encounters an error, it will exit with a message.
11
12 # It uses the following shell variables:
13 # host The configuration host
14 # host_cpu The configuration host CPU
15 # target_optspace --enable-target-optspace ("yes", "no", "")
16
17 # It sets the following shell variables:
18 # libgcj_cflags Special CFLAGS to use when building
19 # libgcj_cxxflags Special CXXFLAGS to use when building
20 # libgcj_javaflags Special JAVAFLAGS to use when building
21 # libgcj_interpreter If the bytecode interpreter supports this platform.
22 # enable_java_net_default If java.net native code should be enabled by
23 # default.
24 # enable_hash_synchronization_default If hash synchronization should be
25 # enabled by default.
26 # sysdeps_dir Directory containing system-dependent headers
27 # slow_pthread_self The synchronization code should try to avoid
28 # pthread_self calls by caching thread IDs in a hashtable
29 # can_unwind_signal Set to "yes" if the EH unwinder supports throwing
30 # from a signal handler.
31 # disable_dladdr Set to "yes" if dladdr should not be used
32 # (i.e it is broken).
33
34 libgcj_flags=
35 libgcj_cflags=
36 libgcj_cxxflags=
37 libgcj_javaflags=
38 libgcj_interpreter=
39 enable_java_net_default=yes
40 enable_hash_synchronization_default=no
41 sysdeps_dir=generic
42 slow_pthread_self=
43 can_unwind_signal=no
44 disable_dladdr=
45
46 case "${target_optspace}:${host}" in
47 yes:*)
48 libgcj_flags="${libgcj_flags} -Os"
49 ;;
50 :m32r-* | :d10v-* | :d30v-*)
51 libgcj_flags="${libgcj_flags} -Os"
52 ;;
53 no:* | :*)
54 # Nothing.
55 ;;
56 esac
57
58 AM_RUNTESTFLAGS=
59
60 # Set any host dependent compiler flags.
61 # THIS TABLE IS SORTED. KEEP IT THAT WAY.
62
63 echo "$target"
64
65 DIVIDESPEC=-fuse-divide-subroutine
66 EXCEPTIONSPEC=-fnon-call-exceptions
67 CHECKREFSPEC=
68
69 # This case statement supports per-CPU defaults.
70 case "${host}" in
71 arm*-elf | strongarm*-elf | xscale*-elf)
72 with_libffi_default=no
73 PROCESS=Ecos
74 FILE=Posix
75 CHECKREFSPEC=-fcheck-references
76 EXCEPTIONSPEC=
77 enable_java_net_default=no
78 enable_getenv_properties_default=no
79 enable_main_args_default=no
80 ;;
81 mips-tx39-*|mipstx39-unknown-*)
82 libgcj_flags="${libgcj_flags} -G 0"
83 LDFLAGS="$LDFLAGS -Tjmr3904dram.ld"
84 AM_RUNTESTFLAGS="--target_board=jmr3904-sim"
85 # Use "Ecos" processes since they are a no-op.
86 PROCESS=Ecos
87 FILE=Posix
88 enable_java_net_default=no
89 enable_getenv_properties_default=no
90 ;;
91 i686-*|i586-*|i486-*|i386-*)
92 sysdeps_dir=i386
93 libgcj_flags="${libgcj_flags} -ffloat-store -fno-omit-frame-pointer"
94 libgcj_interpreter=yes
95 libgcj_cxxflags=
96 libgcj_cflags=
97 DIVIDESPEC=-fno-use-divide-subroutine
98 enable_hash_synchronization_default=yes
99 slow_pthread_self=yes
100 ;;
101 x86_64-*)
102 sysdeps_dir=x86-64
103 libgcj_flags="${libgcj_flags} -ffloat-store -fno-omit-frame-pointer"
104 libgcj_cxxflags=
105 libgcj_cflags=
106 DIVIDESPEC=-f%{m32:no-}use-divide-subroutine
107 enable_hash_synchronization_default=yes
108 slow_pthread_self=yes
109 libgcj_interpreter=yes
110 ;;
111 alpha*-*)
112 sysdeps_dir=alpha
113 libgcj_flags="${libgcj_flags} -mieee"
114 libgcj_interpreter=yes
115 enable_hash_synchronization_default=yes
116 IEEESPEC=-mieee
117 ;;
118 hppa-*)
119 sysdeps_dir=pa
120 libgcj_interpreter=yes
121 enable_hash_synchronization_default=yes
122 ;;
123 powerpc64*-*)
124 sysdeps_dir=powerpc
125 libgcj_interpreter=yes
126 if [ x`$CC -print-multi-os-directory` = x../lib64 ]; then
127 libgcj_flags="${libgcj_flags} -mminimal-toc"
128 fi
129 enable_hash_synchronization_default=yes
130 slow_pthread_self=yes
131 ;;
132 powerpc*-*)
133 sysdeps_dir=powerpc
134 libgcj_interpreter=yes
135 enable_hash_synchronization_default=yes
136 slow_pthread_self=yes
137 ;;
138 s390*-*)
139 sysdeps_dir=s390
140 libgcj_interpreter=yes
141 DIVIDESPEC=-fno-use-divide-subroutine
142 enable_hash_synchronization_default=yes
143 ;;
144 sparc*-*)
145 libgcj_interpreter=yes
146 ;;
147 ia64-*)
148 sysdeps_dir=ia64
149 libgcj_flags="${libgcj_flags} -funwind-tables"
150 libgcj_interpreter=yes
151 enable_hash_synchronization_default=yes
152 ;;
153 sh-* | sh[34]*-*)
154 sysdeps_dir=sh
155 libgcj_flags="${libgcj_flags} -mieee"
156 libgcj_interpreter=yes
157 enable_hash_synchronization_default=yes
158 ;;
159 esac
160
161 # This case statement supports generic port properties and may refine
162 # the above per-CPU defaults. Note: If your OS implements
163 # MD_FALLBACK_FRAME_STATE_FOR, then you want to set can_unwind_signal
164 # here.
165 case "${host}" in
166 i[34567]86*-linux* | \
167 powerpc*-linux* | \
168 alpha*-linux* | \
169 s390*-linux* | \
170 sparc*-linux* | \
171 ia64-* | \
172 x86_64*-linux* | \
173 hppa*-linux* | \
174 sh-linux* | sh[34]*-linux*)
175 can_unwind_signal=yes
176 if test x$slow_pthread_self = xyes \
177 && test x$cross_compiling != xyes; then
178 cat > conftest.c <<EOF
179 #define _GNU_SOURCE 1
180 #include <pthread.h>
181 #include <stdlib.h>
182 #include <sys/resource.h>
183 #include <limits.h>
184
185 void *
186 tf (void *arg __attribute__ ((unused)))
187 {
188 pthread_attr_t a;
189 size_t s;
190
191 if (pthread_getattr_np (pthread_self (), &a)
192 || pthread_attr_getstacksize (&a, &s)
193 || s > 2 * PTHREAD_STACK_MIN)
194 exit (1);
195 exit (0);
196 }
197
198 int
199 main (int argc, char **argv)
200 {
201 pthread_t p;
202 void *ret;
203 struct rlimit r;
204
205 if (argc == 2)
206 {
207 r.rlim_cur = 2 * PTHREAD_STACK_MIN;
208 r.rlim_max = 2 * PTHREAD_STACK_MIN;
209 if (setrlimit (RLIMIT_STACK, &r))
210 exit (1);
211 execl (argv[1], argv[0], NULL);
212 exit (1);
213 }
214
215 if (pthread_create (&p, NULL, tf, NULL)
216 || pthread_join (p, &ret))
217 exit (1);
218 exit (1);
219 }
220 EOF
221 $CC -o conftest conftest.c -lpthread > /dev/null 2>&1 && \
222 ./conftest ./conftest && slow_pthread_self=
223 rm -f conftest conftest.c
224 fi
225 ;;
226 mips*-*-linux* )
227 sysdeps_dir=mips
228 can_unwind_signal=yes
229 libgcj_interpreter=yes
230 libgcj_flags="${libgcj_flags} -mxgot"
231 DIVIDESPEC=-fno-use-divide-subroutine
232 case "${host}" in
233 mipsel*-linux* | mipsisa32el*-linux*)
234 enable_hash_synchronization_default=yes
235 disable_dladdr=yes
236 ;;
237 esac
238 ;;
239 powerpc*-*-darwin*)
240 enable_hash_synchronization_default=yes
241 slow_pthread_self=
242 can_unwind_signal=yes
243 ;;
244 *-*-freebsd*)
245 slow_pthread_self=
246 ;;
247 *-mingw*)
248 # FIXME: win32_exception_handler( ) in win32.cc does not do the
249 # right stuff yet w.r.t. SEH. Live with the following for now.
250 can_unwind_signal=no
251 CHECKREFSPEC=-fcheck-references
252 DIVIDESPEC=-fuse-divide-subroutine
253 ;;
254 *-cygwin*)
255 # The cygwin linker doesn't do 8-byte alignment by default, so
256 # disable hash synchronization for now.
257 enable_hash_synchronization_default=no
258 slow_pthread_self=
259 ;;
260 esac
261
262 libgcj_cflags="${libgcj_cflags} ${libgcj_flags}"
263 libgcj_cxxflags="${libgcj_cxxflags} ${libgcj_flags}"
264 libgcj_javaflags="${libgcj_javaflags} ${libgcj_flags}"