-
Notifications
You must be signed in to change notification settings - Fork 90
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
Update binutils for GCC11 #370
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
6485324
Update binutils for GCC11
uilianries 07ccaf9
Revert "Update binutils for GCC11"
uilianries f872d35
Install binutils for modern images
uilianries cdd3243
Validated new binutils version
uilianries b25fd42
Install binutils with lockfile
uilianries 77f6806
Run conan as regular user
uilianries 4977ab6
Install binutils after having all compilers
uilianries e841de3
Updae jenkins badge
uilianries d3b44d2
Install from base
uilianries c3c55d4
add permission on /opt/conan
uilianries 89426cb
enable revision
uilianries bd36938
Use conanfile.txt to install packages
uilianries cb50718
Fix conanfile
uilianries 0240a72
***NO_CI*** Fix folder permission
uilianries 5125475
set revision as configuration
uilianries 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
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,52 @@ | ||
{ | ||
"graph_lock": { | ||
"nodes": { | ||
"0": { | ||
"options": "readline:fPIC=True\nreadline:shared=False\nreadline:with_library=termcap\ntermcap:fPIC=True\ntermcap:shared=False\nzlib:fPIC=True\nzlib:shared=False", | ||
"requires": [ | ||
"1" | ||
], | ||
"path": "conanfile.txt", | ||
"context": "host" | ||
}, | ||
"1": { | ||
"ref": "binutils/2.37#7e1081ddda1762c3f97d47399c4b1691", | ||
"options": "readline:fPIC=True\nreadline:shared=False\nreadline:with_library=termcap\ntermcap:fPIC=True\ntermcap:shared=False\nzlib:fPIC=True\nzlib:shared=False", | ||
"package_id": "8e7714e05da644d1474247995163817b009f35ad", | ||
"prev": "92231e81212010b1f015f78125760d49", | ||
"requires": [ | ||
"2", | ||
"3" | ||
], | ||
"context": "host" | ||
}, | ||
"2": { | ||
"ref": "zlib/1.2.11#b46bf663179824c23085bb71666ba8e6", | ||
"options": "fPIC=True\nshared=False", | ||
"package_id": "dfbe50feef7f3c6223a476cd5aeadb687084a646", | ||
"prev": "f064738ed9ea565f75cd7ebc20c2be62", | ||
"context": "host" | ||
}, | ||
"3": { | ||
"ref": "readline/8.0#1d21941e543bef7a06551f5a56c8a87e", | ||
"options": "fPIC=True\nshared=False\nwith_library=termcap\ntermcap:fPIC=True\ntermcap:shared=False", | ||
"package_id": "0dd0336dbd4a73b0c2d71bd9b9bd75a1d84cd661", | ||
"prev": "9101266931c5fc86fe4eb41f375e4e1e", | ||
"requires": [ | ||
"4" | ||
], | ||
"context": "host" | ||
}, | ||
"4": { | ||
"ref": "termcap/1.3.1#a75d9f61bf0d1899b64967958dfa6538", | ||
"options": "fPIC=True\nshared=False", | ||
"package_id": "dfbe50feef7f3c6223a476cd5aeadb687084a646", | ||
"prev": "383d0c76a636c07aa78d0065f1e0a6f8", | ||
"context": "host" | ||
} | ||
}, | ||
"revisions_enabled": true | ||
}, | ||
"version": "0.4", | ||
"profile_host": "[settings]\narch=x86_64\narch_build=x86_64\nbuild_type=Release\ncompiler=gcc\ncompiler.libcxx=libstdc++11\ncompiler.version=11\nos=Linux\nos_build=Linux\n[options]\n[build_requires]\n[env]\n" | ||
} |
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,2 @@ | ||
[requires] | ||
binutils/2.37 |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see we are using GCC11 with
libstdc++11
. IIRC, the version of the stdc++ library is different depending on the version of the compiler, right? So here we are installing these tools for one of the latest versions (GCC 11) but they will also be used in the images for GCC 5.Is this right? Shouldn't we use gcc5 here?
Maybe these tools are just C apps, not using the c++ library, but just in case in the future we install some c++ app