forked from openembedded/meta-openembedded
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from eigendude/zeus-fixes
Fixes for Yocto 3.0 Zeus
- Loading branch information
Showing
7 changed files
with
41 additions
and
4 deletions.
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
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
28 changes: 28 additions & 0 deletions
28
...ls/python/python-protobuf/0001-setup.cfg-Change-location-of-statically-linked-libra.patch
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,28 @@ | ||
From d99244cf587c360f2ec2a5e8da90a0fa5ce510ad Mon Sep 17 00:00:00 2001 | ||
From: Garrett Brown <garrett.brown@aclima.io> | ||
Date: Tue, 26 Nov 2019 18:18:43 -0800 | ||
Subject: [PATCH] setup.cfg: Change location of statically-linked libraries | ||
|
||
TODO: Pass library directory from BitBake. | ||
--- | ||
setup.py | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/setup.py b/setup.py | ||
index 9aabbf7..9152264 100755 | ||
--- a/setup.py | ||
+++ b/setup.py | ||
@@ -174,8 +174,8 @@ if __name__ == '__main__': | ||
extra_objects = None | ||
if compile_static_ext: | ||
libraries = None | ||
- extra_objects = ['../src/.libs/libprotobuf.a', | ||
- '../src/.libs/libprotobuf-lite.a'] | ||
+ extra_objects = ['../recipe-sysroot/usr/lib/libprotobuf.a', | ||
+ '../recipe-sysroot/usr/lib/libprotobuf-lite.a'] | ||
test_conformance.target = 'test_python_cpp' | ||
|
||
extra_compile_args = [] | ||
-- | ||
2.20.1 | ||
|
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