Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cbindgen
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dan Robertson
cbindgen
Commits
b7b2ea75
Commit
b7b2ea75
authored
Oct 28, 2018
by
Nagy Tibor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change how externs are emitted for relibc
parent
95821b3b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
9 deletions
+15
-9
bindings.rs
src/bindgen/bindings.rs
+15
-9
No files found.
src/bindgen/bindings.rs
View file @
b7b2ea75
...
...
@@ -133,11 +133,13 @@ impl Bindings {
out
.new_line
();
}
if
self
.config.language
==
Language
::
Cxx
{
out
.new_line_if_not_start
();
out
.write
(
"extern
\"
C
\"
{"
);
out
.new_line
();
}
out
.new_line_if_not_start
();
out
.write
(
"#ifdef __cplusplus"
);
out
.new_line
();
out
.write
(
"extern
\"
C
\"
{"
);
out
.new_line
();
out
.write
(
"#endif"
);
out
.new_line
();
for
global
in
&
self
.globals
{
out
.new_line_if_not_start
();
...
...
@@ -157,11 +159,15 @@ impl Bindings {
out
.new_line
();
}
if
self
.config.language
==
Language
::
Cxx
{
out
.new_line_if_not_start
();
out
.write
(
"} // extern
\"
C
\"
"
);
out
.new_line
();
out
.new_line_if_not_start
();
out
.write
(
"#ifdef __cplusplus"
);
out
.new_line
();
out
.write
(
"} // extern
\"
C
\"
"
);
out
.new_line
();
out
.write
(
"#endif"
);
out
.new_line
();
if
self
.config.language
==
Language
::
Cxx
{
self
.close_namespaces
(
&
mut
out
);
}
...
...
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