Skip to content

Commit

Permalink
[libcxxabi] Import 'libcxxabi-12.0.0' and remove unnecessary files
Browse files Browse the repository at this point in the history
  • Loading branch information
disigma committed Jun 15, 2024
1 parent e984d8c commit fced8ef
Show file tree
Hide file tree
Showing 57 changed files with 16,619 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ out/
!/llvm/lib/Target/ARM/**
!/llvm/lib/Target/**/LLVMBuild.txt

### libcxxabi
# Libcxxabi tests
/libcxxabi/test/

### Clang
# Clang tests
/clang/test/
Expand Down Expand Up @@ -90,4 +94,4 @@ __pycache__/
/cmake/wimal

### clangd
/.cache
/.cache
12 changes: 12 additions & 0 deletions libcxxabi/.clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
BasedOnStyle: LLVM

---
Language: Cpp

AlwaysBreakTemplateDeclarations: true
PointerAlignment: Left

# Disable formatting options which may break tests.
SortIncludes: false
ReflowComments: false
---
58 changes: 58 additions & 0 deletions libcxxabi/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# vim swap files
.*.sw?
.sw?

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
#lib/ # We actually have things checked in to lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/
Loading

0 comments on commit fced8ef

Please sign in to comment.