-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(24.04): add libasan6 and libasan8 (#321)
- Loading branch information
1 parent
364317b
commit 0cb5adf
Showing
5 changed files
with
61 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package: gcc-11-base | ||
|
||
essential: | ||
- gcc-11-base_copyright | ||
|
||
slices: | ||
copyright: | ||
contents: | ||
/usr/share/doc/gcc-11-base/copyright: |
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,17 @@ | ||
package: libasan6 | ||
|
||
essential: | ||
- libasan6_copyright | ||
|
||
slices: | ||
libs: | ||
essential: | ||
- libc6_libs | ||
- libgcc-s1_libs | ||
contents: | ||
/usr/lib/*-linux-*/libasan.so.6*: | ||
copyright: | ||
essential: | ||
- gcc-11-base_copyright | ||
contents: | ||
/usr/share/doc/libasan6: |
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,17 @@ | ||
package: libasan8 | ||
|
||
essential: | ||
- libasan8_copyright | ||
|
||
slices: | ||
libs: | ||
essential: | ||
- libc6_libs | ||
- libgcc-s1_libs | ||
contents: | ||
/usr/lib/*-linux-*/libasan.so.8*: | ||
copyright: | ||
essential: | ||
- gcc-14-base_copyright | ||
contents: | ||
/usr/share/doc/libasan8: |
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 @@ | ||
summary: Integration tests for libasan6 | ||
|
||
execute: | | ||
rootfs="$(install-slices libasan6_libs)" | ||
apt install --update -y gcc | ||
arch=$(gcc -dumpmachine) | ||
test -f ${rootfs}/usr/lib/${arch}/libasan.so.6 |
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 @@ | ||
summary: Integration tests for libasan8 | ||
|
||
execute: | | ||
rootfs="$(install-slices libasan8_libs)" | ||
apt install --update -y gcc | ||
arch=$(gcc -dumpmachine) | ||
test -f ${rootfs}/usr/lib/${arch}/libasan.so.8 |