forked from tymonx/logic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
93 lines (71 loc) · 2.6 KB
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
" Copyright 2018 Tymoteusz Blazejczyk
"
" Licensed under the Apache License, Version 2.0 (the "License");
" you may not use this source_file except in compliance with the License.
" You may obtain a copy of the License at
"
" http://www.apache.org/licenses/LICENSE-2.0
"
" Unless required by applicable law or agreed to in writing, software
" distributed under the License is distributed on an "AS IS" BASIS,
" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
" See the License for the specific language governing permissions and
" limitations under the License.
let current_dir = expand('<sfile>:p:h')
let glob_patterns = [
\ '**/rtl/**/*.h',
\ '**/rtl/**/*.vh',
\ '**/rtl/**/*.svh',
\ '**/rtl/**/*.v',
\ '**/rtl/**/*.sv'
\ ]
let source_files = []
for glob_pattern in glob_patterns
let source_files += split(globpath(current_dir, glob_pattern), '\n')
endfor
let rtl_sources = []
let rtl_includes = []
for source_file in source_files
if match(readfile(source_file), "^ *package ") != -1
let rtl_sources += [fnamemodify(source_file, ":p")]
endif
let rtl_includes += [fnamemodify(source_file, ":p:h")]
endfor
let dict = {}
for rtl_include in rtl_includes
let dict[rtl_include] = ''
endfor
let rtl_includes = keys(dict)
let verilator_options = ['-Wall --top-module logic_dummy']
for rtl_include in rtl_includes
let verilator_options += ['-I' . rtl_include]
endfor
for rtl_source in rtl_sources
let verilator_options += [rtl_source]
endfor
let verilator_arguments = join(verilator_options, ' ')
let g:ale_verilog_verilator_options = verilator_arguments
let g:syntastic_verilog_compiler_options = verilator_arguments
let g:syntastic_systemverilog_compiler_options = verilator_arguments
let cpp_includes = [
\ '/usr/local/systemc/2.3.2/include',
\ '/usr/local/share/verilator/include'
\ ]
let verilator_output = current_dir . '/build/verilator/libraries/'
let cpp_includes += split(globpath(verilator_output, '*/*.h'), '\n')
let cpp_options = ['-std=c++11', '-I' . current_dir . '/include']
for cpp_include in cpp_includes
let cpp_options += ['-isystem' . fnamemodify(cpp_include, ":p:h")]
endfor
let cpp_arguments = join(cpp_options, ' ')
let cpp_clangcheck = []
for cpp_option in cpp_options
let cpp_clangcheck += ['-extra-arg=' . cpp_option]
endfor
let g:ale_cpp_gcc_options = cpp_arguments
let g:ale_cpp_clang_options = cpp_arguments
let g:ale_cpp_clangtidy_options = cpp_arguments
let g:ale_cpp_clangcheck_options = join(cpp_clangcheck, ' ')
let g:ale_linters = {
\ 'cpp': ['gcc', 'clang', 'clangtidy', 'clangcheck', 'cppcheck'],
\}