-
Notifications
You must be signed in to change notification settings - Fork 11
Add Ebclfsa 2.0.0-beta2 #131
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
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
ae1bce3
try raspi variant
opajonk 278440d
fix: hand in the tag value
opajonk b07d9df
latest version
opajonk 917bf26
fix: update strip_prefix, sha256, and url for fastdev-sdk-ubuntu-ebclfsa
opajonk 33e6be4
exclude special directories as well
opajonk 4e25c91
add post-extraction commands
opajonk fd03a47
add sysroot_safe_for_build_scripts
opajonk 0194134
Revert "add post-extraction commands"
opajonk fe902c8
not needed
opajonk 84ff8fd
add missing system include
opajonk 6d04984
chore: bump devcontainer to version 1.11.0
lurtz f32e207
Merge branch 'main' into ebclfsa-update
lurtz 36b0fdb
better add updated EB Linux toolchain instead of replacing the old one
lurtz f8e22ee
update lockfile
lurtz d8ac301
use bazel platforms with values for ebclfsa added
lurtz bd41136
add 2.0.0-beta2 to workflow
lurtz 9c6f96d
use correct config values in workflow
lurtz e61619f
fix matrix
lurtz 90c2ed6
no fail fast in workflow
lurtz 409b358
set correct gcc version
lurtz a7870b3
do not set compiler_library_search_paths
lurtz 6d33a7b
work around RPATH issue
lurtz 485ccc7
use PoC without the need for patch_cmds
lurtz d4b0e30
Revert "use PoC without the need for patch_cmds"
lurtz 50c2f50
inline script to set INTERP
lurtz 4462cdf
use released version of bazel_platforms
lurtz 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 hidden or 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 |
|---|---|---|
| @@ -1,5 +1,4 @@ | ||
|
|
||
| { | ||
| "name": "eclipse-s-core", | ||
| "image": "ghcr.io/eclipse-score/devcontainer:v1.2.0" | ||
| "image": "ghcr.io/eclipse-score/devcontainer:v1.11.0" | ||
| } |
This file contains hidden or 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 hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 @@ | ||
| # ******************************************************************************* | ||
| # Copyright (c) 2025 Contributors to the Eclipse Foundation | ||
| # | ||
| # See the NOTICE file(s) distributed with this work for additional | ||
| # information regarding copyright ownership. | ||
| # | ||
| # This program and the accompanying materials are made available under the | ||
| # terms of the Apache License Version 2.0 which is available at | ||
| # https://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # ******************************************************************************* | ||
|
|
||
| exports_files([ | ||
| "ebclfsa.BUILD", | ||
| ]) |
This file contains hidden or 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,76 @@ | ||
| # ******************************************************************************* | ||
| # Copyright (c) 2025 Contributors to the Eclipse Foundation | ||
| # | ||
| # See the NOTICE file(s) distributed with this work for additional | ||
| # information regarding copyright ownership. | ||
| # | ||
| # This program and the accompanying materials are made available under the | ||
| # terms of the Apache License Version 2.0 which is available at | ||
| # https://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # ******************************************************************************* | ||
|
|
||
| """Build file for EBcLfSA 2.0.0-beta2 toolchain package""" | ||
|
|
||
| package(default_visibility = ["//visibility:public"]) | ||
|
|
||
| filegroup( | ||
| name = "all_files", | ||
| srcs = glob( | ||
| ["*/**/*"], | ||
| exclude = [ | ||
| "dev/**", | ||
| "proc/**", | ||
| "sys/**", | ||
| "usr/share/ca-certificates/**", | ||
| "usr/lib/ssl/certs/**", | ||
| "lib/ssl/certs/**", | ||
| "etc/ssl/certs/**", | ||
| "usr/share/man/**", | ||
| "usr/share/perl/**", | ||
| "var/lib/**", | ||
| ], | ||
| ), | ||
| ) | ||
|
|
||
| filegroup( | ||
| name = "bin", | ||
| srcs = ["usr/bin"], | ||
| ) | ||
|
|
||
| filegroup( | ||
| name = "ar", | ||
| srcs = ["usr/bin/aarch64-linux-gnu-ar"], | ||
| ) | ||
|
|
||
| filegroup( | ||
| name = "cc", | ||
| srcs = ["usr/bin/aarch64-linux-gnu-gcc-14"], | ||
| ) | ||
|
|
||
| filegroup( | ||
| name = "gcov", | ||
| srcs = ["usr/bin/aarch64-linux-gnu-gcov-14"], | ||
| ) | ||
|
|
||
| filegroup( | ||
| name = "cxx", | ||
| srcs = ["usr/bin/aarch64-linux-gnu-g++-14"], | ||
| ) | ||
|
|
||
| filegroup( | ||
| name = "strip", | ||
| srcs = ["usr/bin/aarch64-linux-gnu-strip"], | ||
| ) | ||
|
|
||
| filegroup( | ||
| name = "elf-enabler", | ||
| srcs = ["usr/bin/lisa-elf-enabler"], | ||
| ) | ||
|
|
||
| # The sysroot for EBcLfSA is the entire extracted directory | ||
| filegroup( | ||
| name = "sysroot_dir", | ||
| srcs = ["."], | ||
| ) |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.