Commit 49e478f5 authored by Jan Koester's avatar Jan Koester
Browse files

removed old clang dir

parent 8c129ad2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,6 +43,6 @@ build_libs()

set(STAGE 2)
set(STAGE_DIR "${CMAKE_BINARY_DIR}/stage2")
set(CMAKE_SYSROOT ${STAGE_DIR})
set(CMAKE_SYSROOT "${CMAKE_BINARY_DIR}/stage1")
build_thirdparty()
build_libs()
+2 −1
Original line number Diff line number Diff line
@@ -26,10 +26,11 @@ function(build_thirdparty)
        "-B${STAGE_DIR}/build/ninja-build " 
        ""
    )
    
    build_section(
        "llvm"
        ${STAGE} 
        "${CMAKE_SOURCE_DIR}/thirdparty/llvm-project" 
        "${CMAKE_SOURCE_DIR}/thirdparty/llvm-project/llvm" 
        "${STAGE_DIR}/build/llvm" 
        ${STAGE_DIR}
        "" 
+0 −1
Original line number Diff line number Diff line
BasedOnStyle: LLVM
+0 −24
Original line number Diff line number Diff line
Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-readability-identifier-naming'
# Note that the readability-identifier-naming check is disabled, there are too
# many violations in the codebase and they create too much noise in clang-tidy
# results.
# Naming settings are kept for documentation purposes and allowing to run the
# check if the users would override this file, e.g. via a command-line arg.
CheckOptions:
  - key:             readability-identifier-naming.ClassCase
    value:           CamelCase
  - key:             readability-identifier-naming.EnumCase
    value:           CamelCase
  - key:             readability-identifier-naming.FunctionCase
    value:           camelBack
  - key:             readability-identifier-naming.MemberCase
    value:           CamelCase
  - key:             readability-identifier-naming.ParameterCase
    value:           CamelCase
  - key:             readability-identifier-naming.UnionCase
    value:           CamelCase
  - key:             readability-identifier-naming.VariableCase
    value:           CamelCase
  - key:             readability-identifier-naming.IgnoreMainLikeFunctions
    value:           1
+0 −40
Original line number Diff line number Diff line
#==============================================================================#
# This file specifies intentionally untracked files that git should ignore.
# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
#==============================================================================#

#==============================================================================#
# 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.
*.pyc
# vim swap files
.*.sw?
.sw?

#==============================================================================#
# Explicit files to ignore (only matches one).
#==============================================================================#
cscope.files
cscope.out
/tags

#==============================================================================#
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
#==============================================================================#
# Clang extra user tools, which is tracked independently (clang-tools-extra).
tools/extra
# Sphinx build products
docs/_build
docs/analyzer/_build
# debug info testsuite
test/debuginfo-tests

# VS2017 and VSCode config files.
.vscode
.vs
Loading