-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add "objects" support to Rust targets #14031
Open
bonzini
wants to merge
9
commits into
mesonbuild:master
Choose a base branch
from
bonzini:rust-objects-kwarg
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+207
−101
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
c198de0
ninjabackend: rust: fix incorrect use of abspath
bonzini c39cfe8
ninjabackend: rust: remove code duplication
bonzini 2b174d4
ninjabackend: unify building rpath args
bonzini 32d6259
rust: stop using --out-dir, move depfile into private directory
bonzini 1ce5350
ninjabackend: start adjusting for differences between rustc and rustdoc
bonzini bbe0a3f
ninjabackend: remove cratetype variable
bonzini 3b9fa9a
ninjabackend: split out generation of rustc arguments
bonzini 6b29548
backends, compilers: move Fortran-specific handling out of ninjabackend
bonzini 20dcac3
rust: add external objects to the link command line
bonzini File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
== `objects` added correctly to Rust executables == | ||
|
||
Any objects included in a Rust executable were previously ignored. They | ||
are now added correctly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#include <stdio.h> | ||
#include "lib1.h" | ||
#include "lib2.h" | ||
|
||
void from_lib2(void) { | ||
printf("hello world"); | ||
} | ||
|
||
void c_func(void) { | ||
from_lib1(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#pragma once | ||
|
||
void from_lib2(void); | ||
void c_func(void); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#include <stdio.h> | ||
#include "lib1.h" | ||
#include "lib2.h" | ||
|
||
void from_lib1(void) | ||
{ | ||
from_lib2(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void from_lib1(void); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
extern "C" { | ||
fn c_func(); | ||
} | ||
|
||
fn main() { | ||
unsafe { | ||
c_func(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
project('staticlib group', 'c', 'rust', meson_version: '>=1.7.0') | ||
|
||
lib1 = static_library('lib1', 'lib1.c') | ||
lib2 = static_library('lib2', 'lib2.c') | ||
executable('lib1objs', 'main.rs', | ||
objects: lib1.extract_all_objects(recursive: false), | ||
link_with: lib2) | ||
executable('lib2objs', 'main.rs', | ||
objects: lib2.extract_all_objects(recursive: false), | ||
link_with: lib1) | ||
executable('lib1objs_as_dep', 'main.rs', | ||
dependencies: declare_dependency(objects: lib1.extract_all_objects(recursive: false)), | ||
link_with: lib2) | ||
executable('lib2objs_as_dep', 'main.rs', | ||
dependencies: declare_dependency(objects: lib2.extract_all_objects(recursive: false)), | ||
link_with: lib1) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check failure
Code scanning / CodeQL
Module-level cyclic import Error