forked from Cisco-Talos/clamav-bytecode-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrated the Bytecode Compiler to work with clang/llvm 8.0
- Loading branch information
Showing
10,721 changed files
with
16,023 additions
and
1,610,238 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,93 @@ | ||
# CMake | ||
CMakeLists.txt.user | ||
CMakeCache.txt | ||
CMakeFiles | ||
CMakeScripts | ||
Testing | ||
Makefile | ||
cmake_install.cmake | ||
install_manifest.txt | ||
compile_commands.json | ||
CTestTestfile.cmake | ||
|
||
# Python | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# Ninja | ||
.ninja_deps | ||
.ninja_log | ||
|
||
# C Prerequisites | ||
*.d | ||
|
||
# C Object files | ||
*.o | ||
*.ko | ||
*.obj | ||
*.elf | ||
|
||
# C Linker output | ||
*.ilk | ||
*.map | ||
*.exp | ||
|
||
# C Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# C Libraries | ||
*.lib | ||
*.a | ||
*.la | ||
*.lo | ||
|
||
# C Shared objects (inc. Windows DLLs) | ||
*.dll | ||
*.so | ||
*.so.* | ||
*.dylib | ||
|
||
# C Executables | ||
*.exe | ||
*.out | ||
*.app | ||
*.i*86 | ||
*.x86_64 | ||
*.hex | ||
|
||
# C Debug files | ||
*.dSYM/ | ||
*.su | ||
*.idb | ||
*.pdb | ||
|
||
# Editor save files | ||
*~ | ||
|
||
# Vim Swap | ||
[._]*.s[a-v][a-z] | ||
[._]*.sw[a-p] | ||
[._]s[a-rt-v][a-z] | ||
[._]ss[a-gi-z] | ||
[._]sw[a-p] | ||
|
||
# Vim Session | ||
Session.vim | ||
|
||
# Vim Temporary | ||
.netrwhist | ||
*~ | ||
# Vim Auto-generated tag files | ||
tags | ||
# Vim Persistent undo | ||
[._]*.un~ | ||
|
||
# VScode config | ||
.vscode | ||
examples/out | ||
obj | ||
|
||
# Build directories | ||
/examples/out | ||
/obj | ||
/build |
Oops, something went wrong.