Skip to content

Commit

Permalink
Migrated the Bytecode Compiler to work with clang/llvm 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ragusaa committed Apr 7, 2021
1 parent 89fe096 commit 263e269
Show file tree
Hide file tree
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.
16 changes: 5 additions & 11 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ AllowShortLoopsOnASingleLine: true
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: MultiLine
AlwaysBreakTemplateDeclarations: false
BinPackArguments: true
BinPackParameters: true
BraceWrapping:
Expand All @@ -38,7 +38,6 @@ BraceWrapping:
BreakBeforeBinaryOperators: None
BreakBeforeBraces: Linux
BreakBeforeInheritanceComma: false
BreakInheritanceList: BeforeColon
BreakBeforeTernaryOperators: true
BreakConstructorInitializersBeforeComma: false
BreakConstructorInitializers: BeforeColon
Expand Down Expand Up @@ -79,7 +78,6 @@ MacroBlockBegin: ''
MacroBlockEnd: ''
MaxEmptyLinesToKeep: 1
NamespaceIndentation: None
ObjCBinPackProtocolList: Auto
ObjCBlockIndentWidth: 2
ObjCSpaceAfterProperty: false
ObjCSpaceBeforeProtocolList: true
Expand All @@ -88,21 +86,20 @@ PenaltyBreakBeforeFirstCallParameter: 19
PenaltyBreakComment: 300
PenaltyBreakFirstLessLess: 120
PenaltyBreakString: 1000
PenaltyBreakTemplateDeclaration: 10
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 60
PointerAlignment: Right
RawStringFormats:
- Delimiter: pb
Language: TextProto
BasedOnStyle: google
ReflowComments: true
SortIncludes: false
SortUsingDeclarations: true
SpaceAfterCStyleCast: false
SpaceAfterTemplateKeyword: true
SpaceBeforeAssignmentOperators: true
SpaceBeforeCpp11BracedList: false
SpaceBeforeCtorInitializerColon: true
SpaceBeforeInheritanceColon: true
SpaceBeforeParens: ControlStatements
SpaceBeforeRangeBasedForLoopColon: true
SpaceInEmptyParentheses: false
SpacesBeforeTrailingComments: 1
SpacesInAngles: false
Expand All @@ -111,9 +108,6 @@ SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard: Cpp11
StatementMacros:
- Q_UNUSED
- QT_REQUIRE_VERSION
TabWidth: 8
UseTab: Never
...
Expand Down
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build
94 changes: 92 additions & 2 deletions .gitignore
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
Loading

0 comments on commit 263e269

Please sign in to comment.