Mention that shrinking is unlikely to work

This commit is contained in:
Sosthène Guédon
2025-05-06 10:59:32 +02:00
parent 9b8f802b43
commit 7782d3dfa3
4 changed files with 26 additions and 3 deletions
+16
View File
@@ -374,6 +374,22 @@ jobs:
run: |
CFLAGS="$CFLAGS -DLFS_NO_INTRINSICS" make test
test-shrink:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install
run: |
# need a few things
sudo apt-get update -qq
sudo apt-get install -qq gcc python3 python3-pip
pip3 install toml
gcc --version
python3 --version
- name: test-no-intrinsics
run: |
CFLAGS="$CFLAGS -DLFS_SHRINKIFCHEAP" make test
# run with all trace options enabled to at least make sure these
# all compile
test-yes-trace: