Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 May 2016 11:52:36 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r415317 - in head/lang: . swift swift/files
Message-ID:  <201605161152.u4GBqalm061967@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Mon May 16 11:52:36 2016
New Revision: 415317
URL: https://svnweb.freebsd.org/changeset/ports/415317

Log:
  lang/swift: create port
  
  The Swift Programming Language
  
  WWW: https://swift.org/

Added:
  head/lang/swift/
  head/lang/swift/Makefile   (contents, props changed)
  head/lang/swift/distinfo   (contents, props changed)
  head/lang/swift/files/
  head/lang/swift/files/patch-llbuild_CMakeLists.txt   (contents, props changed)
  head/lang/swift/files/patch-llbuild_lib_llvm_Support_CMakeLists.txt   (contents, props changed)
  head/lang/swift/files/patch-llbuild_lib_llvm_Support_Unix_Process.inc   (contents, props changed)
  head/lang/swift/files/patch-llvm_lib_Support_Unix_Process.inc   (contents, props changed)
  head/lang/swift/files/patch-swift_cmake_modules_SwiftSharedCMakeConfig.cmake   (contents, props changed)
  head/lang/swift/files/patch-swift_docs_CMakeLists.txt   (contents, props changed)
  head/lang/swift/files/patch-swift_lib_ClangImporter_ClangImporter.cpp   (contents, props changed)
  head/lang/swift/files/patch-swiftpm_Sources_PackageDescription_Package.swift   (contents, props changed)
  head/lang/swift/files/patch-swiftpm_Sources_libc_libc.swift   (contents, props changed)
  head/lang/swift/pkg-descr   (contents, props changed)
  head/lang/swift/pkg-plist   (contents, props changed)
Modified:
  head/lang/Makefile

Modified: head/lang/Makefile
==============================================================================
--- head/lang/Makefile	Mon May 16 10:26:03 2016	(r415316)
+++ head/lang/Makefile	Mon May 16 11:52:36 2016	(r415317)
@@ -332,6 +332,7 @@
     SUBDIR += starlogo
     SUBDIR += stldoc
     SUBDIR += swi-pl
+    SUBDIR += swift
     SUBDIR += tcbasic
     SUBDIR += tcc
     SUBDIR += tcl-manual

Added: head/lang/swift/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/Makefile	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,112 @@
+# $FreeBSD$
+
+PORTNAME=	swift
+PORTVERSION=	2.2
+CATEGORIES=	lang
+
+MAINTAINER=	swills@FreeBSD.org
+COMMENT=	Swift programing language
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/swift/LICENSE.txt
+
+BUILD_DEPENDS=	cmake:devel/cmake \
+		bash:shells/bash \
+		swig:devel/swig13 \
+		python:lang/python \
+		sphinx-build:textproc/py-sphinx \
+		binutils>=2.25.1:devel/binutils
+LIB_DEPENDS=	libicudata.so:devel/icu \
+		libuuid.so:misc/e2fsprogs-libuuid
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	apple:DEFAULT,llvm,clang,lldb,cmark,llbuild,swiftpm,xctest,xcfound
+GH_PROJECT=	swift:DEFAULT swift-llvm:llvm swift-clang:clang swift-lldb:lldb \
+		swift-cmark:cmark swift-llbuild:llbuild swift-package-manager:swiftpm \
+		swift-corelibs-xctest:xctest swift-corelibs-foundation:xcfound
+GH_TAGNAME=	swift-2.2-RELEASE:DEFAULT,llvm,clang,lldb,cmark \
+		swift-DEVELOPMENT-SNAPSHOT-2016-03-16-a:llbuild,swiftpm,xctest,xcfound
+
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
+USES=		iconv libedit ninja perl5 pkgconfig python:3,build sqlite
+
+USE_GNOME=	libxml2
+USE_LDCONFIG=	yes
+ONLY_FOR_ARCHS=	amd64
+CONFLICTS_BUILD=	googletest
+
+OPTIONS_DEFINE=	DOCS
+
+PORTDOCS=	*
+
+.include <bsd.port.pre.mk>
+
+.if ${OPSYS} == FreeBSD
+.if (${OSVERSION} < 1002000) || (${OSVERSION} < 1100079)
+BUILD_DEPENDS+=	clang38:devel/llvm38
+EXTRA_FLAGS=	--host-cc=${LOCALBASE}/bin/clang38 --host-cxx=${LOCALBASE}/bin/clang++38
+.endif
+.if (${OSVERSION} < 1001513)
+BROKEN=		Does not build
+.endif
+.endif
+
+post-extract:
+	@${MKDIR} ${WRKSRC}
+	@${MV} ${WRKDIR}/${PORTNAME}-${PORTNAME}-${PORTVERSION}-RELEASE ${WRKSRC}/swift
+	@${MV} ${WRKSRC_llvm} ${WRKSRC}/llvm
+	@${MV} ${WRKSRC_clang} ${WRKSRC}/clang
+	@${MV} ${WRKSRC_lldb} ${WRKSRC}/lldb
+	@${MV} ${WRKSRC_cmark} ${WRKSRC}/cmark
+	@${MV} ${WRKSRC_llbuild} ${WRKSRC}/llbuild
+	@${MV} ${WRKSRC_swiftpm} ${WRKSRC}/swiftpm
+	@${MV} ${WRKSRC_xctest} ${WRKSRC}/swift-corelibs-xctest
+	@${MV} ${WRKSRC_xcfound} ${WRKSRC}/swift-corelibs-foundation
+
+post-patch:
+	@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
+		${WRKSRC}/swift/cmake/modules/SwiftSharedCMakeConfig.cmake
+
+do-build:
+	@${MKDIR} ${STAGEDIR}${PREFIX}
+	cd ${WRKSRC}/swift; ${SETENV} PATH=${LOCALBASE}/bin:${PATH} \
+		CPPFLAGS="-I${LOCALBASE}/include ${CPPFLAGS}" \
+		CFLAGS="-I${LOCALBASE}/include ${CFLAGS}" \
+		CXXFLAGS="-I${LOCALBASE}/include ${CXXFLAGS}" \
+		LDFLAGS='-B${LOCALBASE}/bin -fuse-ld=bfd' \
+		install_destdir=${STAGEDIR} \
+		./utils/build-script -R --no-assertions \
+		--llbuild \
+		-- \
+		${EXTRA_FLAGS} \
+		--verbose-build \
+		--swift-runtime-enable-dtrace \
+		--install-swift \
+		--install-llbuild \
+		--install_prefix=${PREFIX} \
+		--install_destdir=${STAGEDIR} \
+		--swift-install-components='compiler;clang-builtin-headers;stdlib;sdk-overlay;license;tools;editor-integration' \
+		--build-swift-static-stdlib=1 \
+		--skip-test-lldb=1
+	@${RM} /var/run/libuuid/clock.txt /var/run/libuuid/request /var/run/libuuid/uuidd.pid
+
+do-install:
+	${MV} ${STAGEDIR}${PREFIX}/share/man/man1/swift.1 ${STAGEDIR}${PREFIX}/man/man1/swift.1
+	${RM} -r ${STAGEDIR}${PREFIX}/share/man
+	${GZIP_CMD} ${STAGEDIR}${PREFIX}/man/man1/swift.1
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/swift/freebsd/libswiftGlibc.so
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/swift/freebsd/libswiftCore.so
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/swift-compress
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sil-extract
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/swift-ide-test
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/swift-llvm-opt
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/swift-build-tool
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/swift
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/swift-demangle
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sil-opt
+
+do-install-DOCS-on:
+	cd ${WRKSRC}/build/Ninja-Release/swift-freebsd-x86_64/docs/html ; \
+		${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.post.mk>

Added: head/lang/swift/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/distinfo	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,18 @@
+SHA256 (apple-swift-2.2-swift-2.2-RELEASE_GH0.tar.gz) = 6dfb9de14201b9804974b1f221573cfb3e24fd657ec3bf132bf3c75de02565f5
+SIZE (apple-swift-2.2-swift-2.2-RELEASE_GH0.tar.gz) = 8425866
+SHA256 (apple-swift-llvm-swift-2.2-RELEASE_GH0.tar.gz) = b975b816773aa9d888a9139f51acd1b57fd58959bb391f8f65645a2f9b6d4cc4
+SIZE (apple-swift-llvm-swift-2.2-RELEASE_GH0.tar.gz) = 22556064
+SHA256 (apple-swift-clang-swift-2.2-RELEASE_GH0.tar.gz) = ba9220e61971a55d13f501dc30f452a5c272e4d897b444a5220f2e23dbbfc2f8
+SIZE (apple-swift-clang-swift-2.2-RELEASE_GH0.tar.gz) = 12994360
+SHA256 (apple-swift-lldb-swift-2.2-RELEASE_GH0.tar.gz) = b562fee1963900c86fed016408e3acbb63500a3603f4af70928c11ce376b9a72
+SIZE (apple-swift-lldb-swift-2.2-RELEASE_GH0.tar.gz) = 14215846
+SHA256 (apple-swift-cmark-swift-2.2-RELEASE_GH0.tar.gz) = 09c8da18c37f32cd0eb82b252a172481f5403c1bc6ab5740f92e87f8d1e79991
+SIZE (apple-swift-cmark-swift-2.2-RELEASE_GH0.tar.gz) = 214423
+SHA256 (apple-swift-llbuild-swift-DEVELOPMENT-SNAPSHOT-2016-03-16-a_GH0.tar.gz) = c146c9475e646de3bc9644a951c3067440b352fe8d23de59e9d8793e13c6c224
+SIZE (apple-swift-llbuild-swift-DEVELOPMENT-SNAPSHOT-2016-03-16-a_GH0.tar.gz) = 4708201
+SHA256 (apple-swift-package-manager-swift-DEVELOPMENT-SNAPSHOT-2016-03-16-a_GH0.tar.gz) = 5833e69d4d158949a9b4986eced73806e10d597ebb5db8549ba3c7962d6f3c32
+SIZE (apple-swift-package-manager-swift-DEVELOPMENT-SNAPSHOT-2016-03-16-a_GH0.tar.gz) = 118190
+SHA256 (apple-swift-corelibs-xctest-swift-DEVELOPMENT-SNAPSHOT-2016-03-16-a_GH0.tar.gz) = 65e3ef58877c8bbec926177a6d7ce790de98cf76cabb808a46a735e6945554d6
+SIZE (apple-swift-corelibs-xctest-swift-DEVELOPMENT-SNAPSHOT-2016-03-16-a_GH0.tar.gz) = 31103
+SHA256 (apple-swift-corelibs-foundation-swift-DEVELOPMENT-SNAPSHOT-2016-03-16-a_GH0.tar.gz) = 2ef008a1fd32b9d1c34eb242c7a13569e1f2e83ef127a964260b1cfcee6f82e3
+SIZE (apple-swift-corelibs-foundation-swift-DEVELOPMENT-SNAPSHOT-2016-03-16-a_GH0.tar.gz) = 2436196

Added: head/lang/swift/files/patch-llbuild_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/files/patch-llbuild_CMakeLists.txt	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,11 @@
+--- llbuild/CMakeLists.txt.orig	2016-03-15 20:15:59 UTC
++++ llbuild/CMakeLists.txt
+@@ -128,7 +128,7 @@ else ()
+ endif ()
+ 
+ # On Linux, always build with PIC.
+-if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
++if(${CMAKE_SYSTEM_NAME} MATCHES "Linux" OR ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
+   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
+   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
+ endif ()

Added: head/lang/swift/files/patch-llbuild_lib_llvm_Support_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/files/patch-llbuild_lib_llvm_Support_CMakeLists.txt	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,10 @@
+--- llbuild/lib/llvm/Support/CMakeLists.txt.orig	2016-03-15 20:15:59 UTC
++++ llbuild/lib/llvm/Support/CMakeLists.txt
+@@ -41,3 +41,7 @@ raw_ostream.cpp
+ if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
+   target_link_libraries(llvmSupport pthread dl)
+ endif()
++
++if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
++  target_link_libraries(llvmSupport pthread execinfo)
++endif()

Added: head/lang/swift/files/patch-llbuild_lib_llvm_Support_Unix_Process.inc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/files/patch-llbuild_lib_llvm_Support_Unix_Process.inc	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,11 @@
+--- llbuild/lib/llvm/Support/Unix/Process.inc.orig	2016-03-15 20:15:59 UTC
++++ llbuild/lib/llvm/Support/Unix/Process.inc
+@@ -36,7 +36,7 @@
+ // DragonFlyBSD, OpenBSD, and Bitrig have deprecated <malloc.h> for
+ // <stdlib.h> instead. Unix.h includes this for us already.
+ #if defined(HAVE_MALLOC_H) && !defined(__DragonFly__) && \
+-    !defined(__OpenBSD__) && !defined(__Bitrig__)
++    !defined(__OpenBSD__) && !defined(__Bitrig__) && !defined(__FreeBSD__)
+ #include <malloc.h>
+ #endif
+ #if defined(HAVE_MALLCTL)

Added: head/lang/swift/files/patch-llvm_lib_Support_Unix_Process.inc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/files/patch-llvm_lib_Support_Unix_Process.inc	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,11 @@
+--- llvm/lib/Support/Unix/Process.inc.orig	2016-02-26 00:51:43 UTC
++++ llvm/lib/Support/Unix/Process.inc
+@@ -36,7 +36,7 @@
+ // DragonFlyBSD, OpenBSD, and Bitrig have deprecated <malloc.h> for
+ // <stdlib.h> instead. Unix.h includes this for us already.
+ #if defined(HAVE_MALLOC_H) && !defined(__DragonFly__) && \
+-    !defined(__OpenBSD__) && !defined(__Bitrig__)
++    !defined(__OpenBSD__) && !defined(__Bitrig__) && !defined(__FreeBSD__)
+ #include <malloc.h>
+ #endif
+ #if defined(HAVE_MALLCTL)

Added: head/lang/swift/files/patch-swift_cmake_modules_SwiftSharedCMakeConfig.cmake
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/files/patch-swift_cmake_modules_SwiftSharedCMakeConfig.cmake	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,20 @@
+--- swift/cmake/modules/SwiftSharedCMakeConfig.cmake.orig	2016-03-21 17:35:26 UTC
++++ swift/cmake/modules/SwiftSharedCMakeConfig.cmake
+@@ -236,7 +236,8 @@ macro(swift_common_standalone_build_conf
+   set(CMARK_BUILD_INCLUDE_DIR "${PATH_TO_CMARK_BUILD}/src")
+ 
+   set(CMAKE_INCLUDE_CURRENT_DIR ON)
+-  include_directories("${PATH_TO_LLVM_BUILD}/include"
++  include_directories("/usr/local/include"
++                      "${PATH_TO_LLVM_BUILD}/include"
+                       "${LLVM_MAIN_INCLUDE_DIR}"
+                       "${CLANG_BUILD_INCLUDE_DIR}"
+                       "${CLANG_MAIN_INCLUDE_DIR}"
+@@ -244,6 +245,7 @@ macro(swift_common_standalone_build_conf
+                       "${CMARK_BUILD_INCLUDE_DIR}")
+ 
+   link_directories(
++      "/usr/local/lib"
+       "${LLVM_LIBRARY_DIR}"
+       # FIXME: if we want to support separate Clang builds and mix different
+       # build configurations of Clang and Swift, this line should be adjusted.

Added: head/lang/swift/files/patch-swift_docs_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/files/patch-swift_docs_CMakeLists.txt	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,10 @@
+--- swift/docs/CMakeLists.txt.orig	2016-03-21 17:35:26 UTC
++++ swift/docs/CMakeLists.txt
+@@ -10,7 +10,6 @@ SET(SWIFT_SPHINX_PAPER_SIZE "letter"
+   CACHE STRING "Paper size for generated documentation")
+ 
+ SET(SPHINX_ARGS
+-  -W
+   -D latex_paper_size=${SWIFT_SPHINX_PAPER_SIZE}
+   -d ${CMAKE_BINARY_DIR}/doctrees)
+ 

Added: head/lang/swift/files/patch-swift_lib_ClangImporter_ClangImporter.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/files/patch-swift_lib_ClangImporter_ClangImporter.cpp	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,20 @@
+--- swift/lib/ClangImporter/ClangImporter.cpp.orig	2016-03-21 17:35:26 UTC
++++ swift/lib/ClangImporter/ClangImporter.cpp
+@@ -332,7 +332,7 @@ getNormalInvocationArguments(std::vector
+       // not import Objective-C modules.
+       //
+       // Just use the most feature-rich C language mode.
+-      "-x", "c", "-std=gnu11",
++      "-x", "c", "-std=gnu11", "-I/usr/include"
+     });
+   }
+ 
+@@ -376,7 +376,7 @@ getNormalInvocationArguments(std::vector
+   } else {
+     // On Darwin, Clang uses -isysroot to specify the include
+     // system root. On other targets, it seems to use --sysroot.
+-    if (triple.isOSDarwin()) {
++    if (triple.isOSDarwin() || triple.isOSFreeBSD()) {
+       invocationArgStrs.push_back("-isysroot");
+     } else {
+       invocationArgStrs.push_back("--sysroot");

Added: head/lang/swift/files/patch-swiftpm_Sources_PackageDescription_Package.swift
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/files/patch-swiftpm_Sources_PackageDescription_Package.swift	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,11 @@
+--- swiftpm/Sources/PackageDescription/Package.swift.orig	2016-03-16 18:28:14 UTC
++++ swiftpm/Sources/PackageDescription/Package.swift
+@@ -10,6 +10,8 @@
+ 
+ #if os(Linux)
+ import Glibc
++#elseif os(FreeBSD)
++import Glibc
+ #else
+ import Darwin.C
+ #endif

Added: head/lang/swift/files/patch-swiftpm_Sources_libc_libc.swift
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/files/patch-swiftpm_Sources_libc_libc.swift	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,11 @@
+--- swiftpm/Sources/libc/libc.swift.orig	2016-03-16 18:28:14 UTC
++++ swiftpm/Sources/libc/libc.swift
+@@ -10,6 +10,8 @@
+ 
+ #if os(Linux)
+ @_exported import Glibc
++#elseif os(FreeBSD)
++@_exported import Glibc
+ #else
+ @_exported import Darwin.C
+ #endif

Added: head/lang/swift/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/pkg-descr	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,3 @@
+The Swift Programming Language
+
+WWW: https://swift.org/

Added: head/lang/swift/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/swift/pkg-plist	Mon May 16 11:52:36 2016	(r415317)
@@ -0,0 +1,116 @@
+bin/sil-extract
+bin/sil-opt
+bin/swift
+bin/swift-compress
+bin/swift-demangle
+bin/swift-ide-test
+bin/swift-llvm-opt
+bin/swiftc
+bin/swift-build-tool
+lib/swift/clang/include/Intrin.h
+lib/swift/clang/include/__stddef_max_align_t.h
+lib/swift/clang/include/__wmmintrin_aes.h
+lib/swift/clang/include/__wmmintrin_pclmul.h
+lib/swift/clang/include/adxintrin.h
+lib/swift/clang/include/altivec.h
+lib/swift/clang/include/ammintrin.h
+lib/swift/clang/include/arm_acle.h
+lib/swift/clang/include/arm_neon.h
+lib/swift/clang/include/avx2intrin.h
+lib/swift/clang/include/avx512bwintrin.h
+lib/swift/clang/include/avx512cdintrin.h
+lib/swift/clang/include/avx512dqintrin.h
+lib/swift/clang/include/avx512erintrin.h
+lib/swift/clang/include/avx512fintrin.h
+lib/swift/clang/include/avx512vlbwintrin.h
+lib/swift/clang/include/avx512vldqintrin.h
+lib/swift/clang/include/avx512vlintrin.h
+lib/swift/clang/include/avxintrin.h
+lib/swift/clang/include/bmi2intrin.h
+lib/swift/clang/include/bmiintrin.h
+lib/swift/clang/include/cpuid.h
+lib/swift/clang/include/cuda_builtin_vars.h
+lib/swift/clang/include/emmintrin.h
+lib/swift/clang/include/f16cintrin.h
+lib/swift/clang/include/float.h
+lib/swift/clang/include/fma4intrin.h
+lib/swift/clang/include/fmaintrin.h
+lib/swift/clang/include/fxsrintrin.h
+lib/swift/clang/include/htmintrin.h
+lib/swift/clang/include/htmxlintrin.h
+lib/swift/clang/include/ia32intrin.h
+lib/swift/clang/include/immintrin.h
+lib/swift/clang/include/inttypes.h
+lib/swift/clang/include/iso646.h
+lib/swift/clang/include/limits.h
+lib/swift/clang/include/lzcntintrin.h
+lib/swift/clang/include/mm3dnow.h
+lib/swift/clang/include/mm_malloc.h
+lib/swift/clang/include/mmintrin.h
+lib/swift/clang/include/module.modulemap
+lib/swift/clang/include/nmmintrin.h
+lib/swift/clang/include/pmmintrin.h
+lib/swift/clang/include/popcntintrin.h
+lib/swift/clang/include/prfchwintrin.h
+lib/swift/clang/include/rdseedintrin.h
+lib/swift/clang/include/rtmintrin.h
+lib/swift/clang/include/s390intrin.h
+lib/swift/clang/include/shaintrin.h
+lib/swift/clang/include/smmintrin.h
+lib/swift/clang/include/stdalign.h
+lib/swift/clang/include/stdarg.h
+lib/swift/clang/include/stdatomic.h
+lib/swift/clang/include/stdbool.h
+lib/swift/clang/include/stddef.h
+lib/swift/clang/include/stdint.h
+lib/swift/clang/include/stdnoreturn.h
+lib/swift/clang/include/tbmintrin.h
+lib/swift/clang/include/tgmath.h
+lib/swift/clang/include/tmmintrin.h
+lib/swift/clang/include/unwind.h
+lib/swift/clang/include/vadefs.h
+lib/swift/clang/include/varargs.h
+lib/swift/clang/include/vecintrin.h
+lib/swift/clang/include/wmmintrin.h
+lib/swift/clang/include/x86intrin.h
+lib/swift/clang/include/xmmintrin.h
+lib/swift/clang/include/xopintrin.h
+lib/swift/clang/include/xsavecintrin.h
+lib/swift/clang/include/xsaveintrin.h
+lib/swift/clang/include/xsaveoptintrin.h
+lib/swift/clang/include/xsavesintrin.h
+lib/swift/clang/include/xtestintrin.h
+lib/swift/freebsd/libswiftCore.so
+lib/swift/freebsd/libswiftGlibc.so
+lib/swift/freebsd/x86_64/Glibc.swiftdoc
+lib/swift/freebsd/x86_64/Glibc.swiftmodule
+lib/swift/freebsd/x86_64/Swift.swiftdoc
+lib/swift/freebsd/x86_64/Swift.swiftmodule
+lib/swift/freebsd/x86_64/swift.ld
+lib/swift/glibc/module.map
+lib/swift/shims/CoreFoundationShims.h
+lib/swift/shims/FoundationShims.h
+lib/swift/shims/GlobalObjects.h
+lib/swift/shims/HeapObject.h
+lib/swift/shims/LibcShims.h
+lib/swift/shims/RefCount.h
+lib/swift/shims/RuntimeShims.h
+lib/swift/shims/RuntimeStubs.h
+lib/swift/shims/SwiftStddef.h
+lib/swift/shims/SwiftStdint.h
+lib/swift/shims/UnicodeShims.h
+lib/swift/shims/module.map
+lib/swift_static/freebsd/libswiftCore.a
+lib/swift_static/freebsd/libswiftGlibc.a
+lib/swift_static/freebsd/libswiftRuntime.a
+lib/swift_static/freebsd/libswiftStdlibStubs.a
+share/emacs/site-lisp/swift-mode.el
+man/man1/swift.1.gz
+share/vim/vim73/ftdetect/sil.vim
+share/vim/vim73/ftdetect/swift.vim
+share/vim/vim73/ftdetect/swiftgyb.vim
+share/vim/vim73/syntax/sil.vim
+share/vim/vim73/syntax/swift.vim
+share/vim/vim73/syntax/swiftgyb.vim
+%%DATADIR%%/LICENSE.txt
+%%PORTDOCS%%%%DOCSDIR%%/.buildinfo



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605161152.u4GBqalm061967>