Skip to content
Snippets Groups Projects
Unverified Commit 503f89cf authored by Lorenzo Salvadore's avatar Lorenzo Salvadore
Browse files

lang/gcc13-devel: Enable support for .init_array and .fini_array

Enable support for .init_array and .fini_array, which FreeBSD supports
since commit 83aa9cc00c2d83d05a0efe7a1496d8aab4a153bb in the src
repository.

There __FreeBSD_version is 1000009, so we start enabling the support
from __FreeBSD_version == 1000010.

See also review https://reviews.freebsd.org/D39968 for lang/gcc11-devel.

Reported by:    Dan McGregor <dan.mcgregor@usask.ca>
parent e7d47cc9
No related branches found
No related tags found
No related merge requests found
PORTNAME= gcc
PORTVERSION= 13.1.1.s20230506
PORTREVISION= 1
CATEGORIES= lang
MASTER_SITES= GCC/snapshots/${DIST_VERSION}
PKGNAMESUFFIX= ${SUFFIX}-devel
......
Enable support for .init_array and .fini_array, which FreeBSD supports
since commit 83aa9cc00c2d83d05a0efe7a1496d8aab4a153bb in the src
repository.
There __FreeBSD_version is 1000009, so we start enabling the support
from __FreeBSD_version == 1000010.
--- gcc/configure.orig 2023-05-04 17:36:54 UTC
+++ gcc/configure
@@ -24214,6 +24214,11 @@ EOF
#else
# if defined __sun__ && defined __svr4__
/* Solaris ld.so.1 supports .init_array/.fini_array since Solaris 8. */
+# elif defined __FreeBSD__
+# include <sys/param.h>
+# if __FreeBSD_version >= 1000010
+ /* FreeBSD supports .init_array/.fini_array since FreeBSD 10. */
+# endif
# else
# error The C library not known to support .init_array/.fini_array
# endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment