From owner-svn-ports-head@freebsd.org Tue Feb 28 14:52:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8FD70CF1FC5; Tue, 28 Feb 2017 14:52:47 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 525E9D25; Tue, 28 Feb 2017 14:52:47 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1SEqklE092456; Tue, 28 Feb 2017 14:52:46 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1SEqknh092451; Tue, 28 Feb 2017 14:52:46 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201702281452.v1SEqknh092451@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Tue, 28 Feb 2017 14:52:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435057 - in head/lang: . ldc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Feb 2017 14:52:47 -0000 Author: acm Date: Tue Feb 28 14:52:45 2017 New Revision: 435057 URL: https://svnweb.freebsd.org/changeset/ports/435057 Log: New ports: lang/ldc The LDC project aims to provide a portable D programming language compiler with modern optimization and code generation capabilities. The compiler uses the official DMD frontends to support the latest version of D2, and relies on the LLVM Core libraries for code generation. LDC is fully Open Source; the parts of the code not taken/adapted from other projects are BSD-licensed (see the LICENSE file for details). WWW: http://wiki.dlang.org/LDC Added: head/lang/ldc/ head/lang/ldc/Makefile (contents, props changed) head/lang/ldc/distinfo (contents, props changed) head/lang/ldc/pkg-descr (contents, props changed) head/lang/ldc/pkg-plist (contents, props changed) Modified: head/lang/Makefile Modified: head/lang/Makefile ============================================================================== --- head/lang/Makefile Tue Feb 28 14:28:57 2017 (r435056) +++ head/lang/Makefile Tue Feb 28 14:52:45 2017 (r435057) @@ -154,6 +154,7 @@ SUBDIR += kturtle SUBDIR += lafontaine SUBDIR += lci + SUBDIR += ldc SUBDIR += lfe SUBDIR += libhx SUBDIR += libobjc2 Added: head/lang/ldc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/ldc/Makefile Tue Feb 28 14:52:45 2017 (r435057) @@ -0,0 +1,37 @@ +# Created by: Alonso Cardenas Marquez +# $FreeBSD$ + +PORTNAME= ldc +PORTVERSION= 1.1.0 +CATEGORIES= lang +MASTER_SITES= https://github.com/ldc-developers/ldc/releases/download/v${PORTVERSION}/:source \ + https://github.com/ldc-developers/ldc/releases/download/v${BOOTVER}/:bootstrap +DISTFILES= ${DISTNAME:S/$/-src/}${EXTRACT_SUFX}:source + +MAINTAINER= acm@FreeBSD.org +COMMENT= The LLVM-based D compiler + +LIB_DEPENDS= libconfig.so:devel/libconfig + +LICENSE= BSD3CLAUSE +USES= cmake +CMAKE_ARGS+= -DD_COMPILER:STRING="${WRKDIR}/${PORTNAME}-${BOOTVER:S/$/-src/}/bin/ldmd2" + +BOOTVER= 0.17.3 +LDCVER= ${PORTVERSION} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/$/-src/} + +DISTFILES+= ${PORTNAME}-${BOOTVER}-src.tar.gz:bootstrap + +.include + +.if ${OSVERSION} < 1100101 +BUILD_DEPENDS+= clang39:devel/llvm39 +CC= clang39 +.endif + +pre-configure: + @cd ${WRKDIR}/${PORTNAME}-${BOOTVER:S/$/-src/} && ${CMAKE_BIN} . + @cd ${WRKDIR}/${PORTNAME}-${BOOTVER:S/$/-src/} && ${MAKE} + +.include Added: head/lang/ldc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/ldc/distinfo Tue Feb 28 14:52:45 2017 (r435057) @@ -0,0 +1,5 @@ +TIMESTAMP = 1488180943 +SHA256 (ldc-1.1.0-src.tar.gz) = 3b95216cd664e140dca321a6364c2238c442c972d6ccca8b9a65cb02d2e47112 +SIZE (ldc-1.1.0-src.tar.gz) = 6068433 +SHA256 (ldc-0.17.3-src.tar.gz) = 325bd540f7eb71c309fa0ee9ef6d196a75ee2c3ccf323076053e6b7b295c2dad +SIZE (ldc-0.17.3-src.tar.gz) = 4934044 Added: head/lang/ldc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/ldc/pkg-descr Tue Feb 28 14:52:45 2017 (r435057) @@ -0,0 +1,10 @@ +The LDC project aims to provide a portable D programming language compiler +with modern optimization and code generation capabilities. + +The compiler uses the official DMD frontends to support the latest version of +D2, and relies on the LLVM Core libraries for code generation. + +LDC is fully Open Source; the parts of the code not taken/adapted from other +projects are BSD-licensed (see the LICENSE file for details). + +WWW: http://wiki.dlang.org/LDC Added: head/lang/ldc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/ldc/pkg-plist Tue Feb 28 14:52:45 2017 (r435057) @@ -0,0 +1,525 @@ +bin/ldc-profdata +bin/ldc-prune-cache +bin/ldc2 +bin/ldmd2 +%%ETCDIR%%2.conf +include/d/core/atomic.d +include/d/core/attribute.d +include/d/core/bitop.d +include/d/core/checkedint.d +include/d/core/cpuid.d +include/d/core/demangle.d +include/d/core/exception.d +include/d/core/internal/abort.d +include/d/core/internal/convert.d +include/d/core/internal/hash.d +include/d/core/internal/spinlock.d +include/d/core/internal/string.d +include/d/core/internal/traits.d +include/d/core/math.d +include/d/core/memory.d +include/d/core/runtime.d +include/d/core/simd.d +include/d/core/stdc/complex.d +include/d/core/stdc/config.d +include/d/core/stdc/ctype.d +include/d/core/stdc/errno.c +include/d/core/stdc/errno.d +include/d/core/stdc/fenv.d +include/d/core/stdc/float_.d +include/d/core/stdc/inttypes.d +include/d/core/stdc/limits.d +include/d/core/stdc/locale.d +include/d/core/stdc/math.d +include/d/core/stdc/signal.d +include/d/core/stdc/stdarg.d +include/d/core/stdc/stddef.d +include/d/core/stdc/stdint.d +include/d/core/stdc/stdio.d +include/d/core/stdc/stdlib.d +include/d/core/stdc/string.d +include/d/core/stdc/tgmath.d +include/d/core/stdc/time.d +include/d/core/stdc/wchar_.d +include/d/core/stdc/wctype.d +include/d/core/stdcpp/exception.d +include/d/core/stdcpp/typeinfo.d +include/d/core/sync/barrier.d +include/d/core/sync/condition.d +include/d/core/sync/config.d +include/d/core/sync/exception.d +include/d/core/sync/mutex.d +include/d/core/sync/rwmutex.d +include/d/core/sync/semaphore.d +include/d/core/sys/bionic/fcntl.d +include/d/core/sys/bionic/unistd.d +include/d/core/sys/freebsd/dlfcn.d +include/d/core/sys/freebsd/execinfo.d +include/d/core/sys/freebsd/sys/cdefs.d +include/d/core/sys/freebsd/sys/elf.d +include/d/core/sys/freebsd/sys/elf32.d +include/d/core/sys/freebsd/sys/elf64.d +include/d/core/sys/freebsd/sys/elf_common.d +include/d/core/sys/freebsd/sys/event.d +include/d/core/sys/freebsd/sys/link_elf.d +include/d/core/sys/freebsd/sys/mman.d +include/d/core/sys/freebsd/time.d +include/d/core/sys/linux/config.d +include/d/core/sys/linux/dlfcn.d +include/d/core/sys/linux/elf.d +include/d/core/sys/linux/epoll.d +include/d/core/sys/linux/errno.d +include/d/core/sys/linux/execinfo.d +include/d/core/sys/linux/fcntl.d +include/d/core/sys/linux/link.d +include/d/core/sys/linux/stdio.d +include/d/core/sys/linux/sys/auxv.d +include/d/core/sys/linux/sys/inotify.d +include/d/core/sys/linux/sys/mman.d +include/d/core/sys/linux/sys/signalfd.d +include/d/core/sys/linux/sys/socket.d +include/d/core/sys/linux/sys/sysinfo.d +include/d/core/sys/linux/sys/xattr.d +include/d/core/sys/linux/termios.d +include/d/core/sys/linux/time.d +include/d/core/sys/linux/timerfd.d +include/d/core/sys/linux/tipc.d +include/d/core/sys/linux/unistd.d +include/d/core/sys/osx/execinfo.d +include/d/core/sys/osx/mach/dyld.d +include/d/core/sys/osx/mach/getsect.d +include/d/core/sys/osx/mach/kern_return.d +include/d/core/sys/osx/mach/loader.d +include/d/core/sys/osx/mach/port.d +include/d/core/sys/osx/mach/semaphore.d +include/d/core/sys/osx/mach/thread_act.d +include/d/core/sys/osx/pthread.d +include/d/core/sys/osx/sys/cdefs.d +include/d/core/sys/osx/sys/event.d +include/d/core/sys/osx/sys/mman.d +include/d/core/sys/posix/arpa/inet.d +include/d/core/sys/posix/config.d +include/d/core/sys/posix/dirent.d +include/d/core/sys/posix/dlfcn.d +include/d/core/sys/posix/fcntl.d +include/d/core/sys/posix/grp.d +include/d/core/sys/posix/inttypes.d +include/d/core/sys/posix/mqueue.d +include/d/core/sys/posix/net/if_.d +include/d/core/sys/posix/netdb.d +include/d/core/sys/posix/netinet/in_.d +include/d/core/sys/posix/netinet/tcp.d +include/d/core/sys/posix/poll.d +include/d/core/sys/posix/pthread.d +include/d/core/sys/posix/pwd.d +include/d/core/sys/posix/sched.d +include/d/core/sys/posix/semaphore.d +include/d/core/sys/posix/setjmp.d +include/d/core/sys/posix/signal.d +include/d/core/sys/posix/stdio.d +include/d/core/sys/posix/stdlib.d +include/d/core/sys/posix/sys/ioctl.d +include/d/core/sys/posix/sys/ipc.d +include/d/core/sys/posix/sys/mman.d +include/d/core/sys/posix/sys/msg.d +include/d/core/sys/posix/sys/resource.d +include/d/core/sys/posix/sys/select.d +include/d/core/sys/posix/sys/shm.d +include/d/core/sys/posix/sys/socket.d +include/d/core/sys/posix/sys/stat.d +include/d/core/sys/posix/sys/statvfs.d +include/d/core/sys/posix/sys/time.d +include/d/core/sys/posix/sys/types.d +include/d/core/sys/posix/sys/uio.d +include/d/core/sys/posix/sys/un.d +include/d/core/sys/posix/sys/utsname.d +include/d/core/sys/posix/sys/wait.d +include/d/core/sys/posix/syslog.d +include/d/core/sys/posix/termios.d +include/d/core/sys/posix/time.d +include/d/core/sys/posix/ucontext.d +include/d/core/sys/posix/unistd.d +include/d/core/sys/posix/utime.d +include/d/core/sys/solaris/dlfcn.d +include/d/core/sys/solaris/elf.d +include/d/core/sys/solaris/execinfo.d +include/d/core/sys/solaris/libelf.d +include/d/core/sys/solaris/link.d +include/d/core/sys/solaris/sys/elf.d +include/d/core/sys/solaris/sys/elf_386.d +include/d/core/sys/solaris/sys/elf_SPARC.d +include/d/core/sys/solaris/sys/elf_amd64.d +include/d/core/sys/solaris/sys/elf_notes.d +include/d/core/sys/solaris/sys/elftypes.d +include/d/core/sys/solaris/sys/link.d +include/d/core/sys/solaris/sys/priocntl.d +include/d/core/sys/solaris/sys/procset.d +include/d/core/sys/solaris/sys/types.d +include/d/core/sys/solaris/time.d +include/d/core/sys/windows/accctrl.d +include/d/core/sys/windows/aclapi.d +include/d/core/sys/windows/aclui.d +include/d/core/sys/windows/basetsd.d +include/d/core/sys/windows/basetyps.d +include/d/core/sys/windows/cderr.d +include/d/core/sys/windows/cguid.d +include/d/core/sys/windows/com.d +include/d/core/sys/windows/comcat.d +include/d/core/sys/windows/commctrl.d +include/d/core/sys/windows/commdlg.d +include/d/core/sys/windows/core.d +include/d/core/sys/windows/cpl.d +include/d/core/sys/windows/cplext.d +include/d/core/sys/windows/custcntl.d +include/d/core/sys/windows/dbghelp.d +include/d/core/sys/windows/dbghelp_types.d +include/d/core/sys/windows/dbt.d +include/d/core/sys/windows/dde.d +include/d/core/sys/windows/ddeml.d +include/d/core/sys/windows/dhcpcsdk.d +include/d/core/sys/windows/dlgs.d +include/d/core/sys/windows/dll.d +include/d/core/sys/windows/docobj.d +include/d/core/sys/windows/errorrep.d +include/d/core/sys/windows/exdisp.d +include/d/core/sys/windows/exdispid.d +include/d/core/sys/windows/httpext.d +include/d/core/sys/windows/idispids.d +include/d/core/sys/windows/imagehlp.d +include/d/core/sys/windows/imm.d +include/d/core/sys/windows/intshcut.d +include/d/core/sys/windows/ipexport.d +include/d/core/sys/windows/iphlpapi.d +include/d/core/sys/windows/ipifcons.d +include/d/core/sys/windows/iprtrmib.d +include/d/core/sys/windows/iptypes.d +include/d/core/sys/windows/isguids.d +include/d/core/sys/windows/lm.d +include/d/core/sys/windows/lmaccess.d +include/d/core/sys/windows/lmalert.d +include/d/core/sys/windows/lmapibuf.d +include/d/core/sys/windows/lmat.d +include/d/core/sys/windows/lmaudit.d +include/d/core/sys/windows/lmbrowsr.d +include/d/core/sys/windows/lmchdev.d +include/d/core/sys/windows/lmconfig.d +include/d/core/sys/windows/lmcons.d +include/d/core/sys/windows/lmerr.d +include/d/core/sys/windows/lmerrlog.d +include/d/core/sys/windows/lmmsg.d +include/d/core/sys/windows/lmremutl.d +include/d/core/sys/windows/lmrepl.d +include/d/core/sys/windows/lmserver.d +include/d/core/sys/windows/lmshare.d +include/d/core/sys/windows/lmsname.d +include/d/core/sys/windows/lmstats.d +include/d/core/sys/windows/lmsvc.d +include/d/core/sys/windows/lmuse.d +include/d/core/sys/windows/lmuseflg.d +include/d/core/sys/windows/lmwksta.d +include/d/core/sys/windows/lzexpand.d +include/d/core/sys/windows/mapi.d +include/d/core/sys/windows/mciavi.d +include/d/core/sys/windows/mcx.d +include/d/core/sys/windows/mgmtapi.d +include/d/core/sys/windows/mmsystem.d +include/d/core/sys/windows/msacm.d +include/d/core/sys/windows/mshtml.d +include/d/core/sys/windows/mswsock.d +include/d/core/sys/windows/nb30.d +include/d/core/sys/windows/nddeapi.d +include/d/core/sys/windows/nspapi.d +include/d/core/sys/windows/ntdef.d +include/d/core/sys/windows/ntdll.d +include/d/core/sys/windows/ntldap.d +include/d/core/sys/windows/ntsecapi.d +include/d/core/sys/windows/ntsecpkg.d +include/d/core/sys/windows/oaidl.d +include/d/core/sys/windows/objbase.d +include/d/core/sys/windows/objfwd.d +include/d/core/sys/windows/objidl.d +include/d/core/sys/windows/objsafe.d +include/d/core/sys/windows/ocidl.d +include/d/core/sys/windows/odbcinst.d +include/d/core/sys/windows/ole.d +include/d/core/sys/windows/ole2.d +include/d/core/sys/windows/ole2ver.d +include/d/core/sys/windows/oleacc.d +include/d/core/sys/windows/oleauto.d +include/d/core/sys/windows/olectl.d +include/d/core/sys/windows/olectlid.d +include/d/core/sys/windows/oledlg.d +include/d/core/sys/windows/oleidl.d +include/d/core/sys/windows/pbt.d +include/d/core/sys/windows/powrprof.d +include/d/core/sys/windows/prsht.d +include/d/core/sys/windows/psapi.d +include/d/core/sys/windows/rapi.d +include/d/core/sys/windows/ras.d +include/d/core/sys/windows/rasdlg.d +include/d/core/sys/windows/raserror.d +include/d/core/sys/windows/rassapi.d +include/d/core/sys/windows/reason.d +include/d/core/sys/windows/regstr.d +include/d/core/sys/windows/richedit.d +include/d/core/sys/windows/richole.d +include/d/core/sys/windows/rpc.d +include/d/core/sys/windows/rpcdce.d +include/d/core/sys/windows/rpcdce2.d +include/d/core/sys/windows/rpcdcep.d +include/d/core/sys/windows/rpcndr.d +include/d/core/sys/windows/rpcnsi.d +include/d/core/sys/windows/rpcnsip.d +include/d/core/sys/windows/rpcnterr.d +include/d/core/sys/windows/schannel.d +include/d/core/sys/windows/secext.d +include/d/core/sys/windows/security.d +include/d/core/sys/windows/servprov.d +include/d/core/sys/windows/setupapi.d +include/d/core/sys/windows/shellapi.d +include/d/core/sys/windows/shldisp.d +include/d/core/sys/windows/shlguid.d +include/d/core/sys/windows/shlobj.d +include/d/core/sys/windows/shlwapi.d +include/d/core/sys/windows/snmp.d +include/d/core/sys/windows/sql.d +include/d/core/sys/windows/sqlext.d +include/d/core/sys/windows/sqltypes.d +include/d/core/sys/windows/sqlucode.d +include/d/core/sys/windows/sspi.d +include/d/core/sys/windows/stacktrace.d +include/d/core/sys/windows/stat.d +include/d/core/sys/windows/subauth.d +include/d/core/sys/windows/threadaux.d +include/d/core/sys/windows/tlhelp32.d +include/d/core/sys/windows/tmschema.d +include/d/core/sys/windows/unknwn.d +include/d/core/sys/windows/uuid.d +include/d/core/sys/windows/vfw.d +include/d/core/sys/windows/w32api.d +include/d/core/sys/windows/winbase.d +include/d/core/sys/windows/winber.d +include/d/core/sys/windows/wincon.d +include/d/core/sys/windows/wincrypt.d +include/d/core/sys/windows/windef.d +include/d/core/sys/windows/windows.d +include/d/core/sys/windows/winerror.d +include/d/core/sys/windows/wingdi.d +include/d/core/sys/windows/winhttp.d +include/d/core/sys/windows/wininet.d +include/d/core/sys/windows/winioctl.d +include/d/core/sys/windows/winldap.d +include/d/core/sys/windows/winnetwk.d +include/d/core/sys/windows/winnls.d +include/d/core/sys/windows/winnt.d +include/d/core/sys/windows/winperf.d +include/d/core/sys/windows/winreg.d +include/d/core/sys/windows/winsock2.d +include/d/core/sys/windows/winspool.d +include/d/core/sys/windows/winsvc.d +include/d/core/sys/windows/winuser.d +include/d/core/sys/windows/winver.d +include/d/core/sys/windows/wtsapi32.d +include/d/core/sys/windows/wtypes.d +include/d/core/thread.d +include/d/core/threadasm.S +include/d/core/time.d +include/d/core/vararg.d +include/d/etc/c/curl.d +include/d/etc/c/odbc/sql.d +include/d/etc/c/odbc/sqlext.d +include/d/etc/c/odbc/sqltypes.d +include/d/etc/c/odbc/sqlucode.d +include/d/etc/c/sqlite3.d +include/d/etc/c/zlib.d +include/d/etc/linux/memoryerror.d +include/d/ldc/arm_unwind.c +include/d/ldc/arrayinit.d +include/d/ldc/attributes.d +include/d/ldc/eh/common.d +include/d/ldc/eh/fixedpool.d +include/d/ldc/eh/libunwind.d +include/d/ldc/eh/msvc.d +include/d/ldc/eh_asm.S +include/d/ldc/gccbuiltins_aarch64.di +include/d/ldc/gccbuiltins_arm.di +include/d/ldc/gccbuiltins_mips.di +include/d/ldc/gccbuiltins_ppc.di +include/d/ldc/gccbuiltins_s390.di +include/d/ldc/gccbuiltins_x86.di +include/d/ldc/internal/vararg.di +include/d/ldc/intrinsics.di +include/d/ldc/llvmasm.di +include/d/ldc/msvc.c +include/d/ldc/object.d +include/d/ldc/osx_tls.c +include/d/ldc/profile.d +include/d/ldc/simd.di +include/d/std/algorithm/comparison.d +include/d/std/algorithm/internal.d +include/d/std/algorithm/iteration.d +include/d/std/algorithm/mutation.d +include/d/std/algorithm/package.d +include/d/std/algorithm/searching.d +include/d/std/algorithm/setops.d +include/d/std/algorithm/sorting.d +include/d/std/array.d +include/d/std/ascii.d +include/d/std/base64.d +include/d/std/bigint.d +include/d/std/bitmanip.d +include/d/std/c/fenv.d +include/d/std/c/freebsd/socket.d +include/d/std/c/linux/linux.d +include/d/std/c/linux/linuxextern.d +include/d/std/c/linux/pthread.d +include/d/std/c/linux/socket.d +include/d/std/c/linux/termios.d +include/d/std/c/linux/tipc.d +include/d/std/c/locale.d +include/d/std/c/math.d +include/d/std/c/osx/socket.d +include/d/std/c/process.d +include/d/std/c/stdarg.d +include/d/std/c/stddef.d +include/d/std/c/stdio.d +include/d/std/c/stdlib.d +include/d/std/c/string.d +include/d/std/c/time.d +include/d/std/c/wcharh.d +include/d/std/c/windows/com.d +include/d/std/c/windows/stat.d +include/d/std/c/windows/windows.d +include/d/std/c/windows/winsock.d +include/d/std/compiler.d +include/d/std/complex.d +include/d/std/concurrency.d +include/d/std/concurrencybase.d +include/d/std/container/array.d +include/d/std/container/binaryheap.d +include/d/std/container/dlist.d +include/d/std/container/package.d +include/d/std/container/rbtree.d +include/d/std/container/slist.d +include/d/std/container/util.d +include/d/std/conv.d +include/d/std/cstream.d +include/d/std/csv.d +include/d/std/datetime.d +include/d/std/demangle.d +include/d/std/digest/crc.d +include/d/std/digest/digest.d +include/d/std/digest/hmac.d +include/d/std/digest/md.d +include/d/std/digest/ripemd.d +include/d/std/digest/sha.d +include/d/std/encoding.d +include/d/std/exception.d +include/d/std/experimental/allocator/building_blocks/affix_allocator.d +include/d/std/experimental/allocator/building_blocks/allocator_list.d +include/d/std/experimental/allocator/building_blocks/bitmapped_block.d +include/d/std/experimental/allocator/building_blocks/bucketizer.d +include/d/std/experimental/allocator/building_blocks/fallback_allocator.d +include/d/std/experimental/allocator/building_blocks/free_list.d +include/d/std/experimental/allocator/building_blocks/free_tree.d +include/d/std/experimental/allocator/building_blocks/kernighan_ritchie.d +include/d/std/experimental/allocator/building_blocks/null_allocator.d +include/d/std/experimental/allocator/building_blocks/package.d +include/d/std/experimental/allocator/building_blocks/quantizer.d +include/d/std/experimental/allocator/building_blocks/region.d +include/d/std/experimental/allocator/building_blocks/scoped_allocator.d +include/d/std/experimental/allocator/building_blocks/segregator.d +include/d/std/experimental/allocator/building_blocks/stats_collector.d +include/d/std/experimental/allocator/common.d +include/d/std/experimental/allocator/gc_allocator.d +include/d/std/experimental/allocator/mallocator.d +include/d/std/experimental/allocator/mmap_allocator.d +include/d/std/experimental/allocator/package.d +include/d/std/experimental/allocator/showcase.d +include/d/std/experimental/allocator/typed.d +include/d/std/experimental/logger/core.d +include/d/std/experimental/logger/filelogger.d +include/d/std/experimental/logger/multilogger.d +include/d/std/experimental/logger/nulllogger.d +include/d/std/experimental/logger/package.d +include/d/std/experimental/ndslice/internal.d +include/d/std/experimental/ndslice/iteration.d +include/d/std/experimental/ndslice/package.d +include/d/std/experimental/ndslice/selection.d +include/d/std/experimental/ndslice/slice.d +include/d/std/file.d +include/d/std/format.d +include/d/std/functional.d +include/d/std/getopt.d +include/d/std/internal/cstring.d +include/d/std/internal/digest/sha_SSSE3.d +include/d/std/internal/math/biguintarm.d +include/d/std/internal/math/biguintcore.d +include/d/std/internal/math/biguintnoasm.d +include/d/std/internal/math/biguintx86.d +include/d/std/internal/math/errorfunction.d +include/d/std/internal/math/gammafunction.d +include/d/std/internal/processinit.d +include/d/std/internal/scopebuffer.d +include/d/std/internal/test/dummyrange.d +include/d/std/internal/test/uda.d +include/d/std/internal/unicode_comp.d +include/d/std/internal/unicode_decomp.d +include/d/std/internal/unicode_grapheme.d +include/d/std/internal/unicode_norm.d +include/d/std/internal/unicode_tables.d +include/d/std/internal/windows/advapi32.d +include/d/std/json.d +include/d/std/math.d +include/d/std/mathspecial.d +include/d/std/meta.d +include/d/std/mmfile.d +include/d/std/net/curl.d +include/d/std/net/isemail.d +include/d/std/numeric.d +include/d/std/outbuffer.d +include/d/std/parallelism.d +include/d/std/path.d +include/d/std/process.d +include/d/std/random.d +include/d/std/range/interfaces.d +include/d/std/range/package.d +include/d/std/range/primitives.d +include/d/std/regex/internal/backtracking.d +include/d/std/regex/internal/generator.d +include/d/std/regex/internal/ir.d +include/d/std/regex/internal/kickstart.d +include/d/std/regex/internal/parser.d +include/d/std/regex/internal/tests.d +include/d/std/regex/internal/thompson.d +include/d/std/regex/package.d +include/d/std/signals.d +include/d/std/socket.d +include/d/std/socketstream.d +include/d/std/stdint.d +include/d/std/stdio.d +include/d/std/stdiobase.d +include/d/std/stream.d +include/d/std/string.d +include/d/std/system.d +include/d/std/traits.d +include/d/std/typecons.d +include/d/std/typetuple.d +include/d/std/uni.d +include/d/std/uri.d +include/d/std/utf.d +include/d/std/uuid.d +include/d/std/variant.d +include/d/std/windows/charset.d +include/d/std/windows/iunknown.d +include/d/std/windows/registry.d +include/d/std/windows/syserror.d +include/d/std/xml.d +include/d/std/zip.d +include/d/std/zlib.d +lib/libdruntime-ldc-debug.a +lib/libdruntime-ldc.a +lib/libldc-profile-rt.a +lib/libphobos2-ldc-debug.a +lib/libphobos2-ldc.a +@dir include/d/etc/c/zlib