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.
8 # This shell script should be invoked as
10 # If it encounters an error, it will exit with a message.
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", "")
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
24 # enable_hash_synchronization_default If hash synchronization should be
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 # fallback_backtrace_h Header to use for fallback backtrace implementation
32 # (only for targets that don't support DWARF2 unwind)
33 # descriptor_h Header to use for looking past function descriptors
40 enable_java_net_default=yes
41 enable_hash_synchronization_default=no
45 fallback_backtrace_h=sysdep/generic/backtrace.h
47 case "${target_optspace}:${host}" in
49 libgcj_flags="${libgcj_flags} -Os"
51 :m32r-* | :d10v-* | :d30v-*)
52 libgcj_flags="${libgcj_flags} -Os"
61 # Set any host dependent compiler flags.
62 # THIS TABLE IS SORTED. KEEP IT THAT WAY.
66 DIVIDESPEC=-fuse-divide-subroutine
67 EXCEPTIONSPEC=-fnon-call-exceptions
71 # This case statement supports per-CPU defaults.
73 arm*-elf | strongarm*-elf | xscale*-elf)
74 with_libffi_default=no
77 CHECKREFSPEC=-fcheck-references
79 enable_java_net_default=no
80 enable_getenv_properties_default=no
81 enable_main_args_default=no
83 mips-tx39-*|mipstx39-unknown-*)
84 libgcj_flags="${libgcj_flags} -G 0"
85 LDFLAGS="$LDFLAGS -Tjmr3904dram.ld"
86 AM_RUNTESTFLAGS="--target_board=jmr3904-sim"
87 # Use "Ecos" processes since they are a no-op.
90 enable_java_net_default=no
91 enable_getenv_properties_default=no
94 libgcj_interpreter=yes
96 i686-*|i586-*|i486-*|i386-*)
98 # With -fomit-frame-pointer -maccumulate-outgoing-args (implied),
99 # the .text section of libgcj.so is 30k larger, and the .eh_frame
100 # section is 1.4M smaller.
101 libgcj_flags="${libgcj_flags} -ffloat-store -fomit-frame-pointer"
102 libgcj_interpreter=yes
105 DIVIDESPEC=-fno-use-divide-subroutine
106 enable_hash_synchronization_default=yes
107 slow_pthread_self=yes
111 # For 64-bit we always use SSE registers for arithmetic,
112 # which doesn't have the extra precision problems of the fpu.
113 # But be careful about 32-bit multilibs.
116 libgcj_flags="${libgcj_flags} -ffloat-store" ;;
118 libgcj_flags="${libgcj_flags} -fomit-frame-pointer"
121 DIVIDESPEC=-fno-use-divide-subroutine
122 enable_hash_synchronization_default=yes
123 slow_pthread_self=yes
124 libgcj_interpreter=yes
128 libgcj_flags="${libgcj_flags} -mieee"
129 libgcj_interpreter=yes
130 enable_hash_synchronization_default=yes
135 libgcj_interpreter=yes
136 enable_hash_synchronization_default=no
140 libgcj_interpreter=yes
141 if [ x`$CC -print-multi-os-directory` = x../lib64 ]; then
142 libgcj_flags="${libgcj_flags} -mminimal-toc"
144 enable_hash_synchronization_default=yes
145 slow_pthread_self=yes
149 libgcj_interpreter=yes
150 enable_hash_synchronization_default=yes
151 slow_pthread_self=yes
155 libgcj_interpreter=yes
156 DIVIDESPEC=-fno-use-divide-subroutine
157 enable_hash_synchronization_default=yes
160 libgcj_interpreter=yes
164 libgcj_flags="${libgcj_flags} -funwind-tables"
165 libgcj_interpreter=yes
166 enable_hash_synchronization_default=yes
170 libgcj_flags="${libgcj_flags} -mieee"
171 libgcj_interpreter=yes
172 enable_hash_synchronization_default=yes
177 # This case statement supports generic port properties and may refine
178 # the above per-CPU defaults. Note: If your OS implements
179 # MD_FALLBACK_FRAME_STATE_FOR, then you want to set can_unwind_signal
182 i[34567]86*-linux* | \
190 sh-linux* | sh[34]*-linux*)
191 can_unwind_signal=yes
192 libgcj_ld_symbolic='-Wl,-Bsymbolic'
193 if test x$slow_pthread_self = xyes \
194 && test x$cross_compiling != xyes; then
195 cat > conftest.c <<EOF
196 #define _GNU_SOURCE 1
199 #include <sys/resource.h>
203 tf (void *arg __attribute__ ((unused)))
208 if (pthread_getattr_np (pthread_self (), &a)
209 || pthread_attr_getstacksize (&a, &s)
210 || s > 2 * PTHREAD_STACK_MIN)
216 main (int argc, char **argv)
224 r.rlim_cur = 2 * PTHREAD_STACK_MIN;
225 r.rlim_max = 2 * PTHREAD_STACK_MIN;
226 if (setrlimit (RLIMIT_STACK, &r))
228 execl (argv[1], argv[0], NULL);
232 if (pthread_create (&p, NULL, tf, NULL)
233 || pthread_join (p, &ret))
238 $CC -o conftest conftest.c -lpthread > /dev/null 2>&1 && \
239 ./conftest ./conftest && slow_pthread_self=
240 rm -f conftest conftest.c
243 i[34567]86-*-solaris2.1[0-9]* )
245 DIVIDESPEC=-f%{m32:no-}%{!m32:%{!m64:no-}}%{m64:}use-divide-subroutine
249 can_unwind_signal=yes
250 DIVIDESPEC=-fno-use-divide-subroutine
252 mipsel*-linux* | mipsisa32el*-linux*)
253 enable_hash_synchronization_default=yes
258 enable_hash_synchronization_default=yes
260 can_unwind_signal=yes
266 libgcj_flags="${libgcj_flags} -fno-omit-frame-pointer"
267 # FIXME: win32_exception_handler( ) in win32.cc does not do the
268 # right stuff yet w.r.t. SEH. Live with the following for now.
270 CHECKREFSPEC=-fcheck-references
271 DIVIDESPEC=-fuse-divide-subroutine
274 # The cygwin linker doesn't do 8-byte alignment by default, so
275 # disable hash synchronization for now.
276 enable_hash_synchronization_default=no
281 can_unwind_signal=yes
282 DIVIDESPEC=-fuse-divide-subroutine
287 *-cygwin* | *-mingw*)
288 fallback_backtrace_h=sysdep/i386/backtrace.h
289 # We need a frame pointer on Windows, so override BACKTRACESPEC
296 descriptor_h=sysdep/descriptor-y.h
300 descriptor_h=sysdep/pa/descriptor-pa64-hpux.h
304 descriptor_h=sysdep/pa/descriptor-pa32-hpux.h
308 descriptor_h=sysdep/pa/descriptor.h
311 rs6000-* | powerpc*-*)
312 descriptor_h=sysdep/powerpc/descriptor.h
316 descriptor_h=sysdep/descriptor-n.h
320 libgcj_cflags="${libgcj_cflags} ${libgcj_flags}"
321 libgcj_cxxflags="${libgcj_cxxflags} ${libgcj_flags}"
322 libgcj_javaflags="${libgcj_javaflags} ${libgcj_flags}"