Index: head/lang/gcc5-aux/Makefile =================================================================== --- head/lang/gcc5-aux/Makefile (revision 384910) +++ head/lang/gcc5-aux/Makefile (revision 384911) @@ -1,297 +1,304 @@ # Created by: John Marino # $FreeBSD$ PORTNAME= gcc5-aux PORTVERSION= ${SNAPSHOT} PORTREVISION= ${MAIN_PR} CATEGORIES= lang MASTER_SITES= http://downloads.dragonlace.net/src/:boot \ LOCAL/marino:boot ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= ${MS_SUBDIR} DISTFILES= ${IDENTIFICATION}.tar.bz2 MAINTAINER= marino@FreeBSD.org COMMENT= Version of GCC ${GCC_BRANCH} with full Ada support LICENSE= GPLv3 GPLv3RLE LICENSE_COMB= multi .include "${.CURDIR}/Makefile.common" LANGS= c c++ ada APPLY_DIFFS= core cxx ada INTENDED_COMPILER= NATIVE GARCH= ${ARCH:S/amd64/x86_64/} BOOTSTRAP_COMPILER= gnat-bootstrap.${GARCH}.${OPSYS:tl}.tar.bz2 BLD_TARGET= ${GARCH}-aux-${OPSYS:tl}${OSREL} FULL_GNATGCC= NOT_SET OS_LABEL4VERS= [${OPSYS}${GARCH:M*64:S/amd_//:S/x86_//}] NO_MTREE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib OPTIONS_GROUP= Standard Bootstrap -OPTIONS_GROUP_Standard= FORT OBJC NLS TESTSUITE STATIC +OPTIONS_GROUP_Standard= FORT OBJC NLS TESTSUITE ALLSTAGES STATIC OPTIONS_GROUP_Bootstrap=BOOTSTRAP OPTIONS_DEFAULT= FORT OBJC NO_OPTIONS_SORT= yes FORT_DESC= Fortran language support OBJC_DESC= Objective-C language support TESTSUITE_DESC= Activate test support +ALLSTAGES_DESC= Build compiler with itself (twice, brings in libcc1) STATIC_DESC= Link compilers and drivers statically BOOTSTRAP_DESC= Create bootstrap compiler (overrides other options) # The BOOTSTRAP option overrides all the others. "make stage" will build a # static compiler that supports C, C++, and Ada languages and then create # a new distfile in $WRKDIR/newbsd with the name following the pattern: # ada-bootstrap.$ARCH.$OPSYS.XY.tar.bz2. There is no need to "make install" .include .if ${OPSYS} == FreeBSD +ONLY_FOR_ARCHS= amd64 i386 MODERN_BINUTILS= yes . if ${OSVERSION} < 900000 BOOTSTRAP_COMPILER= ada-bootstrap.${GARCH}.freebsd.84.tar.bz2 . else BOOTSTRAP_COMPILER= ada-bootstrap.${GARCH}.freebsd.100B.tar.bz2 . endif .endif .if ${OPSYS} == DragonFly -BOOTSTRAP_COMPILER= ada-bootstrap.${GARCH}.dragonfly.36A.tar.bz2 +ONLY_FOR_ARCHS= x86_64 +BOOTSTRAP_COMPILER= ada-bootstrap.${GARCH}.dragonfly.41.tar.bz2 .endif .if defined(MODERN_BINUTILS) # Apparently gcc 4.9 needs binutils 2.23 or greater to link Ada correctly USE_BINUTILS= yes RUN_DEPENDS+= ${LOCALBASE}/bin/as:${PORTSDIR}/devel/binutils EXTRA_CONFIG+= --with-ld=${LOCALBASE}/bin/ld EXTRA_CONFIG+= --with-as=${LOCALBASE}/bin/as .else EXTRA_CONFIG+= --with-ld=/usr/bin/ld EXTRA_CONFIG+= --with-as=/usr/bin/as .endif WRKSRC= ${WRKDIR}/${IDENTIFICATION} BUILDDIR= ${WRKDIR}/build NEWBSDIR= ${WRKDIR}/newbs/bootstrap CFG_SCRIPT= ${WRKSRC}/configure REVFILE= ${WRKSRC}/gcc/REVISION BOOTSTRAP_PREFIX= ${WRKDIR}/bootstrap PKG_PREFIX= ${PREFIX}/${PORTNAME} MANPREFIX= ${PREFIX}/${PORTNAME}/share BSFILENAME= ada-bootstrap.${GARCH}.${OPSYS:tl}.${OSREL:S/.//}.tar.bz2 # If we find gnatmake and friends in a standard location, then we'll use this # compiler instead of downloading the bootstrap. .if exists (${LOCALBASE}/${PORTNAME}/bin/ada) .if exists (${LOCALBASE}/${PORTNAME}/bin/gnatbind) .if exists (${LOCALBASE}/${PORTNAME}/bin/gnatlink) .if exists (${LOCALBASE}/${PORTNAME}/bin/gnatmake) FULL_GNATGCC=${LOCALBASE}/${PORTNAME}/bin/ada FULL_GNATGXX=${LOCALBASE}/${PORTNAME}/bin/g++ FULL_PATH=/sbin:/bin:/usr/sbin:/usr/bin:${PREFIX}/${PORTNAME}/bin:${PREFIX}/bin .endif .endif .endif .endif # If FULL_GNATGCC is not set, we'll request the bootstrap compiler .if ${FULL_GNATGCC} == NOT_SET INTENDED_COMPILER=BOOTSTRAP FULL_GNATGCC=${BOOTSTRAP_PREFIX}/bin/gcc FULL_GNATGXX=${BOOTSTRAP_PREFIX}/bin/g++ FULL_PATH=${BOOTSTRAP_PREFIX}/bin:/sbin:/bin:/usr/sbin:/usr/bin:${PREFIX}/bin DISTFILES+= ${BOOTSTRAP_COMPILER}:boot .endif # for port maintenance, invoke "make makesum PLUS_BOOTSTRAPS=1" .if defined(PLUS_BOOTSTRAPS) DISTFILES= \ ${IDENTIFICATION}.tar.bz2 \ - ada-bootstrap.i386.dragonfly.36A.tar.bz2:boot \ ada-bootstrap.i386.freebsd.84.tar.bz2:boot \ ada-bootstrap.i386.freebsd.100B.tar.bz2:boot \ - ada-bootstrap.x86_64.dragonfly.36A.tar.bz2:boot \ + ada-bootstrap.x86_64.dragonfly.41.tar.bz2:boot \ ada-bootstrap.x86_64.freebsd.84.tar.bz2:boot \ ada-bootstrap.x86_64.freebsd.100B.tar.bz2:boot .endif .if ${PORT_OPTIONS:MFORT} && !${PORT_OPTIONS:MBOOTSTRAP} LANGS+= fortran #APPLY_DIFFS+= fortran EXTRA_CONFIG+= --enable-libquadmath .else EXTRA_CONFIG+= --disable-libquadmath .endif .if ${PORT_OPTIONS:MOBJC} && !${PORT_OPTIONS:MBOOTSTRAP} LANGS+= objc .endif .if ${PORT_OPTIONS:MTESTSUITE} && !${PORT_OPTIONS:MBOOTSTRAP} BUILD_DEPENDS+= dejagnu>=1.4:${PORTSDIR}/misc/dejagnu APPLY_DIFFS+= ada-testsuite APPLY_DIFFS+= cxx-testsuite APPLY_DIFFS+= gcc-testsuite .endif .if ${PORT_OPTIONS:MNLS} && !${PORT_OPTIONS:MBOOTSTRAP} USES+= gettext EXTRA_CONFIG+= --enable-nls .else EXTRA_CONFIG+= --disable-nls .endif .if ${PORT_OPTIONS:MSTATIC} && !${PORT_OPTIONS:MBOOTSTRAP} EXTRA_CONFIG+= --with-stage1-ldflags=-static .endif .if ${PORT_OPTIONS:MBOOTSTRAP} EXTRA_CONFIG+= --disable-shared --disable-lto EXTRA_CONFIG+= --with-boot-ldflags=-static .else -# For some reason, libcc1.a can't be build with bootstrap (only) in poudriere -#EXTRA_CONFIG+= --disable-bootstrap +. if !${PORT_OPTIONS:MALLSTAGES} +# For reasons unknown, build fails at libcc1 when the compiler is not +# not bootstrapping. It appears to be an upstream error. LibCC1 is used +# for gdb 7.9 exclusively, so it's not really needed. Let's disable it +# by default, but let people that want it suffer a 3-stage build. +EXTRA_CONFIG+= --disable-bootstrap --disable-libcc1 +. endif +USES+= iconv .endif # Establish Ada-aware compiler for use ADA_CONFIGURE_ENV+= CC=${FULL_GNATGCC} ADA_CONFIGURE_ENV+= CXX=${FULL_GNATGXX} ADA_CONFIGURE_ENV+= CFLAGS="${CFLAGS}" ADA_CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" ADA_CONFIGURE_ENV+= CXXFLAGS="${CXXFLAGS}" ADA_CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}" ADA_CONFIGURE_ENV+= PATH=${FULL_PATH} ADA_MAKE_ENV+= PATH=${FULL_PATH} -ADA_MAKE_ENV+= LD_LIBRARY_PATH=${BUILDDIR}/gcc # The standard configuration options ADA_CONFIG_ARGS= --enable-languages=${LANGS:Q} ADA_CONFIG_ARGS+= --build=${BLD_TARGET} ADA_CONFIG_ARGS+= --prefix=${PKG_PREFIX:Q} ADA_CONFIG_ARGS+= --with-system-zlib ADA_CONFIG_ARGS+= --with-gmp=${PREFIX} ADA_CONFIG_ARGS+= --with-mpfr=${PREFIX} ADA_CONFIG_ARGS+= --with-mpc=${PREFIX} ADA_CONFIG_ARGS+= ${ICONV_CONFIGURE_ARG} ADA_CONFIG_ARGS+= --enable-shared ADA_CONFIG_ARGS+= --enable-threads=posix ADA_CONFIG_ARGS+= --enable-checking=release ADA_CONFIG_ARGS+= --disable-libmudflap ADA_CONFIG_ARGS+= --disable-libgomp ADA_CONFIG_ARGS+= --disable-libssp ADA_CONFIG_ARGS+= ${EXTRA_CONFIG} post-extract: # Personalize GNAT for each different machine @${ECHO} "-=> GNAT AUX ${OS_LABEL4VERS}" > ${REVFILE} # Apply required composite diff files .for suffix in ${APPLY_DIFFS} @${ECHO} "Applying composite patch diff-${suffix}" @${PATCH} -d ${WRKSRC} -s -E < ${FILESDIR}/diff-${suffix} .endfor # Try to test more locale stuff than stock GCC @(cd ${WRKSRC}/libstdc++-v3/testsuite/22_locale && ${REINPLACE_CMD} \ -e 's|ISO-8859|ISO8859|g' \ -e 's|ja_JP.eucjp|ja_JP.eucJP|g' \ -e 's|en_HK|zh_HK|g' \ -e 's|en_PH|en_NZ|g' \ -e 's|se_NO|no_NO|g' \ -e 's|es_MX|es_ES|g' \ -e 's|ru_RU.UTF8|ru_RU.UTF-8|g' ${LOCALE22FIX}) .if ${PORT_OPTIONS:MSTATIC} || ${PORT_OPTIONS:MBOOTSTRAP} # Ensure GNAT tools are built statically ${REINPLACE_CMD} -e 's/^GCC_LINK_FLAGS=.*/GCC_LINK_FLAGS=-static/' \ ${WRKSRC}/gcc/ada/gcc-interface/Makefile.in .endif .if ${PORT_OPTIONS:MBOOTSTRAP} && ${OPSYS} == FreeBSD # FreeBSD 8 linker doesn't understand --hash-style, so do not # allow the bootstrap to use it. ${REINPLACE_CMD} -e 's|" ELF_HASH_STYLE "||' \ ${WRKSRC}/gcc/config/i386/freebsd64.h \ ${WRKSRC}/gcc/config/i386/freebsd.h .endif # Update LINK_SPEC to add gcc-aux lib runpath in every binary @${ECHO} "Configuring LINK_SPEC runpath" @${REINPLACE_CMD} -e 's;\@PREFIX\@;${PREFIX};' \ -e 's;\@GCCAUX\@;${PORTNAME};' \ ${WRKSRC}/gcc/config/dragonfly.h \ ${WRKSRC}/gcc/config/i386/freebsd64.h \ ${WRKSRC}/gcc/config/i386/freebsd.h .if defined(MODERN_BINUTILS) # Use dwarf4-compatible addr2line (affects FreeBSD only) ${REINPLACE_CMD} -e 's|/usr/bin/addr2line|${PREFIX}/bin/addr2line|g' \ ${WRKSRC}/gcc/ada/traceback_symbolic.c .endif do-configure: ${MKDIR} ${BUILDDIR} cd ${BUILDDIR} && ${SETENV} ${ADA_CONFIGURE_ENV} \ ${CFG_SCRIPT} ${ADA_CONFIG_ARGS} do-build: cd ${BUILDDIR} && ${SETENV} ${ADA_MAKE_ENV} \ ${MAKE_CMD} -j${MAKE_JOBS_NUMBER} ${MAKE_ARGS} all .if ${PORT_OPTIONS:MTESTSUITE} && !${PORT_OPTIONS:MBOOTSTRAP} test: build test-ada test-fortran test-objc test-cxx test-c test-ada: cd ${BUILDDIR} && ${SETENV} ${ADA_MAKE_ENV} \ ${MAKE_CMD} -sk check-ada test-cxx: # libstdc++ testsuite will break every time, for TRUE to continue cd ${BUILDDIR} && ${SETENV} ${ADA_MAKE_ENV} \ ${MAKE_CMD} -sk check-c++ || true test-c: cd ${BUILDDIR} && ${SETENV} ${ADA_MAKE_ENV} \ ${MAKE_CMD} -sk check-c test-fortran: . if ${PORT_OPTIONS:MFORT} cd ${BUILDDIR} && ${SETENV} ${ADA_MAKE_ENV} \ ${MAKE_CMD} -sk check-fortran . endif test-objc: . if ${PORT_OPTIONS:MOBJC} cd ${BUILDDIR} && ${SETENV} ${ADA_MAKE_ENV} \ ${MAKE_CMD} -sk check-objc . endif .endif do-install: cd ${BUILDDIR} && ${SETENV} ${ADA_MAKE_ENV} \ ${MAKE_CMD} install-strip ${MAKE_ARGS} ${MV} ${STAGEDIR}${PKG_PREFIX}/share ${WRKDIR}/moved_share # Don't activate until this port builds gnatdroid # Otherwise it will conflict with lang/gcc-aux # ${MKDIR} ${STAGEDIR}${PREFIX}/share/dejagnu/baseboards \ # ${STAGEDIR}${PREFIX}/share/dejagnu/config # ${INSTALL_DATA} ${FILESDIR}/android.exp \ # ${STAGEDIR}${PREFIX}/share/dejagnu/config # ${INSTALL_DATA} ${FILESDIR}/gnatdroid.exp \ # ${STAGEDIR}${PREFIX}/share/dejagnu/baseboards post-stage: (cd ${STAGEDIR}${PKG_PREFIX}; ${FIND} * -type d -empty | \ ${SORT} -dr | ${XARGS} ${RMDIR}) (cd ${STAGEDIR}${PREFIX}; ${FIND} ${PORTNAME} share \ \( -type f -or -type l \) | ${SORT} | ${SED} \ -e 's/\/man\/man[1578]\/.*[1578]$$/&.gz/' >> ${TMPPLIST}) .if ${PORT_OPTIONS:MBOOTSTRAP} ${MKDIR} ${NEWBSDIR} ${CP} -a ${STAGEDIR}${PKG_PREFIX}/bin ${NEWBSDIR}/ ${CP} -a ${STAGEDIR}${PKG_PREFIX}/lib ${NEWBSDIR}/ ${CP} -a ${STAGEDIR}${PKG_PREFIX}/include ${NEWBSDIR}/ ${CP} -a ${STAGEDIR}${PKG_PREFIX}/libexec ${NEWBSDIR}/ ${RM} ${NEWBSDIR}/bin/${GARCH}* ${RM} -rf ${NEWBSDIR}/lib/gcc/${BLD_TARGET}/${GCC_VERSION}/include-fixed (cd ${NEWBSDIR}/.. ; ${TAR} -cyf ${BSFILENAME} bootstrap) .endif .include Index: head/lang/gcc5-aux/Makefile.common =================================================================== --- head/lang/gcc5-aux/Makefile.common (revision 384910) +++ head/lang/gcc5-aux/Makefile.common (revision 384911) @@ -1,143 +1,143 @@ # $FreeBSD$ .include "Makefile.version" LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp LIB_DEPENDS+= libmpfr.so:${PORTSDIR}/math/mpfr LIB_DEPENDS+= libmpc.so:${PORTSDIR}/math/mpc ONLY_FOR_ARCHS= i386 amd64 GNU_CONFIGURE= yes -USES= gmake iconv libtool perl5 tar:bzip2 +USES= gmake libtool perl5 tar:bzip2 USE_PERL5= build ALL_TARGET= default LOCALE22FIX= \ codecvt/always_noconv/char/wrapped_locale.cc \ codecvt/always_noconv/wchar_t/2.cc \ codecvt/always_noconv/wchar_t/3.cc \ codecvt/always_noconv/wchar_t/wrapped_locale.cc \ codecvt/encoding/char/wrapped_locale.cc \ codecvt/encoding/wchar_t/2.cc \ codecvt/encoding/wchar_t/3.cc \ codecvt/encoding/wchar_t/wrapped_locale.cc \ codecvt/in/char/wrapped_locale.cc \ codecvt/in/wchar_t/2.cc \ codecvt/in/wchar_t/3.cc \ codecvt/in/wchar_t/wrapped_locale.cc \ codecvt/length/char/wrapped_locale.cc \ codecvt/length/wchar_t/2.cc \ codecvt/length/wchar_t/3.cc \ codecvt/length/wchar_t/wrapped_locale.cc \ codecvt/max_length/char/wrapped_locale.cc \ codecvt/max_length/wchar_t/2.cc \ codecvt/max_length/wchar_t/3.cc \ codecvt/max_length/wchar_t/wrapped_locale.cc \ codecvt/out/char/wrapped_locale.cc \ codecvt/out/wchar_t/2.cc \ codecvt/out/wchar_t/3.cc \ codecvt/out/wchar_t/7.cc \ codecvt/out/wchar_t/wrapped_locale.cc \ codecvt/unshift/char/wrapped_locale.cc \ codecvt/unshift/wchar_t/2.cc \ codecvt/unshift/wchar_t/3.cc \ codecvt/unshift/wchar_t/wrapped_locale.cc \ collate/compare/char/wrapped_locale.cc \ collate/compare/wchar_t/wrapped_locale.cc \ collate/hash/char/wrapped_locale.cc \ collate/hash/wchar_t/wrapped_locale.cc \ collate/transform/char/wrapped_locale.cc \ collate/transform/wchar_t/wrapped_locale.cc \ ctype/cons/char/wrapped_locale.cc \ ctype/is/char/wrapped_locale.cc \ ctype/is/wchar_t/wrapped_locale.cc \ ctype/narrow/char/wrapped_locale.cc \ ctype/narrow/wchar_t/3.cc \ ctype/narrow/wchar_t/wrapped_locale.cc \ ctype/scan/char/wrapped_locale.cc \ ctype/scan/wchar_t/wrapped_locale.cc \ ctype/to/char/wrapped_locale.cc \ ctype/to/wchar_t/wrapped_locale.cc \ ctype/widen/char/wrapped_locale.cc \ ctype/widen/wchar_t/2.cc \ ctype/widen/wchar_t/3.cc \ ctype/widen/wchar_t/wrapped_locale.cc \ facet/2.cc \ locale/cons/40184.cc \ locale/cons/5.cc \ locale/cons/unicode.cc \ locale/global_locale_objects/2.cc \ messages/members/char/wrapped_locale.cc \ money_get/get/char/16.cc \ money_get/get/char/18.cc \ money_get/get/char/2.cc \ money_get/get/char/4.cc \ money_get/get/char/wrapped_env.cc \ money_get/get/char/wrapped_locale.cc \ money_get/get/wchar_t/16.cc \ money_get/get/wchar_t/18.cc \ money_get/get/wchar_t/2.cc \ money_get/get/wchar_t/4.cc \ money_get/get/wchar_t/wrapped_env.cc \ money_get/get/wchar_t/wrapped_locale.cc \ money_put/put/char/2.cc \ money_put/put/char/wrapped_env.cc \ money_put/put/char/wrapped_locale.cc \ money_put/put/wchar_t/2.cc \ money_put/put/wchar_t/wrapped_env.cc \ money_put/put/wchar_t/wrapped_locale.cc \ moneypunct/members/char/wrapped_locale.cc \ moneypunct/members/wchar_t/wrapped_locale.cc \ num_get/get/char/3.cc \ num_get/get/char/wrapped_env.cc \ num_get/get/char/wrapped_locale.cc \ num_get/get/wchar_t/3.cc \ num_get/get/wchar_t/wrapped_env.cc \ num_get/get/wchar_t/wrapped_locale.cc \ num_put/put/char/3.cc \ num_put/put/char/wrapped_env.cc \ num_put/put/char/wrapped_locale.cc \ num_put/put/wchar_t/3.cc \ num_put/put/wchar_t/wrapped_env.cc \ num_put/put/wchar_t/wrapped_locale.cc \ numpunct/members/char/wrapped_locale.cc \ numpunct/members/wchar_t/wrapped_locale.cc \ time_get/date_order/char/wrapped_locale.cc \ time_get/date_order/wchar_t/wrapped_locale.cc \ time_get/get_date/char/2.cc \ time_get/get_date/char/wrapped_env.cc \ time_get/get_date/char/wrapped_locale.cc \ time_get/get_date/wchar_t/2.cc \ time_get/get_date/wchar_t/wrapped_env.cc \ time_get/get_date/wchar_t/wrapped_locale.cc \ time_get/get_monthname/char/2.cc \ time_get/get_monthname/char/wrapped_env.cc \ time_get/get_monthname/char/wrapped_locale.cc \ time_get/get_monthname/wchar_t/2.cc \ time_get/get_monthname/wchar_t/wrapped_env.cc \ time_get/get_monthname/wchar_t/wrapped_locale.cc \ time_get/get_time/char/2.cc \ time_get/get_time/char/wrapped_env.cc \ time_get/get_time/char/wrapped_locale.cc \ time_get/get_time/wchar_t/2.cc \ time_get/get_time/wchar_t/wrapped_env.cc \ time_get/get_time/wchar_t/wrapped_locale.cc \ time_get/get_weekday/char/2.cc \ time_get/get_weekday/char/38081-1.cc \ time_get/get_weekday/char/38081-2.cc \ time_get/get_weekday/char/wrapped_env.cc \ time_get/get_weekday/char/wrapped_locale.cc \ time_get/get_weekday/wchar_t/2.cc \ time_get/get_weekday/wchar_t/wrapped_env.cc \ time_get/get_weekday/wchar_t/wrapped_locale.cc \ time_get/get_year/char/wrapped_locale.cc \ time_get/get_year/wchar_t/wrapped_locale.cc \ time_put/put/char/3.cc \ time_put/put/char/7.cc \ time_put/put/char/wrapped_env.cc \ time_put/put/char/wrapped_locale.cc \ time_put/put/wchar_t/3.cc \ time_put/put/wchar_t/7.cc \ time_put/put/wchar_t/wrapped_env.cc \ time_put/put/wchar_t/wrapped_locale.cc Index: head/lang/gcc5-aux/distinfo =================================================================== --- head/lang/gcc5-aux/distinfo (revision 384910) +++ head/lang/gcc5-aux/distinfo (revision 384911) @@ -1,14 +1,12 @@ SHA256 (gcc-5.1.0.tar.bz2) = b7dafdf89cbb0e20333dbf5b5349319ae06e3d1a30bf3515b5488f7e89dca5ad SIZE (gcc-5.1.0.tar.bz2) = 94954411 -SHA256 (ada-bootstrap.i386.dragonfly.36A.tar.bz2) = 6b1a6ff0fe0e3bf13c667db2fef177b811329cd998400a1303969a86911cb1c8 -SIZE (ada-bootstrap.i386.dragonfly.36A.tar.bz2) = 39357314 SHA256 (ada-bootstrap.i386.freebsd.84.tar.bz2) = b410336cb0e71c8a29dd5f831a17b4b7282e7d590f452475a94c6a625cfc8846 SIZE (ada-bootstrap.i386.freebsd.84.tar.bz2) = 39727003 SHA256 (ada-bootstrap.i386.freebsd.100B.tar.bz2) = 7231209f2600275f554f788ad1d036cf633c4339ebd25bd479a5bb1ddcddedf3 SIZE (ada-bootstrap.i386.freebsd.100B.tar.bz2) = 41229192 -SHA256 (ada-bootstrap.x86_64.dragonfly.36A.tar.bz2) = ba9b193f1f5c780c0e94086a9af6f1c8e843b6782c133b9948789b95b2e605c4 -SIZE (ada-bootstrap.x86_64.dragonfly.36A.tar.bz2) = 40747242 +SHA256 (ada-bootstrap.x86_64.dragonfly.41.tar.bz2) = eb7785d8b842aee2bb04b43adfb1346b178ee4e83d8775b4e6705fd23f1586f0 +SIZE (ada-bootstrap.x86_64.dragonfly.41.tar.bz2) = 44956630 SHA256 (ada-bootstrap.x86_64.freebsd.84.tar.bz2) = ba1a407d936e7b3f2bfe825d1fb5a1f0e85e8edbdd9e8440bb49ef643fec05fc SIZE (ada-bootstrap.x86_64.freebsd.84.tar.bz2) = 40227668 SHA256 (ada-bootstrap.x86_64.freebsd.100B.tar.bz2) = 1066d7c5e71d78b4416de3b73348227678ca07db52488409e270db7b00467f55 SIZE (ada-bootstrap.x86_64.freebsd.100B.tar.bz2) = 42163803