diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-04-01 13:29:14 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-04-01 13:29:14 +0000 |
commit | aef5472d832fb0e83e624316fe1d2ab45ddf315d (patch) | |
tree | 5dd7a5d10ff5e646cbcbf5c84cdc3931873bd35c /devel/llvm37/files/lldb-patch-svn-247116 | |
parent | Remove files/patch-armv6-hf-support since armv6hf no longer exists as (diff) |
Actually remove llvm37 and clang37
Reported by: jbeich
Pointy hat to: bapt
Diffstat (limited to 'devel/llvm37/files/lldb-patch-svn-247116')
-rw-r--r-- | devel/llvm37/files/lldb-patch-svn-247116 | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/devel/llvm37/files/lldb-patch-svn-247116 b/devel/llvm37/files/lldb-patch-svn-247116 deleted file mode 100644 index 3f4c97439582..000000000000 --- a/devel/llvm37/files/lldb-patch-svn-247116 +++ /dev/null @@ -1,36 +0,0 @@ ------------------------------------------------------------------------- -r247116 | sas | 2015-09-09 01:22:05 +0000 (Wed, 09 Sep 2015) | 11 lines - -Teach utilsOsType about NetBSD - -Summary: NetBSD is a free, fast, secure, and highly portable Unix-like Open Source operating system. - -Reviewers: joerg, sas - -Subscribers: sas, emaste, lldb-commits - -Differential Revision: http://reviews.llvm.org/D12615 - -Change by Kamil Rytarowski <n54@gmx.com> ------------------------------------------------------------------------- -Index: scripts/utilsOsType.py -=================================================================== ---- tools/lldb/scripts/utilsOsType.py (revision 247115) -+++ tools/lldb/scripts/utilsOsType.py (revision 247116) -@@ -31,6 +31,7 @@ - "Darwin", - "FreeBSD", - "Linux", -+ "NetBSD", - "Windows" ] - class __metaclass__( type ): - #++--------------------------------------------------------------------------- -@@ -71,6 +72,8 @@ - eOSType = EnumOsType.FreeBSD - elif (strOS.startswith("linux")): - eOSType = EnumOsType.Linux -+ elif (strOS.startswith("netbsd")): -+ eOSType = EnumOsType.NetBSD - elif strOS == "win32": - eOSType = EnumOsType.Windows - |