summaryrefslogtreecommitdiffstats
path: root/examples/recipes/glibc@2.38.yml
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2023-10-06 22:25:23 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2023-10-06 22:25:23 +0200
commit1e8875b6437f3b3a1505e25dde8e352d232b09fa (patch)
treeb99b8db87d344df11889d85e0e132a25b90497d7 /examples/recipes/glibc@2.38.yml
parent8cefdf3b16cd5c09723edd18e797f3024d8415d3 (diff)
downloadrebel-1e8875b6437f3b3a1505e25dde8e352d232b09fa.tar
rebel-1e8875b6437f3b3a1505e25dde8e352d232b09fa.zip
examples: glibc: update to latest 2.38 release branch
Diffstat (limited to 'examples/recipes/glibc@2.38.yml')
-rw-r--r--examples/recipes/glibc@2.38.yml66
1 files changed, 0 insertions, 66 deletions
diff --git a/examples/recipes/glibc@2.38.yml b/examples/recipes/glibc@2.38.yml
deleted file mode 100644
index 12fb7a4..0000000
--- a/examples/recipes/glibc@2.38.yml
+++ /dev/null
@@ -1,66 +0,0 @@
-tasks:
- unpack:
- fetch:
- - name: '{{pn}}-{{pv}}.tar.xz'
- sha256: 'fb82998998b2b29965467bc1b69d152e9c307d2cf301c9eafb4555b770ef3fd2'
- run: |
- tar xf {{dldir}}/{{pn}}-{{pv}}.tar.xz
-
- configure:
- args:
- host: 'platform'
- inherit:
- task: 'unpack'
- build_depends:
- - recipe: 'gcc'
- task: 'install'
- - recipe: 'libgcc-initial'
- task: 'install'
- depends:
- - recipe: 'linux-uapi-headers'
- task: 'install'
- run: |
- export BUILD_CC="$CC_FOR_BUILD"
-
- mkdir {{pn}}-build
- cd {{pn}}-build
- ../{{pn}}-{{pv}}/configure \
- --build={{build.gnu_triplet}} \
- --host={{host.gnu_triplet}} \
- --prefix={{host.prefix}} \
- --includedir={{host.prefix}}/include \
- --libdir={{host.prefix}}/lib \
- --libexecdir={{host.prefix}}/lib \
- --enable-bind-now \
- --enable-fortify-source \
- --enable-kernel=4.4 \
- --disable-nscd \
- --disable-profile \
- --disable-werror
-
- echo slibdir={{host.prefix}}/lib >> configparms
- echo sbindir={{host.prefix}}/bin >> configparms
- echo rootsbindir={{host.prefix}}/bin >> configparms
-
- compile:
- args:
- host: 'platform'
- inherit:
- task: 'configure'
- run: |
- cd {{pn}}-build
- make
-
- install:
- args:
- host: 'platform'
- inherit:
- task: 'compile'
- output:
- default:
- runtime_depends:
- - recipe: 'linux-uapi-headers'
- task: 'install'
- run: |
- cd {{pn}}-build
- make install_root={{destdir}} install