Author: ericwf Date: Thu Jan 21 19:10:25 2016 New Revision: 258467 URL: http://llvm.org/viewvc/llvm-project?rev=258467&view=rev Log: Merging r258198: ------------------------------------------------------------------------ r258198 | ericwf | 2016-01-19 14:58:49 -0700 (Tue, 19 Jan 2016) | 1 line
Add more missing license headers ------------------------------------------------------------------------ Modified: libcxx/branches/release_38/src/include/atomic_support.h libcxx/branches/release_38/utils/gen_link_script/gen_link_script.py libcxx/branches/release_38/utils/not/not.py libcxx/branches/release_38/utils/sym_check/sym_check/__init__.py libcxx/branches/release_38/utils/sym_check/sym_check/diff.py libcxx/branches/release_38/utils/sym_check/sym_check/extract.py libcxx/branches/release_38/utils/sym_check/sym_check/match.py libcxx/branches/release_38/utils/sym_check/sym_check/util.py libcxx/branches/release_38/utils/sym_check/sym_diff.py libcxx/branches/release_38/utils/sym_check/sym_extract.py libcxx/branches/release_38/utils/sym_check/sym_match.py Modified: libcxx/branches/release_38/src/include/atomic_support.h URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_38/src/include/atomic_support.h?rev=258467&r1=258466&r2=258467&view=diff ============================================================================== --- libcxx/branches/release_38/src/include/atomic_support.h (original) +++ libcxx/branches/release_38/src/include/atomic_support.h Thu Jan 21 19:10:25 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/branches/release_38/utils/gen_link_script/gen_link_script.py URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_38/utils/gen_link_script/gen_link_script.py?rev=258467&r1=258466&r2=258467&view=diff ============================================================================== --- libcxx/branches/release_38/utils/gen_link_script/gen_link_script.py (original) +++ libcxx/branches/release_38/utils/gen_link_script/gen_link_script.py Thu Jan 21 19:10:25 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/branches/release_38/utils/not/not.py URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_38/utils/not/not.py?rev=258467&r1=258466&r2=258467&view=diff ============================================================================== --- libcxx/branches/release_38/utils/not/not.py (original) +++ libcxx/branches/release_38/utils/not/not.py Thu Jan 21 19:10:25 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/branches/release_38/utils/sym_check/sym_check/__init__.py URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_38/utils/sym_check/sym_check/__init__.py?rev=258467&r1=258466&r2=258467&view=diff ============================================================================== --- libcxx/branches/release_38/utils/sym_check/sym_check/__init__.py (original) +++ libcxx/branches/release_38/utils/sym_check/sym_check/__init__.py Thu Jan 21 19:10:25 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/branches/release_38/utils/sym_check/sym_check/diff.py URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_38/utils/sym_check/sym_check/diff.py?rev=258467&r1=258466&r2=258467&view=diff ============================================================================== --- libcxx/branches/release_38/utils/sym_check/sym_check/diff.py (original) +++ libcxx/branches/release_38/utils/sym_check/sym_check/diff.py Thu Jan 21 19:10:25 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/branches/release_38/utils/sym_check/sym_check/extract.py URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_38/utils/sym_check/sym_check/extract.py?rev=258467&r1=258466&r2=258467&view=diff ============================================================================== --- libcxx/branches/release_38/utils/sym_check/sym_check/extract.py (original) +++ libcxx/branches/release_38/utils/sym_check/sym_check/extract.py Thu Jan 21 19:10:25 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/branches/release_38/utils/sym_check/sym_check/match.py URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_38/utils/sym_check/sym_check/match.py?rev=258467&r1=258466&r2=258467&view=diff ============================================================================== --- libcxx/branches/release_38/utils/sym_check/sym_check/match.py (original) +++ libcxx/branches/release_38/utils/sym_check/sym_check/match.py Thu Jan 21 19:10:25 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/branches/release_38/utils/sym_check/sym_check/util.py URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_38/utils/sym_check/sym_check/util.py?rev=258467&r1=258466&r2=258467&view=diff ============================================================================== --- libcxx/branches/release_38/utils/sym_check/sym_check/util.py (original) +++ libcxx/branches/release_38/utils/sym_check/sym_check/util.py Thu Jan 21 19:10:25 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/branches/release_38/utils/sym_check/sym_diff.py URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_38/utils/sym_check/sym_diff.py?rev=258467&r1=258466&r2=258467&view=diff ============================================================================== --- libcxx/branches/release_38/utils/sym_check/sym_diff.py (original) +++ libcxx/branches/release_38/utils/sym_check/sym_diff.py Thu Jan 21 19:10:25 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/branches/release_38/utils/sym_check/sym_extract.py URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_38/utils/sym_check/sym_extract.py?rev=258467&r1=258466&r2=258467&view=diff ============================================================================== --- libcxx/branches/release_38/utils/sym_check/sym_extract.py (original) +++ libcxx/branches/release_38/utils/sym_check/sym_extract.py Thu Jan 21 19:10:25 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/branches/release_38/utils/sym_check/sym_match.py URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_38/utils/sym_check/sym_match.py?rev=258467&r1=258466&r2=258467&view=diff ============================================================================== --- libcxx/branches/release_38/utils/sym_check/sym_match.py (original) +++ libcxx/branches/release_38/utils/sym_check/sym_match.py Thu Jan 21 19:10:25 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. """ _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits