Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
vite
Merge requests
!44
Fix load of plugins, add LTO support
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix load of plugins, add LTO support
work/commit_with_includemocs
into
master
Overview
11
Commits
15
Pipelines
16
Changes
57
All threads resolved!
Show all comments
Merged
Johnny Jazeix
requested to merge
work/commit_with_includemocs
into
master
2 years ago
Overview
11
Commits
15
Pipelines
16
Changes
57
All threads resolved!
Show all comments
Expand
include mocs in cpp files
use LTO to improve final executable/plugins
fix plugins not loadable since cmake version update
0
0
Merge request reports
Compare
master
version 16
fd77579e
2 years ago
version 15
75f8449c
2 years ago
version 14
919decc4
2 years ago
version 13
76d7846d
2 years ago
version 12
a264fb39
2 years ago
version 11
efd05d9c
2 years ago
version 10
e4bce130
2 years ago
version 9
c9fde123
2 years ago
version 8
80fa0fed
2 years ago
version 7
3a23676e
2 years ago
version 6
da1fe336
2 years ago
version 5
cdae2789
2 years ago
version 4
cdae2789
2 years ago
version 3
b30e0038
2 years ago
version 2
0ce19d78
2 years ago
version 1
c2a4b4bb
2 years ago
master (base)
and
latest version
latest version
566d7ee2
15 commits,
2 years ago
version 16
fd77579e
14 commits,
2 years ago
version 15
75f8449c
14 commits,
2 years ago
version 14
919decc4
14 commits,
2 years ago
version 13
76d7846d
50 commits,
2 years ago
version 12
a264fb39
15 commits,
2 years ago
version 11
efd05d9c
14 commits,
2 years ago
version 10
e4bce130
14 commits,
2 years ago
version 9
c9fde123
14 commits,
2 years ago
version 8
80fa0fed
14 commits,
2 years ago
version 7
3a23676e
14 commits,
2 years ago
version 6
da1fe336
13 commits,
2 years ago
version 5
cdae2789
14 commits,
2 years ago
version 4
cdae2789
16 commits,
2 years ago
version 3
b30e0038
15 commits,
2 years ago
version 2
0ce19d78
16 commits,
2 years ago
version 1
c2a4b4bb
9 commits,
2 years ago
57 files
+
233
−
501
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
57
Search (e.g. *.vue) (Ctrl+P)
.gitlab/check_ci.sh
+
8
−
12
Options
@@ -76,18 +76,14 @@ check_clang-format()
then
clang-format
--version
filelist
=
$(
git diff
--name-only
origin/master |
grep
"
\.
[ch]pp"
)
for
file
in
$filelist
do
clang-format
-i
{}
$file
git diff
--exit-code
$file
>
/dev/null
rc
=
$?
if
[
$rc
-ne
0
]
then
echo
"Please run: clang-format -i
$file
"
clang_success
=
1
fi
done
git diff
-U0
--no-color
origin/master | clang-format-diff
-p1
>
format-diff.log
exit_status
=
$?
[
${
exit_status
}
==
0
]
||
exit
${
exit_status
}
format_diff
=
"
$(
<format-diff.log
)
"
if
[
-n
"
${
format_diff
}
"
]
;
then
cat
format-diff.log
clang_success
=
1
fi
fi
if
[
$clang_success
-eq
0
]
Loading