Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyeris
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eris
pyeris
Commits
843d1179
Commit
843d1179
authored
Aug 06, 2016
by
Jason Rhinelander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added youcompleteme conf file
parent
ca98a60b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
0 deletions
+54
-0
.ycm_extra_conf.py
.ycm_extra_conf.py
+54
-0
No files found.
.ycm_extra_conf.py
0 → 100644
View file @
843d1179
import
os
import
ycm_core
flags
=
[
'-Wall'
,
'-Wextra'
,
'-std=c++14'
,
'-I'
,
'.'
,
'-I'
,
'./pybind11/include'
,
'-I'
,
'/usr/include/python3.5m'
,
'-I'
,
'/usr/include/eigen3'
,
'-isystem'
,
'/usr/include/x86_64-linux-gnu/c++/6'
,
'-isystem'
,
'/usr/include/c++/6'
,
'-isystem'
,
'/usr/lib/llvm-3.8/lib/clang/3.8.1/include'
,
]
def
DirectoryOfThisScript
():
return
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)
)
def
MakeRelativePathsInFlagsAbsolute
(
flags
,
working_directory
):
if
not
working_directory
:
return
list
(
flags
)
new_flags
=
[]
make_next_absolute
=
False
path_flags
=
[
'-isystem'
,
'-I'
,
'-iquote'
,
'--sysroot='
]
for
flag
in
flags
:
new_flag
=
flag
if
make_next_absolute
:
make_next_absolute
=
False
if
not
flag
.
startswith
(
'/'
):
new_flag
=
os
.
path
.
join
(
working_directory
,
flag
)
for
path_flag
in
path_flags
:
if
flag
==
path_flag
:
make_next_absolute
=
True
break
if
flag
.
startswith
(
path_flag
):
path
=
flag
[
len
(
path_flag
):
]
new_flag
=
path_flag
+
os
.
path
.
join
(
working_directory
,
path
)
break
if
new_flag
:
new_flags
.
append
(
new_flag
)
return
new_flags
def
FlagsForFile
(
filename
,
**
kwargs
):
final_flags
=
MakeRelativePathsInFlagsAbsolute
(
flags
,
DirectoryOfThisScript
()
)
return
{
'flags'
:
final_flags
,
'do_cache'
:
True
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment