View | Details | Raw Unified | Return to bug 87690
Collapse All | Expand All

(-)gdc/Makefile (-55 / +43 lines)
Lines 11-27 Link Here
11
CATEGORIES=	lang
11
CATEGORIES=	lang
12
MASTER_SITES=	${MASTER_SITE_GCC} \
12
MASTER_SITES=	${MASTER_SITE_GCC} \
13
		http://home.earthlink.net/~dvdfrdmn/d/:gdc
13
		http://home.earthlink.net/~dvdfrdmn/d/:gdc
14
MASTER_SITE_SUBDIR=	snapshots/${__GCC_VERSIONSTRING}
14
MASTER_SITE_SUBDIR=	snapshots/${GCC_VERSIONSTRING}
15
DISTFILES=	${PORTNAME}-${PORTVERSION}.tar.bz2:gdc \
15
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}:gdc \
16
		gcc-core-${__GCC_VERSIONSTRING}.tar.bz2 \
16
		gcc-core-${GCC_VERSIONSTRING}${EXTRACT_SUFX} \
17
		gcc-g++-${__GCC_VERSIONSTRING}.tar.bz2
17
		gcc-g++-${GCC_VERSIONSTRING}${EXTRACT_SUFX}
18
EXTRACT_ONLY=	gcc-core-${__GCC_VERSIONSTRING}.tar.bz2 \
19
		gcc-g++-${__GCC_VERSIONSTRING}.tar.bz2
20
18
21
MAINTAINER=	ozawa@ongs.co.jp
19
MAINTAINER=	ozawa@ongs.co.jp
22
COMMENT=	D Front End for GCC
20
COMMENT=	D Front End for GCC
23
21
24
ONLY_FOR_ARCHS=	i386 alpha
22
ONLY_FOR_ARCHS=	i386
25
23
26
USE_BISON=	yes
24
USE_BISON=	yes
27
USE_BZIP2=	yes
25
USE_BZIP2=	yes
Lines 29-103 Link Here
29
USE_GMAKE=	yes
27
USE_GMAKE=	yes
30
USE_REINPLACE=	yes
28
USE_REINPLACE=	yes
31
29
32
__GCC_VERSION=	3.4.5
30
WRKSRC=		${WRKDIR}/gcc-${GCC_VERSIONSTRING}
33
__GCC_REVISION=	20050719
31
34
__GCC_VERSIONSTRING=	3.4-${__GCC_REVISION}
32
GNU_CONFIGURE=	yes
33
CONFIGURE_ARGS+=--disable-nls \
34
		--with-system-zlib \
35
		--with-libiconv-prefix=${LOCALBASE} \
36
		--disable-shared \
37
		--enable-languages=c,c++,d
38
39
PLIST_SUB=	GCC_VER=${GCC_VERSION} CONF_TARGET=${CONFIGURE_TARGET}
40
41
MAN1=		gdc.1
42
43
GCCDIR=		${WRKSRC}/gcc
44
GCC_VERSION=	3.4.5
45
GCC_REVISION=	20050920
46
GCC_VERSIONSTRING=	3.4-${GCC_REVISION}
47
GDC_INC=	${PREFIX}/include/d/${GCC_VERSION}
35
48
36
.include <bsd.port.pre.mk>
49
.include <bsd.port.pre.mk>
37
50
38
.if ${OSVERSION} < 500000
51
.if ${OSVERSION} < 500000
39
IGNORE=	It is supported on FreeBSD 5.x and later.
52
IGNORE=		It is supported on FreeBSD 5.x and later.
40
.endif
53
.endif
41
54
42
.if ${ARCH} == "amd64"
55
.if ${ARCH} == "amd64"
43
CONFIGURE_TARGET=	x86_64-portbld-freebsd${OSREL}
56
CONFIGURE_TARGET=	x86_64-portbld-freebsd${OSREL}
44
.else
45
CONFIGURE_TARGET=	${ARCH}-portbld-freebsd${OSREL}
46
.endif
47
48
GXX_INC=${PREFIX}/lib/gcc/${CONFIGURE_TARGET}/${__GCC_VERSION}/include/c++/
49
GDC_INC=${PREFIX}/include/d/${__GCC_VERSION}
50
CONFIGURE_ARGS+=--disable-nls --with-system-zlib \
51
		--with-libiconv-prefix=${LOCALBASE} \
52
		--with-gxx-include-dir=${GXX_INC} \
53
		--disable-shared --prefix=${PREFIX} \
54
		--enable-languages=c,c++,d
55
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split"
56
GNU_CONFIGURE=	yes
57
PLIST_SUB=	__GCC_VER=${__GCC_VERSION} CONF_TARGET=${CONFIGURE_TARGET}
58
59
.if defined(_GCC_BUILD_DEPENDS)
60
RUN_DEPENDS+=	${_GCC_BUILD_DEPENDS}:${PORTSDIR}/lang/${_GCC_BUILD_DEPENDS}
61
SUFFIX=		34
62
CONFIGURE_ARGS+=	--program-suffix=${SUFFIX}
63
.endif
64
65
WRKSRC=		${WRKDIR}/gcc-${__GCC_VERSIONSTRING}
66
GCCDIR=		${WRKSRC}/gcc
67
68
pre-fetch:
69
.ifdef 	WITH_UNITTEST
70
	@echo ""
71
	@echo "Warning:"
72
	@echo "         WITH_UNITTEST enabled."
73
	@echo "         On FreeBSD, some unit tests will fail."
74
	@echo ""
75
	@sleep 5
76
.endif
57
.endif
77
58
78
post-extract:
59
post-extract:
79
	@${TAR} xjf ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \
60
	@${MV} ${WRKDIR}/d ${GCCDIR}
80
		-C ${GCCDIR}
81
61
82
post-patch:
62
post-patch:
83
	@cd ${WRKSRC} && ${SH} ./gcc/d/setup-gcc.sh
63
	@(cd ${WRKSRC} && ${SH} ./gcc/d/setup-gcc.sh)
84
	@${REINPLACE_CMD} -e \
64
	@${REINPLACE_CMD} -e \
85
		's|\(const char version_string.*\)";|\1 [FreeBSD]";|' \
65
		's|\(const char version_string.*\)";|\1 [FreeBSD]";|' \
86
		${GCCDIR}/version.c
66
		${GCCDIR}/version.c
87
	@${REINPLACE_CMD} -e \
67
	@${REINPLACE_CMD} -e \
88
		'/^gcc_d_include_dir/s|^.*$$|gcc_d_include_dir = ${GDC_INC}|' \
68
		's|^\(gcc_d_include_dir\).*|\1 = ${GDC_INC}|' \
89
		${GCCDIR}/d/Make-lang.in
69
		${GCCDIR}/d/Make-lang.in
90
70
91
post-build:
71
post-build:
92
.ifdef 	WITH_UNITTEST
72
	@${ECHO_CMD}
93
	@cd ${WRKSRC} && ${GMAKE} check-target-libphobos
73
	@${ECHO_CMD} "======================================================="
94
.endif
74
	@${ECHO_CMD}
75
	@${ECHO_CMD} "To test the Phobos run-time library run 'make check'."
76
	@${ECHO_CMD}
77
	@${ECHO_CMD} "Note that some tests will fail."
78
	@${ECHO_CMD}
79
	@${ECHO_CMD} "======================================================="
80
	@${ECHO_CMD}
95
81
96
do-install:
82
do-install:
97
	${INSTALL_PROGRAM} -o root -g wheel -m 755 ${GCCDIR}/gdc ${PREFIX}/bin/
83
	${INSTALL_PROGRAM} ${GCCDIR}/gdc ${PREFIX}/bin
98
	@${STRIP_CMD} ${PREFIX}/bin/gdc
84
	${INSTALL_PROGRAM} ${GCCDIR}/cc1d ${PREFIX}/bin
99
	${INSTALL_PROGRAM} -o root -g wheel -m 755 ${GCCDIR}/cc1d ${PREFIX}/bin/
85
	${INSTALL_MAN} ${GCCDIR}/d/gdc.1 ${PREFIX}/man/man1
100
	@${STRIP_CMD} ${PREFIX}/bin/cc1d
86
	@(cd ${WRKSRC} && ${GMAKE} install-target-libphobos)
101
	@cd ${WRKSRC} && ${GMAKE} install-target-libphobos
87
88
check: build
89
	@(cd ${WRKSRC} && ${GMAKE} check-target-libphobos)
102
90
103
.include <bsd.port.post.mk>
91
.include <bsd.port.post.mk>
(-)gdc/distinfo (-4 / +4 lines)
Lines 1-6 Link Here
1
MD5 (gdc-0.15.tar.bz2) = 443e3b8faf86f21ef2c7f6bf584466f1
1
MD5 (gdc-0.15.tar.bz2) = 443e3b8faf86f21ef2c7f6bf584466f1
2
SIZE (gdc-0.15.tar.bz2) = 858620
2
SIZE (gdc-0.15.tar.bz2) = 858620
3
MD5 (gcc-core-3.4-20050719.tar.bz2) = 43abb63b96a3bab180655b63d0569ac9
3
MD5 (gcc-core-3.4-20050920.tar.bz2) = d1323b6dc41d28f67b724823fc7244ca
4
SIZE (gcc-core-3.4-20050719.tar.bz2) = 11102006
4
SIZE (gcc-core-3.4-20050920.tar.bz2) = 11115747
5
MD5 (gcc-g++-3.4-20050719.tar.bz2) = 522a022f60d08ad52152ea08083a4a69
5
MD5 (gcc-g++-3.4-20050920.tar.bz2) = 6640e827ec158e2df44d4ae58b771765
6
SIZE (gcc-g++-3.4-20050719.tar.bz2) = 2482995
6
SIZE (gcc-g++-3.4-20050920.tar.bz2) = 2480879
(-)gdc/pkg-plist (-202 / +202 lines)
Lines 1-207 Link Here
1
bin/gdc
1
bin/gdc
2
bin/cc1d
2
bin/cc1d
3
include/d/%%__GCC_VER%%/etc/c/zlib.d
3
include/d/%%GCC_VER%%/etc/c/zlib.d
4
include/d/%%__GCC_VER%%/etc/c/recls/recls.h
4
include/d/%%GCC_VER%%/etc/c/recls/recls.h
5
include/d/%%__GCC_VER%%/etc/c/recls/recls_assert.h
5
include/d/%%GCC_VER%%/etc/c/recls/recls_assert.h
6
include/d/%%__GCC_VER%%/etc/c/recls/recls_compiler.h
6
include/d/%%GCC_VER%%/etc/c/recls/recls_compiler.h
7
include/d/%%__GCC_VER%%/etc/c/recls/recls_compiler_dmc.h
7
include/d/%%GCC_VER%%/etc/c/recls/recls_compiler_dmc.h
8
include/d/%%__GCC_VER%%/etc/c/recls/recls_compiler_gcc.h
8
include/d/%%GCC_VER%%/etc/c/recls/recls_compiler_gcc.h
9
include/d/%%__GCC_VER%%/etc/c/recls/recls_debug.h
9
include/d/%%GCC_VER%%/etc/c/recls/recls_debug.h
10
include/d/%%__GCC_VER%%/etc/c/recls/recls_defs.h
10
include/d/%%GCC_VER%%/etc/c/recls/recls_defs.h
11
include/d/%%__GCC_VER%%/etc/c/recls/recls_internal.h
11
include/d/%%GCC_VER%%/etc/c/recls/recls_internal.h
12
include/d/%%__GCC_VER%%/etc/c/recls/recls_language.h
12
include/d/%%GCC_VER%%/etc/c/recls/recls_language.h
13
include/d/%%__GCC_VER%%/etc/c/recls/recls_platform.h
13
include/d/%%GCC_VER%%/etc/c/recls/recls_platform.h
14
include/d/%%__GCC_VER%%/etc/c/recls/recls_platform_types.h
14
include/d/%%GCC_VER%%/etc/c/recls/recls_platform_types.h
15
include/d/%%__GCC_VER%%/etc/c/recls/recls_retcodes.h
15
include/d/%%GCC_VER%%/etc/c/recls/recls_retcodes.h
16
include/d/%%__GCC_VER%%/etc/c/recls/recls_unix.h
16
include/d/%%GCC_VER%%/etc/c/recls/recls_unix.h
17
include/d/%%__GCC_VER%%/etc/c/recls/recls_util.h
17
include/d/%%GCC_VER%%/etc/c/recls/recls_util.h
18
include/d/%%__GCC_VER%%/etc/c/recls/recls_win32.h
18
include/d/%%GCC_VER%%/etc/c/recls/recls_win32.h
19
include/d/%%__GCC_VER%%/etc/c/stlsoft/stlsoft.h
19
include/d/%%GCC_VER%%/etc/c/stlsoft/stlsoft.h
20
include/d/%%__GCC_VER%%/etc/c/stlsoft/stlsoft_cccap_dmc.h
20
include/d/%%GCC_VER%%/etc/c/stlsoft/stlsoft_cccap_dmc.h
21
include/d/%%__GCC_VER%%/etc/c/stlsoft/stlsoft_cccap_gcc.h
21
include/d/%%GCC_VER%%/etc/c/stlsoft/stlsoft_cccap_gcc.h
22
include/d/%%__GCC_VER%%/etc/c/stlsoft/stlsoft_iterator.h
22
include/d/%%GCC_VER%%/etc/c/stlsoft/stlsoft_iterator.h
23
include/d/%%__GCC_VER%%/etc/c/stlsoft/stlsoft_lock_scope.h
23
include/d/%%GCC_VER%%/etc/c/stlsoft/stlsoft_lock_scope.h
24
include/d/%%__GCC_VER%%/etc/c/stlsoft/stlsoft_null.h
24
include/d/%%GCC_VER%%/etc/c/stlsoft/stlsoft_null.h
25
include/d/%%__GCC_VER%%/etc/c/stlsoft/stlsoft_null_mutex.h
25
include/d/%%GCC_VER%%/etc/c/stlsoft/stlsoft_null_mutex.h
26
include/d/%%__GCC_VER%%/etc/c/stlsoft/stlsoft_nulldef.h
26
include/d/%%GCC_VER%%/etc/c/stlsoft/stlsoft_nulldef.h
27
include/d/%%__GCC_VER%%/etc/c/stlsoft/stlsoft_static_initialisers.h
27
include/d/%%GCC_VER%%/etc/c/stlsoft/stlsoft_static_initialisers.h
28
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl.h
28
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl.h
29
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_current_directory.h
29
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_current_directory.h
30
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_current_directory_scope.h
30
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_current_directory_scope.h
31
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_environment_variable.h
31
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_environment_variable.h
32
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_filesystem_traits.h
32
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_filesystem_traits.h
33
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_findfile_sequence.h
33
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_findfile_sequence.h
34
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_functionals.h
34
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_functionals.h
35
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_glob_sequence.h
35
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_glob_sequence.h
36
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_limits.h
36
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_limits.h
37
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_process_mutex.h
37
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_process_mutex.h
38
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_readdir_sequence.h
38
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_readdir_sequence.h
39
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_spin_mutex.h
39
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_spin_mutex.h
40
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_string_access.h
40
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_string_access.h
41
include/d/%%__GCC_VER%%/etc/c/stlsoft/unixstl_thread_mutex.h
41
include/d/%%GCC_VER%%/etc/c/stlsoft/unixstl_thread_mutex.h
42
include/d/%%__GCC_VER%%/etc/c/stlsoft/winstl.h
42
include/d/%%GCC_VER%%/etc/c/stlsoft/winstl.h
43
include/d/%%__GCC_VER%%/etc/c/stlsoft/winstl_atomic_functions.h
43
include/d/%%GCC_VER%%/etc/c/stlsoft/winstl_atomic_functions.h
44
include/d/%%__GCC_VER%%/etc/c/stlsoft/winstl_filesystem_traits.h
44
include/d/%%GCC_VER%%/etc/c/stlsoft/winstl_filesystem_traits.h
45
include/d/%%__GCC_VER%%/etc/c/stlsoft/winstl_findfile_sequence.h
45
include/d/%%GCC_VER%%/etc/c/stlsoft/winstl_findfile_sequence.h
46
include/d/%%__GCC_VER%%/etc/c/stlsoft/winstl_spin_mutex.h
46
include/d/%%GCC_VER%%/etc/c/stlsoft/winstl_spin_mutex.h
47
include/d/%%__GCC_VER%%/etc/c/stlsoft/winstl_system_version.h
47
include/d/%%GCC_VER%%/etc/c/stlsoft/winstl_system_version.h
48
include/d/%%__GCC_VER%%/etc/c/stlsoft/winstl_thread_mutex.h
48
include/d/%%GCC_VER%%/etc/c/stlsoft/winstl_thread_mutex.h
49
include/d/%%__GCC_VER%%/etc/c/stlsoft/winstl_tls_index.h
49
include/d/%%GCC_VER%%/etc/c/stlsoft/winstl_tls_index.h
50
include/d/%%__GCC_VER%%/etc/c/zlib/crc32.h
50
include/d/%%GCC_VER%%/etc/c/zlib/crc32.h
51
include/d/%%__GCC_VER%%/etc/c/zlib/deflate.h
51
include/d/%%GCC_VER%%/etc/c/zlib/deflate.h
52
include/d/%%__GCC_VER%%/etc/c/zlib/infblock.h
52
include/d/%%GCC_VER%%/etc/c/zlib/infblock.h
53
include/d/%%__GCC_VER%%/etc/c/zlib/infcodes.h
53
include/d/%%GCC_VER%%/etc/c/zlib/infcodes.h
54
include/d/%%__GCC_VER%%/etc/c/zlib/inffast.h
54
include/d/%%GCC_VER%%/etc/c/zlib/inffast.h
55
include/d/%%__GCC_VER%%/etc/c/zlib/inffixed.h
55
include/d/%%GCC_VER%%/etc/c/zlib/inffixed.h
56
include/d/%%__GCC_VER%%/etc/c/zlib/inflate.h
56
include/d/%%GCC_VER%%/etc/c/zlib/inflate.h
57
include/d/%%__GCC_VER%%/etc/c/zlib/inftrees.h
57
include/d/%%GCC_VER%%/etc/c/zlib/inftrees.h
58
include/d/%%__GCC_VER%%/etc/c/zlib/infutil.h
58
include/d/%%GCC_VER%%/etc/c/zlib/infutil.h
59
include/d/%%__GCC_VER%%/etc/c/zlib/trees.h
59
include/d/%%GCC_VER%%/etc/c/zlib/trees.h
60
include/d/%%__GCC_VER%%/etc/c/zlib/zconf.h
60
include/d/%%GCC_VER%%/etc/c/zlib/zconf.h
61
include/d/%%__GCC_VER%%/etc/c/zlib/zconf.in.h
61
include/d/%%GCC_VER%%/etc/c/zlib/zconf.in.h
62
include/d/%%__GCC_VER%%/etc/c/zlib/zlib.h
62
include/d/%%GCC_VER%%/etc/c/zlib/zlib.h
63
include/d/%%__GCC_VER%%/etc/c/zlib/zutil.h
63
include/d/%%GCC_VER%%/etc/c/zlib/zutil.h
64
include/d/%%__GCC_VER%%/gcc/aix_float.h
64
include/d/%%GCC_VER%%/gcc/aix_float.h
65
include/d/%%__GCC_VER%%/gcc/builtins.d
65
include/d/%%GCC_VER%%/gcc/builtins.d
66
include/d/%%__GCC_VER%%/gcc/configext.d
66
include/d/%%GCC_VER%%/gcc/configext.d
67
include/d/%%__GCC_VER%%/gcc/deh.d
67
include/d/%%GCC_VER%%/gcc/deh.d
68
include/d/%%__GCC_VER%%/gcc/support.d
68
include/d/%%GCC_VER%%/gcc/support.d
69
include/d/%%__GCC_VER%%/gcc/threadsem.d
69
include/d/%%GCC_VER%%/gcc/threadsem.d
70
include/d/%%__GCC_VER%%/gcc/unwind.d
70
include/d/%%GCC_VER%%/gcc/unwind.d
71
include/d/%%__GCC_VER%%/std/array.d
71
include/d/%%GCC_VER%%/std/array.d
72
include/d/%%__GCC_VER%%/std/asserterror.d
72
include/d/%%GCC_VER%%/std/asserterror.d
73
include/d/%%__GCC_VER%%/std/base64.d
73
include/d/%%GCC_VER%%/std/base64.d
74
include/d/%%__GCC_VER%%/std/boxer.d
74
include/d/%%GCC_VER%%/std/boxer.d
75
include/d/%%__GCC_VER%%/std/compiler.d
75
include/d/%%GCC_VER%%/std/compiler.d
76
include/d/%%__GCC_VER%%/std/conv.d
76
include/d/%%GCC_VER%%/std/conv.d
77
include/d/%%__GCC_VER%%/std/cstream.d
77
include/d/%%GCC_VER%%/std/cstream.d
78
include/d/%%__GCC_VER%%/std/ctype.d
78
include/d/%%GCC_VER%%/std/ctype.d
79
include/d/%%__GCC_VER%%/std/date.d
79
include/d/%%GCC_VER%%/std/date.d
80
include/d/%%__GCC_VER%%/std/dateparse.d
80
include/d/%%GCC_VER%%/std/dateparse.d
81
include/d/%%__GCC_VER%%/std/file.d
81
include/d/%%GCC_VER%%/std/file.d
82
include/d/%%__GCC_VER%%/std/format.d
82
include/d/%%GCC_VER%%/std/format.d
83
include/d/%%__GCC_VER%%/std/gc.d
83
include/d/%%GCC_VER%%/std/gc.d
84
include/d/%%__GCC_VER%%/std/intrinsic.d
84
include/d/%%GCC_VER%%/std/intrinsic.d
85
include/d/%%__GCC_VER%%/std/loader.d
85
include/d/%%GCC_VER%%/std/loader.d
86
include/d/%%__GCC_VER%%/std/math.d
86
include/d/%%GCC_VER%%/std/math.d
87
include/d/%%__GCC_VER%%/std/math2.d
87
include/d/%%GCC_VER%%/std/math2.d
88
include/d/%%__GCC_VER%%/std/md5.d
88
include/d/%%GCC_VER%%/std/md5.d
89
include/d/%%__GCC_VER%%/std/mmfile.d
89
include/d/%%GCC_VER%%/std/mmfile.d
90
include/d/%%__GCC_VER%%/std/moduleinit.d
90
include/d/%%GCC_VER%%/std/moduleinit.d
91
include/d/%%__GCC_VER%%/std/openrj.d
91
include/d/%%GCC_VER%%/std/openrj.d
92
include/d/%%__GCC_VER%%/std/outbuffer.d
92
include/d/%%GCC_VER%%/std/outbuffer.d
93
include/d/%%__GCC_VER%%/std/outofmemory.d
93
include/d/%%GCC_VER%%/std/outofmemory.d
94
include/d/%%__GCC_VER%%/std/path.d
94
include/d/%%GCC_VER%%/std/path.d
95
include/d/%%__GCC_VER%%/std/perf.d
95
include/d/%%GCC_VER%%/std/perf.d
96
include/d/%%__GCC_VER%%/std/process.d
96
include/d/%%GCC_VER%%/std/process.d
97
include/d/%%__GCC_VER%%/std/random.d
97
include/d/%%GCC_VER%%/std/random.d
98
include/d/%%__GCC_VER%%/std/recls.d
98
include/d/%%GCC_VER%%/std/recls.d
99
include/d/%%__GCC_VER%%/std/regexp.d
99
include/d/%%GCC_VER%%/std/regexp.d
100
include/d/%%__GCC_VER%%/std/socket.d
100
include/d/%%GCC_VER%%/std/socket.d
101
include/d/%%__GCC_VER%%/std/socketstream.d
101
include/d/%%GCC_VER%%/std/socketstream.d
102
include/d/%%__GCC_VER%%/std/stdarg.d
102
include/d/%%GCC_VER%%/std/stdarg.d
103
include/d/%%__GCC_VER%%/std/stdint.d
103
include/d/%%GCC_VER%%/std/stdint.d
104
include/d/%%__GCC_VER%%/std/stdio.d
104
include/d/%%GCC_VER%%/std/stdio.d
105
include/d/%%__GCC_VER%%/std/stream.d
105
include/d/%%GCC_VER%%/std/stream.d
106
include/d/%%__GCC_VER%%/std/string.d
106
include/d/%%GCC_VER%%/std/string.d
107
include/d/%%__GCC_VER%%/std/switcherr.d
107
include/d/%%GCC_VER%%/std/switcherr.d
108
include/d/%%__GCC_VER%%/std/syserror.d
108
include/d/%%GCC_VER%%/std/syserror.d
109
include/d/%%__GCC_VER%%/std/system.d
109
include/d/%%GCC_VER%%/std/system.d
110
include/d/%%__GCC_VER%%/std/thread.d
110
include/d/%%GCC_VER%%/std/thread.d
111
include/d/%%__GCC_VER%%/std/uni.d
111
include/d/%%GCC_VER%%/std/uni.d
112
include/d/%%__GCC_VER%%/std/uri.d
112
include/d/%%GCC_VER%%/std/uri.d
113
include/d/%%__GCC_VER%%/std/utf.d
113
include/d/%%GCC_VER%%/std/utf.d
114
include/d/%%__GCC_VER%%/std/zip.d
114
include/d/%%GCC_VER%%/std/zip.d
115
include/d/%%__GCC_VER%%/std/zlib.d
115
include/d/%%GCC_VER%%/std/zlib.d
116
include/d/%%__GCC_VER%%/std/c/dirent.d
116
include/d/%%GCC_VER%%/std/c/dirent.d
117
include/d/%%__GCC_VER%%/std/c/math.d
117
include/d/%%GCC_VER%%/std/c/math.d
118
include/d/%%__GCC_VER%%/std/c/process.d
118
include/d/%%GCC_VER%%/std/c/process.d
119
include/d/%%__GCC_VER%%/std/c/stdarg.d
119
include/d/%%GCC_VER%%/std/c/stdarg.d
120
include/d/%%__GCC_VER%%/std/c/stddef.d
120
include/d/%%GCC_VER%%/std/c/stddef.d
121
include/d/%%__GCC_VER%%/std/c/stdio.d
121
include/d/%%GCC_VER%%/std/c/stdio.d
122
include/d/%%__GCC_VER%%/std/c/stdlib.d
122
include/d/%%GCC_VER%%/std/c/stdlib.d
123
include/d/%%__GCC_VER%%/std/c/time.d
123
include/d/%%GCC_VER%%/std/c/time.d
124
include/d/%%__GCC_VER%%/std/c/darwin/darwin.d
124
include/d/%%GCC_VER%%/std/c/darwin/darwin.d
125
include/d/%%__GCC_VER%%/std/c/linux/linux.d
125
include/d/%%GCC_VER%%/std/c/linux/linux.d
126
include/d/%%__GCC_VER%%/std/c/linux/linuxextern.d
126
include/d/%%GCC_VER%%/std/c/linux/linuxextern.d
127
include/d/%%__GCC_VER%%/std/c/linux/socket.d
127
include/d/%%GCC_VER%%/std/c/linux/socket.d
128
include/d/%%__GCC_VER%%/std/c/mach/mach.d
128
include/d/%%GCC_VER%%/std/c/mach/mach.d
129
include/d/%%__GCC_VER%%/std/c/mach/mach_extern.d
129
include/d/%%GCC_VER%%/std/c/mach/mach_extern.d
130
include/d/%%__GCC_VER%%/std/c/unix/unix.d
130
include/d/%%GCC_VER%%/std/c/unix/unix.d
131
include/d/%%__GCC_VER%%/std/c/windows/com.d
131
include/d/%%GCC_VER%%/std/c/windows/com.d
132
include/d/%%__GCC_VER%%/std/c/windows/windows.d
132
include/d/%%GCC_VER%%/std/c/windows/windows.d
133
include/d/%%__GCC_VER%%/std/c/windows/winsock.d
133
include/d/%%GCC_VER%%/std/c/windows/winsock.d
134
include/d/%%__GCC_VER%%/std/typeinfo/ti_AC.d
134
include/d/%%GCC_VER%%/std/typeinfo/ti_AC.d
135
include/d/%%__GCC_VER%%/std/typeinfo/ti_Aa.d
135
include/d/%%GCC_VER%%/std/typeinfo/ti_Aa.d
136
include/d/%%__GCC_VER%%/std/typeinfo/ti_Abit.d
136
include/d/%%GCC_VER%%/std/typeinfo/ti_Abit.d
137
include/d/%%__GCC_VER%%/std/typeinfo/ti_Acdouble.d
137
include/d/%%GCC_VER%%/std/typeinfo/ti_Acdouble.d
138
include/d/%%__GCC_VER%%/std/typeinfo/ti_Acfloat.d
138
include/d/%%GCC_VER%%/std/typeinfo/ti_Acfloat.d
139
include/d/%%__GCC_VER%%/std/typeinfo/ti_Acreal.d
139
include/d/%%GCC_VER%%/std/typeinfo/ti_Acreal.d
140
include/d/%%__GCC_VER%%/std/typeinfo/ti_Adchar.d
140
include/d/%%GCC_VER%%/std/typeinfo/ti_Adchar.d
141
include/d/%%__GCC_VER%%/std/typeinfo/ti_Adouble.d
141
include/d/%%GCC_VER%%/std/typeinfo/ti_Adouble.d
142
include/d/%%__GCC_VER%%/std/typeinfo/ti_Afloat.d
142
include/d/%%GCC_VER%%/std/typeinfo/ti_Afloat.d
143
include/d/%%__GCC_VER%%/std/typeinfo/ti_Ag.d
143
include/d/%%GCC_VER%%/std/typeinfo/ti_Ag.d
144
include/d/%%__GCC_VER%%/std/typeinfo/ti_Aint.d
144
include/d/%%GCC_VER%%/std/typeinfo/ti_Aint.d
145
include/d/%%__GCC_VER%%/std/typeinfo/ti_Along.d
145
include/d/%%GCC_VER%%/std/typeinfo/ti_Along.d
146
include/d/%%__GCC_VER%%/std/typeinfo/ti_Areal.d
146
include/d/%%GCC_VER%%/std/typeinfo/ti_Areal.d
147
include/d/%%__GCC_VER%%/std/typeinfo/ti_Ashort.d
147
include/d/%%GCC_VER%%/std/typeinfo/ti_Ashort.d
148
include/d/%%__GCC_VER%%/std/typeinfo/ti_Aubyte.d
148
include/d/%%GCC_VER%%/std/typeinfo/ti_Aubyte.d
149
include/d/%%__GCC_VER%%/std/typeinfo/ti_Auint.d
149
include/d/%%GCC_VER%%/std/typeinfo/ti_Auint.d
150
include/d/%%__GCC_VER%%/std/typeinfo/ti_Aulong.d
150
include/d/%%GCC_VER%%/std/typeinfo/ti_Aulong.d
151
include/d/%%__GCC_VER%%/std/typeinfo/ti_Aushort.d
151
include/d/%%GCC_VER%%/std/typeinfo/ti_Aushort.d
152
include/d/%%__GCC_VER%%/std/typeinfo/ti_Awchar.d
152
include/d/%%GCC_VER%%/std/typeinfo/ti_Awchar.d
153
include/d/%%__GCC_VER%%/std/typeinfo/ti_C.d
153
include/d/%%GCC_VER%%/std/typeinfo/ti_C.d
154
include/d/%%__GCC_VER%%/std/typeinfo/ti_bit.d
154
include/d/%%GCC_VER%%/std/typeinfo/ti_bit.d
155
include/d/%%__GCC_VER%%/std/typeinfo/ti_byte.d
155
include/d/%%GCC_VER%%/std/typeinfo/ti_byte.d
156
include/d/%%__GCC_VER%%/std/typeinfo/ti_cdouble.d
156
include/d/%%GCC_VER%%/std/typeinfo/ti_cdouble.d
157
include/d/%%__GCC_VER%%/std/typeinfo/ti_cfloat.d
157
include/d/%%GCC_VER%%/std/typeinfo/ti_cfloat.d
158
include/d/%%__GCC_VER%%/std/typeinfo/ti_char.d
158
include/d/%%GCC_VER%%/std/typeinfo/ti_char.d
159
include/d/%%__GCC_VER%%/std/typeinfo/ti_creal.d
159
include/d/%%GCC_VER%%/std/typeinfo/ti_creal.d
160
include/d/%%__GCC_VER%%/std/typeinfo/ti_dchar.d
160
include/d/%%GCC_VER%%/std/typeinfo/ti_dchar.d
161
include/d/%%__GCC_VER%%/std/typeinfo/ti_delegate.d
161
include/d/%%GCC_VER%%/std/typeinfo/ti_delegate.d
162
include/d/%%__GCC_VER%%/std/typeinfo/ti_double.d
162
include/d/%%GCC_VER%%/std/typeinfo/ti_double.d
163
include/d/%%__GCC_VER%%/std/typeinfo/ti_float.d
163
include/d/%%GCC_VER%%/std/typeinfo/ti_float.d
164
include/d/%%__GCC_VER%%/std/typeinfo/ti_idouble.d
164
include/d/%%GCC_VER%%/std/typeinfo/ti_idouble.d
165
include/d/%%__GCC_VER%%/std/typeinfo/ti_ifloat.d
165
include/d/%%GCC_VER%%/std/typeinfo/ti_ifloat.d
166
include/d/%%__GCC_VER%%/std/typeinfo/ti_int.d
166
include/d/%%GCC_VER%%/std/typeinfo/ti_int.d
167
include/d/%%__GCC_VER%%/std/typeinfo/ti_ireal.d
167
include/d/%%GCC_VER%%/std/typeinfo/ti_ireal.d
168
include/d/%%__GCC_VER%%/std/typeinfo/ti_long.d
168
include/d/%%GCC_VER%%/std/typeinfo/ti_long.d
169
include/d/%%__GCC_VER%%/std/typeinfo/ti_ptr.d
169
include/d/%%GCC_VER%%/std/typeinfo/ti_ptr.d
170
include/d/%%__GCC_VER%%/std/typeinfo/ti_real.d
170
include/d/%%GCC_VER%%/std/typeinfo/ti_real.d
171
include/d/%%__GCC_VER%%/std/typeinfo/ti_short.d
171
include/d/%%GCC_VER%%/std/typeinfo/ti_short.d
172
include/d/%%__GCC_VER%%/std/typeinfo/ti_ubyte.d
172
include/d/%%GCC_VER%%/std/typeinfo/ti_ubyte.d
173
include/d/%%__GCC_VER%%/std/typeinfo/ti_uint.d
173
include/d/%%GCC_VER%%/std/typeinfo/ti_uint.d
174
include/d/%%__GCC_VER%%/std/typeinfo/ti_ulong.d
174
include/d/%%GCC_VER%%/std/typeinfo/ti_ulong.d
175
include/d/%%__GCC_VER%%/std/typeinfo/ti_ushort.d
175
include/d/%%GCC_VER%%/std/typeinfo/ti_ushort.d
176
include/d/%%__GCC_VER%%/std/typeinfo/ti_void.d
176
include/d/%%GCC_VER%%/std/typeinfo/ti_void.d
177
include/d/%%__GCC_VER%%/std/typeinfo/ti_wchar.d
177
include/d/%%GCC_VER%%/std/typeinfo/ti_wchar.d
178
include/d/%%__GCC_VER%%/std/windows/iunknown.d
178
include/d/%%GCC_VER%%/std/windows/iunknown.d
179
include/d/%%__GCC_VER%%/std/windows/registry.d
179
include/d/%%GCC_VER%%/std/windows/registry.d
180
include/d/%%__GCC_VER%%/std/windows/syserror.d
180
include/d/%%GCC_VER%%/std/windows/syserror.d
181
include/d/%%__GCC_VER%%/crc32.d
181
include/d/%%GCC_VER%%/crc32.d
182
include/d/%%__GCC_VER%%/gcstats.d
182
include/d/%%GCC_VER%%/gcstats.d
183
include/d/%%__GCC_VER%%/object.d
183
include/d/%%GCC_VER%%/object.d
184
include/d/%%__GCC_VER%%/%%CONF_TARGET%%/gcc/config.d
184
include/d/%%GCC_VER%%/%%CONF_TARGET%%/gcc/config.d
185
include/d/%%__GCC_VER%%/%%CONF_TARGET%%/gcc/configunix.d
185
include/d/%%GCC_VER%%/%%CONF_TARGET%%/gcc/configunix.d
186
include/d/%%__GCC_VER%%/%%CONF_TARGET%%/phobos-ver-syms
186
include/d/%%GCC_VER%%/%%CONF_TARGET%%/phobos-ver-syms
187
lib/libgphobos.a
187
lib/libgphobos.a
188
lib/libgphobos.spec
188
lib/libgphobos.spec
189
@dirrm include/d/%%__GCC_VER%%/etc/c/recls
189
@dirrm include/d/%%GCC_VER%%/etc/c/recls
190
@dirrm include/d/%%__GCC_VER%%/etc/c/stlsoft
190
@dirrm include/d/%%GCC_VER%%/etc/c/stlsoft
191
@dirrm include/d/%%__GCC_VER%%/etc/c/zlib
191
@dirrm include/d/%%GCC_VER%%/etc/c/zlib
192
@dirrm include/d/%%__GCC_VER%%/etc/c
192
@dirrm include/d/%%GCC_VER%%/etc/c
193
@dirrm include/d/%%__GCC_VER%%/etc
193
@dirrm include/d/%%GCC_VER%%/etc
194
@dirrm include/d/%%__GCC_VER%%/gcc
194
@dirrm include/d/%%GCC_VER%%/gcc
195
@dirrm include/d/%%__GCC_VER%%/std/c/darwin
195
@dirrm include/d/%%GCC_VER%%/std/c/darwin
196
@dirrm include/d/%%__GCC_VER%%/std/c/linux
196
@dirrm include/d/%%GCC_VER%%/std/c/linux
197
@dirrm include/d/%%__GCC_VER%%/std/c/mach
197
@dirrm include/d/%%GCC_VER%%/std/c/mach
198
@dirrm include/d/%%__GCC_VER%%/std/c/unix
198
@dirrm include/d/%%GCC_VER%%/std/c/unix
199
@dirrm include/d/%%__GCC_VER%%/std/c/windows
199
@dirrm include/d/%%GCC_VER%%/std/c/windows
200
@dirrm include/d/%%__GCC_VER%%/std/typeinfo
200
@dirrm include/d/%%GCC_VER%%/std/typeinfo
201
@dirrm include/d/%%__GCC_VER%%/std/windows
201
@dirrm include/d/%%GCC_VER%%/std/windows
202
@dirrm include/d/%%__GCC_VER%%/std/c
202
@dirrm include/d/%%GCC_VER%%/std/c
203
@dirrm include/d/%%__GCC_VER%%/std
203
@dirrm include/d/%%GCC_VER%%/std
204
@dirrm include/d/%%__GCC_VER%%/%%CONF_TARGET%%/gcc
204
@dirrm include/d/%%GCC_VER%%/%%CONF_TARGET%%/gcc
205
@dirrm include/d/%%__GCC_VER%%/%%CONF_TARGET%%
205
@dirrm include/d/%%GCC_VER%%/%%CONF_TARGET%%
206
@dirrm include/d/%%__GCC_VER%%
206
@dirrm include/d/%%GCC_VER%%
207
@dirrm include/d
207
@dirrm include/d

Return to bug 87690