Mercurial > hg > CbC > CbC_gcc
annotate libssp/configure.ac @ 116:367f9f4f266e
fix gimple.h
author | mir3636 |
---|---|
date | Tue, 28 Nov 2017 20:22:01 +0900 |
parents | 04ced10e8804 |
children | 84e7813d76e9 |
rev | line source |
---|---|
0 | 1 # Process this file with autoconf to produce a configure script, like so: |
2 # | |
3 # aclocal -I .. -I ../config && autoconf && autoheader && automake | |
4 | |
55
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
5 AC_PREREQ(2.64) |
0 | 6 AC_INIT(libssp, 1.0) |
7 AC_CONFIG_SRCDIR(ssp.c) | |
8 AC_CANONICAL_SYSTEM | |
9 ACX_NONCANONICAL_TARGET | |
10 | |
63
b7f97abdc517
update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
55
diff
changeset
|
11 AM_INIT_AUTOMAKE([no-dist]) |
0 | 12 |
13 AC_MSG_CHECKING([for --enable-version-specific-runtime-libs]) | |
14 AC_ARG_ENABLE(version-specific-runtime-libs, | |
15 [ --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in a compiler-specific directory ], | |
16 [case "$enableval" in | |
17 yes) version_specific_libs=yes ;; | |
18 no) version_specific_libs=no ;; | |
19 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);; | |
20 esac], | |
21 [version_specific_libs=no]) | |
22 AC_MSG_RESULT($version_specific_libs) | |
23 | |
24 AM_MAINTAINER_MODE | |
25 | |
26 GCC_NO_EXECUTABLES | |
27 | |
28 AM_ENABLE_MULTILIB(, ..) | |
29 | |
30 target_alias=${target_alias-$host_alias} | |
31 AC_SUBST(target_alias) | |
32 | |
33 AC_CONFIG_HEADERS(config.h) | |
34 | |
35 AC_LANG_C | |
36 # The same as in boehm-gc and libstdc++. Have to borrow it from there. | |
37 # We must force CC to /not/ be precious variables; otherwise | |
38 # the wrong, non-multilib-adjusted value will be used in multilibs. | |
39 # As a side effect, we have to subst CFLAGS ourselves. | |
40 | |
41 m4_rename([_AC_ARG_VAR_PRECIOUS],[real_PRECIOUS]) | |
42 m4_define([_AC_ARG_VAR_PRECIOUS],[]) | |
43 AC_PROG_CC | |
55
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
44 m4_rename_force([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS]) |
0 | 45 |
46 AC_SUBST(CFLAGS) | |
47 | |
48 if test "x$GCC" != "xyes"; then | |
49 AC_MSG_ERROR([libssp must be built with GCC]) | |
50 fi | |
51 AC_PROG_CPP | |
52 | |
53 AC_MSG_CHECKING([whether -fstack-protector works]) | |
54 save_CFLAGS="$CFLAGS" | |
55 CFLAGS="$CFLAGS -fstack-protector -Werror" | |
56 AC_TRY_COMPILE([ | |
57 void __attribute__((noinline)) bar (char *x) | |
58 { | |
59 __builtin_memset (x, 0, 64); | |
60 }],[char buf[64]; bar (buf);], | |
61 [AC_MSG_RESULT(yes)], | |
62 [AC_MSG_RESULT(no)]) | |
63 CFLAGS="$save_CFLAGS" | |
64 | |
65 AC_MSG_CHECKING([whether hidden visibility is supported]) | |
66 AC_TRY_COMPILE([ | |
67 void __attribute__((visibility ("hidden"))) bar (void) {}],, | |
68 [ssp_hidden=yes],[ssp_hidden=no]) | |
69 AC_MSG_RESULT($ssp_hidden) | |
70 if test x$ssp_hidden = xyes; then | |
71 AC_DEFINE([HAVE_HIDDEN_VISIBILITY],[1],[__attribute__((visibility ("hidden"))) supported]) | |
72 fi | |
73 | |
74 AC_MSG_CHECKING([whether symbol versioning is supported]) | |
111 | 75 AC_ARG_ENABLE(symvers, |
76 AS_HELP_STRING([--disable-symvers], | |
77 [disable symbol versioning for libssp]), | |
78 ssp_use_symver=$enableval, | |
79 ssp_use_symver=yes) | |
80 if test "x$ssp_use_symver" != xno; then | |
81 if test x$gcc_no_link = xyes; then | |
82 # If we cannot link, we cannot build shared libraries, so do not use | |
83 # symbol versioning. | |
84 ssp_use_symver=no | |
85 else | |
86 save_LDFLAGS="$LDFLAGS" | |
87 LDFLAGS="$LDFLAGS -fPIC -shared -Wl,--version-script,./conftest.map" | |
88 cat > conftest.map <<EOF | |
67
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
89 FOO_1.0 { |
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
90 global: *foo*; bar; local: *; |
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
91 }; |
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
92 EOF |
111 | 93 AC_TRY_LINK([int foo;],[],[ssp_use_symver=gnu],[ssp_use_symver=no]) |
94 if test x$ssp_use_symver = xno; then | |
95 case "$target_os" in | |
96 solaris2*) | |
97 LDFLAGS="$save_LDFLAGS" | |
98 LDFLAGS="$LDFLAGS -fPIC -shared -Wl,-M,./conftest.map" | |
99 # Sun ld cannot handle wildcards and treats all entries as undefined. | |
100 cat > conftest.map <<EOF | |
67
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
101 FOO_1.0 { |
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
102 global: foo; local: *; |
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
103 }; |
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
104 EOF |
111 | 105 AC_TRY_LINK([int foo;],[],[ssp_use_symver=sun],[ssp_use_symver=no]) |
106 ;; | |
107 esac | |
108 fi | |
109 LDFLAGS="$save_LDFLAGS" | |
67
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
110 fi |
0 | 111 fi |
112 AC_MSG_RESULT($ssp_use_symver) | |
67
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
113 AM_CONDITIONAL(LIBSSP_USE_SYMVER, [test "x$ssp_use_symver" != xno]) |
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
114 AM_CONDITIONAL(LIBSSP_USE_SYMVER_GNU, [test "x$ssp_use_symver" = xgnu]) |
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
115 AM_CONDITIONAL(LIBSSP_USE_SYMVER_SUN, [test "x$ssp_use_symver" = xsun]) |
0 | 116 |
55
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
117 AC_CHECK_HEADERS(alloca.h malloc.h paths.h syslog.h string.h unistd.h fcntl.h stdio.h limits.h) |
0 | 118 |
119 if test x$gcc_no_link = xyes; then | |
120 # Presume the ISO C functions are available; add target-specific | |
121 # configuration here if required. | |
122 AC_DEFINE(HAVE_STRNCPY) | |
123 AC_DEFINE(HAVE_STRNCAT) | |
124 else | |
67
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
125 AC_CHECK_FUNCS(memmove mempcpy strncpy strncat) |
0 | 126 fi |
127 | |
128 AC_MSG_CHECKING([whether vsnprintf is usable]) | |
129 AC_RUN_IFELSE(AC_LANG_PROGRAM([ | |
130 #include <stdarg.h> | |
131 #include <string.h> | |
132 #include <stdio.h> | |
133 int foo (char *buf, size_t n, const char *fmt, ...) | |
134 { | |
135 va_list ap; | |
136 int ret; | |
137 va_start (ap, fmt); | |
138 ret = vsnprintf (buf, n, fmt, ap); | |
139 va_end (ap); | |
140 return ret; | |
141 }], | |
142 [char buf@<:@8@:>@; memset (buf, 'A', sizeof (buf)); | |
143 if (foo (buf, 4, ".%s.", "CDEFG") != 7) | |
144 return 1; | |
145 return memcmp (buf, ".CD\0AAAA", sizeof (buf)) != 0;]), | |
146 [ssp_have_usable_vsnprintf=define], | |
147 [ssp_have_usable_vsnprintf=undef], | |
148 [ssp_have_usable_vsnprintf=undef]) | |
149 if test "x$ssp_have_usable_vsnprintf" = xdefine; then | |
150 AC_MSG_RESULT(yes) | |
151 AC_DEFINE([HAVE_USABLE_VSNPRINTF],[1],[vsnprintf is present and works]) | |
152 else | |
153 AC_MSG_RESULT(no) | |
154 fi | |
155 AC_SUBST(ssp_have_usable_vsnprintf) | |
156 | |
157 AM_PROG_LIBTOOL | |
67
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
158 ACX_LT_HOST_FLAGS |
0 | 159 AC_SUBST(enable_shared) |
160 AC_SUBST(enable_static) | |
161 | |
162 # Calculate toolexeclibdir | |
163 # Also toolexecdir, though it's only used in toolexeclibdir | |
164 case ${version_specific_libs} in | |
165 yes) | |
166 # Need the gcc compiler version to know where to install libraries | |
167 # and header files if --enable-version-specific-runtime-libs option | |
168 # is selected. | |
169 toolexecdir='$(libdir)/gcc/$(target_alias)' | |
170 toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)' | |
171 ;; | |
172 no) | |
173 if test -n "$with_cross_host" && | |
174 test x"$with_cross_host" != x"no"; then | |
175 # Install a library built with a cross compiler in tooldir, not libdir. | |
176 toolexecdir='$(exec_prefix)/$(target_alias)' | |
177 toolexeclibdir='$(toolexecdir)/lib' | |
178 else | |
179 toolexecdir='$(libdir)/gcc-lib/$(target_alias)' | |
180 toolexeclibdir='$(libdir)' | |
181 fi | |
182 multi_os_directory=`$CC -print-multi-os-directory` | |
183 case $multi_os_directory in | |
184 .) ;; # Avoid trailing /. | |
185 *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;; | |
186 esac | |
187 ;; | |
188 esac | |
189 AC_SUBST(toolexecdir) | |
190 AC_SUBST(toolexeclibdir) | |
191 | |
192 if test ${multilib} = yes; then | |
193 multilib_arg="--enable-multilib" | |
194 else | |
195 multilib_arg= | |
196 fi | |
197 | |
111 | 198 # Determine what GCC version number to use in filesystem paths. |
199 GCC_BASE_VER | |
200 | |
0 | 201 AC_CONFIG_FILES([Makefile ssp/ssp.h]) |
202 AC_OUTPUT |