* ChangeLog: Follow spelling conventions.
[official-gcc.git] / libjava / configure.host
blob5baabd46be17b19fc88d9c6bd45267913ef9ddda
1 # configure.host
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
9 #   . configure.host
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
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.
32 libgcj_flags=
33 libgcj_cflags=
34 libgcj_cxxflags=
35 libgcj_javaflags=
36 libgcj_interpreter=
37 enable_java_net_default=yes
38 enable_hash_synchronization_default=no
39 sysdeps_dir=generic
40 slow_pthread_self=
41 can_unwind_signal=no
43 case "${target_optspace}:${host}" in
44   yes:*)
45     libgcj_flags="${libgcj_flags} -Os"
46     ;;
47   :m32r-* | :d10v-* | :d30v-*)
48     libgcj_flags="${libgcj_flags} -Os"
49     ;;
50   no:* | :*)
51     # Nothing.
52     ;;
53 esac
55 AM_RUNTESTFLAGS= 
57 # Set any host dependent compiler flags.
58 # THIS TABLE IS SORTED.  KEEP IT THAT WAY.
60 echo "$target"
62 DIVIDESPEC=-fuse-divide-subroutine
63 EXCEPTIONSPEC=-fnon-call-exceptions
64 CHECKREFSPEC=
66 # This case statement supports per-CPU defaults.
67 case "${host}" in
68   mips-tx39-*|mipstx39-unknown-*)
69         libgcj_flags="${libgcj_flags} -G 0"
70         LDFLAGS="$LDFLAGS -Tjmr3904dram.ld"
71         AM_RUNTESTFLAGS="--target_board=jmr3904-sim"    
72         # Use "Ecos" processes since they are a no-op.
73         PROCESS=Ecos
74         FILE=Posix
75         enable_java_net_default=no
76         enable_getenv_properties_default=no
77         ;;
78   i686-*|i586-*|i486-*|i386-*)
79         sysdeps_dir=i386
80         libgcj_flags="${libgcj_flags} -ffloat-store"
81         libgcj_interpreter=yes
82         libgcj_cxxflags="-D__NO_MATH_INLINES"
83         libgcj_cflags="-D__NO_MATH_INLINES"
84         DIVIDESPEC=-fno-use-divide-subroutine
85         enable_hash_synchronization_default=yes
86         slow_pthread_self=yes
87         ;;
88   x86_64-*)
89         sysdeps_dir=x86-64
90         libgcj_flags="${libgcj_flags} -ffloat-store"
91         libgcj_interpreter=no
92         libgcj_cxxflags="-D__NO_MATH_INLINES"
93         libgcj_cflags="-D__NO_MATH_INLINES"
94         DIVIDESPEC=-fno-use-divide-subroutine
95         enable_hash_synchronization_default=yes
96         slow_pthread_self=yes
97         ;;
98   alpha*-*)
99         sysdeps_dir=alpha
100         libgcj_flags="${libgcj_flags} -mieee"
101         libgcj_interpreter=yes
102         enable_hash_synchronization_default=yes
103         ;;
104   powerpc64*-*)
105         # libffi not ported.
106         with_libffi_default=no
107         libgcj_interpreter=no
108         libgcj_flags="${libgcj_flags} -mminimal-toc"
109         # this may not be correct
110         sysdeps_dir=powerpc
111         enable_hash_synchronization_default=yes
112         slow_pthread_self=yes
113         ;;
114   powerpc*-*)
115         sysdeps_dir=powerpc
116         libgcj_interpreter=yes
117         enable_hash_synchronization_default=yes
118         slow_pthread_self=yes
119         ;;
120   sparc-*)
121         ;;
122   ia64-*)
123         sysdeps_dir=ia64
124         libgcj_flags="${libgcj_flags} -funwind-tables"
125         libgcj_interpreter=yes
126         enable_hash_synchronization_default=yes
127         ;;
128   xscale*-elf)
129         with_libffi_default=no
130         PROCESS=Ecos
131         FILE=Posix
132         CHECKREFSPEC=-fcheck-references
133         EXCEPTIONSPEC=
134         enable_java_net_default=no
135         enable_getenv_properties_default=no
136         enable_main_args_default=no
137         ;;
138   sh-* | sh[34]*-*)
139         sysdeps_dir=sh
140         libgcj_flags="${libgcj_flags} -mieee"
141         libgcj_interpreter=yes
142         CHECKREFSPEC=-fcheck-references
143         EXCEPTIONSPEC=
144         enable_hash_synchronization_default=yes
145         ;;
146 esac
148 # This case statement supports generic port properties and may refine
149 # the above per-CPU defaults.  Note: If your OS implements
150 # MD_FALLBACK_FRAME_STATE_FOR, then you want to set can_unwind_signal
151 # here.
152 case "${host}" in
153   i[34567]86*-linux* | \
154   powerpc*-linux* | \
155   alpha*-linux* | \
156   s390*-linux* | \
157   sparc*-linux* | \
158   ia64-* | \
159   x86_64*-linux*)
160         can_unwind_signal=yes
161         ;;
162   *-*-darwin*)
163         enable_hash_synchronization_default=no
164         slow_pthread_self=
165         ;;
166   *-*-freebsd*)
167         slow_pthread_self=
168         ;;
169   *-cygwin*)
170         # The cygwin linker doesn't do 8-byte alignment by default, so
171         # disable hash synchronization for now.
172         enable_hash_synchronization_default=no
173         slow_pthread_self=
174         ;;
175 esac
177 libgcj_cflags="${libgcj_cflags} ${libgcj_flags}"
178 libgcj_cxxflags="${libgcj_cxxflags} ${libgcj_flags}"
179 libgcj_javaflags="${libgcj_javaflags} ${libgcj_flags}"