[libcxx] r258198 - Add more missing license headers

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 19 13:58:50 PST 2016


Author: ericwf
Date: Tue Jan 19 15:58:49 2016
New Revision: 258198

URL: http://llvm.org/viewvc/llvm-project?rev=258198&view=rev
Log:
Add more missing license headers

Modified:
    libcxx/trunk/src/include/atomic_support.h
    libcxx/trunk/utils/gen_link_script/gen_link_script.py
    libcxx/trunk/utils/not/not.py
    libcxx/trunk/utils/sym_check/sym_check/__init__.py
    libcxx/trunk/utils/sym_check/sym_check/diff.py
    libcxx/trunk/utils/sym_check/sym_check/extract.py
    libcxx/trunk/utils/sym_check/sym_check/match.py
    libcxx/trunk/utils/sym_check/sym_check/util.py
    libcxx/trunk/utils/sym_check/sym_diff.py
    libcxx/trunk/utils/sym_check/sym_extract.py
    libcxx/trunk/utils/sym_check/sym_match.py

Modified: libcxx/trunk/src/include/atomic_support.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/src/include/atomic_support.h?rev=258198&r1=258197&r2=258198&view=diff
==============================================================================
--- libcxx/trunk/src/include/atomic_support.h (original)
+++ libcxx/trunk/src/include/atomic_support.h Tue Jan 19 15:58:49 2016
@@ -1,3 +1,12 @@
+//===----------------------------------------------------------------------===////
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===////
+
 #ifndef ATOMIC_SUPPORT_H
 #define ATOMIC_SUPPORT_H
 

Modified: libcxx/trunk/utils/gen_link_script/gen_link_script.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/gen_link_script/gen_link_script.py?rev=258198&r1=258197&r2=258198&view=diff
==============================================================================
--- libcxx/trunk/utils/gen_link_script/gen_link_script.py (original)
+++ libcxx/trunk/utils/gen_link_script/gen_link_script.py Tue Jan 19 15:58:49 2016
@@ -1,4 +1,13 @@
 #!/usr/bin/env python
+#===----------------------------------------------------------------------===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is dual licensed under the MIT and the University of Illinois Open
+# Source Licenses. See LICENSE.TXT for details.
+#
+#===----------------------------------------------------------------------===##
+
 import os
 import sys
 

Modified: libcxx/trunk/utils/not/not.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/not/not.py?rev=258198&r1=258197&r2=258198&view=diff
==============================================================================
--- libcxx/trunk/utils/not/not.py (original)
+++ libcxx/trunk/utils/not/not.py Tue Jan 19 15:58:49 2016
@@ -1,3 +1,12 @@
+#===----------------------------------------------------------------------===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is dual licensed under the MIT and the University of Illinois Open
+# Source Licenses. See LICENSE.TXT for details.
+#
+#===----------------------------------------------------------------------===##
+
 """not.py is a utility for inverting the return code of commands.
 It acts similar to llvm/utils/not.
 ex: python /path/to/not.py ' echo hello

Modified: libcxx/trunk/utils/sym_check/sym_check/__init__.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/sym_check/sym_check/__init__.py?rev=258198&r1=258197&r2=258198&view=diff
==============================================================================
--- libcxx/trunk/utils/sym_check/sym_check/__init__.py (original)
+++ libcxx/trunk/utils/sym_check/sym_check/__init__.py Tue Jan 19 15:58:49 2016
@@ -1,3 +1,12 @@
+#===----------------------------------------------------------------------===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is dual licensed under the MIT and the University of Illinois Open
+# Source Licenses. See LICENSE.TXT for details.
+#
+#===----------------------------------------------------------------------===##
+
 """libcxx abi symbol checker"""
 
 __author__ = 'Eric Fiselier'

Modified: libcxx/trunk/utils/sym_check/sym_check/diff.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/sym_check/sym_check/diff.py?rev=258198&r1=258197&r2=258198&view=diff
==============================================================================
--- libcxx/trunk/utils/sym_check/sym_check/diff.py (original)
+++ libcxx/trunk/utils/sym_check/sym_check/diff.py Tue Jan 19 15:58:49 2016
@@ -1,4 +1,12 @@
 # -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80:
+#===----------------------------------------------------------------------===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is dual licensed under the MIT and the University of Illinois Open
+# Source Licenses. See LICENSE.TXT for details.
+#
+#===----------------------------------------------------------------------===##
 """
 diff - A set of functions for diff-ing two symbol lists.
 """

Modified: libcxx/trunk/utils/sym_check/sym_check/extract.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/sym_check/sym_check/extract.py?rev=258198&r1=258197&r2=258198&view=diff
==============================================================================
--- libcxx/trunk/utils/sym_check/sym_check/extract.py (original)
+++ libcxx/trunk/utils/sym_check/sym_check/extract.py Tue Jan 19 15:58:49 2016
@@ -1,4 +1,12 @@
 # -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80:
+#===----------------------------------------------------------------------===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is dual licensed under the MIT and the University of Illinois Open
+# Source Licenses. See LICENSE.TXT for details.
+#
+#===----------------------------------------------------------------------===##
 """
 extract - A set of function that extract symbol lists from shared libraries.
 """

Modified: libcxx/trunk/utils/sym_check/sym_check/match.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/sym_check/sym_check/match.py?rev=258198&r1=258197&r2=258198&view=diff
==============================================================================
--- libcxx/trunk/utils/sym_check/sym_check/match.py (original)
+++ libcxx/trunk/utils/sym_check/sym_check/match.py Tue Jan 19 15:58:49 2016
@@ -1,4 +1,12 @@
 # -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80:
+#===----------------------------------------------------------------------===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is dual licensed under the MIT and the University of Illinois Open
+# Source Licenses. See LICENSE.TXT for details.
+#
+#===----------------------------------------------------------------------===##
 """
 match - A set of functions for matching symbols in a list to a list of regexs
 """

Modified: libcxx/trunk/utils/sym_check/sym_check/util.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/sym_check/sym_check/util.py?rev=258198&r1=258197&r2=258198&view=diff
==============================================================================
--- libcxx/trunk/utils/sym_check/sym_check/util.py (original)
+++ libcxx/trunk/utils/sym_check/sym_check/util.py Tue Jan 19 15:58:49 2016
@@ -1,3 +1,12 @@
+#===----------------------------------------------------------------------===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is dual licensed under the MIT and the University of Illinois Open
+# Source Licenses. See LICENSE.TXT for details.
+#
+#===----------------------------------------------------------------------===##
+
 import ast
 import distutils.spawn
 import signal

Modified: libcxx/trunk/utils/sym_check/sym_diff.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/sym_check/sym_diff.py?rev=258198&r1=258197&r2=258198&view=diff
==============================================================================
--- libcxx/trunk/utils/sym_check/sym_diff.py (original)
+++ libcxx/trunk/utils/sym_check/sym_diff.py Tue Jan 19 15:58:49 2016
@@ -1,7 +1,16 @@
 #!/usr/bin/env python
+#===----------------------------------------------------------------------===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is dual licensed under the MIT and the University of Illinois Open
+# Source Licenses. See LICENSE.TXT for details.
+#
+#===----------------------------------------------------------------------===##
 """
 sym_diff - Compare two symbol lists and output the differences.
 """
+
 from argparse import ArgumentParser
 import sys
 from sym_check import diff, util

Modified: libcxx/trunk/utils/sym_check/sym_extract.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/sym_check/sym_extract.py?rev=258198&r1=258197&r2=258198&view=diff
==============================================================================
--- libcxx/trunk/utils/sym_check/sym_extract.py (original)
+++ libcxx/trunk/utils/sym_check/sym_extract.py Tue Jan 19 15:58:49 2016
@@ -1,4 +1,12 @@
 #!/usr/bin/env python
+#===----------------------------------------------------------------------===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is dual licensed under the MIT and the University of Illinois Open
+# Source Licenses. See LICENSE.TXT for details.
+#
+#===----------------------------------------------------------------------===##
 """
 sym_extract - Extract and output a list of symbols from a shared library.
 """

Modified: libcxx/trunk/utils/sym_check/sym_match.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/sym_check/sym_match.py?rev=258198&r1=258197&r2=258198&view=diff
==============================================================================
--- libcxx/trunk/utils/sym_check/sym_match.py (original)
+++ libcxx/trunk/utils/sym_check/sym_match.py Tue Jan 19 15:58:49 2016
@@ -1,4 +1,13 @@
 #!/usr/bin/env python
+#===----------------------------------------------------------------------===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is dual licensed under the MIT and the University of Illinois Open
+# Source Licenses. See LICENSE.TXT for details.
+#
+#===----------------------------------------------------------------------===##
+
 """
 sym_match - Match all symbols in a list against a list of regexes.
 """




More information about the cfe-commits mailing list