2014-03-18 04:43:49 +00:00
|
|
|
#==============================================================================#
|
|
|
|
# The file specifies intentionally untracked files that git should ignore.
|
|
|
|
# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
|
|
|
|
#
|
|
|
|
# This file is intentionally different from the output of `git svn show-ignore`,
|
|
|
|
# as most of those are useless.
|
|
|
|
#==============================================================================#
|
|
|
|
|
|
|
|
#==============================================================================#
|
|
|
|
# File extensions to be ignored anywhere in the tree.
|
|
|
|
#==============================================================================#
|
|
|
|
# Temp files created by most text editors.
|
|
|
|
*~
|
|
|
|
# Merge files created by git.
|
|
|
|
*.orig
|
|
|
|
# Byte compiled python modules.
|
2012-02-07 21:53:52 +00:00
|
|
|
*.pyc
|
2014-12-12 18:10:52 +00:00
|
|
|
*.pyproj
|
2016-10-01 00:17:08 +00:00
|
|
|
# pyenv settings
|
|
|
|
.python-version
|
2014-12-12 18:10:52 +00:00
|
|
|
*.sln
|
|
|
|
*.suo
|
2014-03-18 04:43:49 +00:00
|
|
|
# vim swap files
|
|
|
|
.*.swp
|
|
|
|
.sw?
|
2016-06-23 04:24:16 +00:00
|
|
|
# OS X specific files.
|
2014-03-18 04:43:49 +00:00
|
|
|
.DS_store
|
2015-02-03 01:50:39 +00:00
|
|
|
DerivedData/
|
2019-04-05 17:57:42 +00:00
|
|
|
*.noindex
|
2015-02-03 01:50:39 +00:00
|
|
|
|
|
|
|
# Remote build configuration files.
|
|
|
|
.remote-build.conf
|
2014-03-18 04:43:49 +00:00
|
|
|
|
2012-02-07 21:53:52 +00:00
|
|
|
build/
|
2015-11-13 01:24:58 +00:00
|
|
|
pyproj/
|
2012-02-07 21:53:52 +00:00
|
|
|
llvm-build/
|
modify Xcode build to use cmake/ninja for internal llvm/clang
This change restores the Xcode build to working after Makefile support
was stripped from LLVM and clang recently.
With this change, the Xcode build now requires cmake (2.8.12.2+).
The cmake must either be on the path that Xcode sees, or it must
exist in one of the following locations:
* /usr/local/bin/cmake
* /opt/local/bin/cmake
* $HOME/bin/cmake
If the ninja build tool is present on the path, it will be used.
If not, ninja will be cloned (via git), bootstrap-built, and
used for the llvm/clang build.
LLDB now requires a minimum deployment target of OS X 10.9. Prior
to this, it was 10.8. The llvm/clang cmake build will not run
with Xcode 7.2 or Xcode 7.3 beta's compiler with the minimum
deployment target set to anything lower than 10.9. This is
related to #include <atomic>.
When llvm or clang source code does not exist in the lldb tree,
it will be cloned via git using http://llvm.org/git/{project}.git.
Previously it used SVN. If this causes any heartache, we can
make this smarter, autodetect an embedded svn and use svn instead.
(And/or use SVN if a git command is not available).
This change also fixes an lldb-mi linkage failure (needed
libncurses) as exposed by one of the LLVM libs.
llvm-svn: 259027
2016-01-28 07:36:44 +00:00
|
|
|
ninja/
|
2012-02-07 21:53:52 +00:00
|
|
|
*xcuserdata
|
|
|
|
test/20*
|
2015-12-03 19:20:11 +00:00
|
|
|
__pycache__/
|
2014-06-30 21:05:18 +00:00
|
|
|
|
2016-07-19 02:37:07 +00:00
|
|
|
clang-module-cache
|
|
|
|
|
2016-08-19 04:21:48 +00:00
|
|
|
# Skip ctags-style tags files
|
|
|
|
tags
|
|
|
|
|
2014-06-30 21:05:18 +00:00
|
|
|
# We should ignore Xcode-style embedding of llvm/ at lldb root dir.
|
2015-03-31 00:03:00 +00:00
|
|
|
# Do not add trailing '/'s, they skip symlinks.
|
|
|
|
/llvm
|
|
|
|
/DerivedData
|
2016-08-19 04:21:48 +00:00
|
|
|
|
|
|
|
# Ignore test trace directories.
|
|
|
|
20??-??-??-??_??_??/
|
|
|
|
|