summaryrefslogtreecommitdiffstats
path: root/examples/recipes/gcc@11.2.0.yml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/recipes/gcc@11.2.0.yml')
-rw-r--r--examples/recipes/gcc@11.2.0.yml124
1 files changed, 124 insertions, 0 deletions
diff --git a/examples/recipes/gcc@11.2.0.yml b/examples/recipes/gcc@11.2.0.yml
new file mode 100644
index 0000000..41a2bf6
--- /dev/null
+++ b/examples/recipes/gcc@11.2.0.yml
@@ -0,0 +1,124 @@
+tasks:
+ unpack:
+ fetch:
+ - name: '{{pn}}-{{pv}}.tar.xz'
+ sha256: 'd08edc536b54c372a1010ff6619dd274c0f1603aa49212ba20f7aa2cda36fa8b'
+ run: |
+ tar xf {{dldir}}/{{pn}}-{{pv}}.tar.xz
+
+ sed -i -e 's@^MULTILIB_OSDIRNAMES@# &@' {{pn}}-{{pv}}/gcc/config/*/t-*
+
+ header-stubs:
+ args:
+ host: 'platform'
+ target: 'platform'
+ output:
+ default: {}
+ run: |
+ if {{not host_to_target.is_same}}; then
+ mkdir -p {{destdir}}{{target.prefix}}/include
+ touch {{destdir}}{{target.prefix}}/include/limits.h
+ fi
+
+ configure:
+ args:
+ host: 'platform'
+ target: 'platform'
+ inherit:
+ task: 'unpack'
+ build_depends:
+ - recipe: 'toolchain'
+ task: 'build_depends'
+ - recipe: 'binutils'
+ task: 'install'
+ args:
+ target: 'target'
+ depends:
+ - recipe: 'toolchain'
+ task: 'depends'
+ - recipe: 'mpc'
+ task: 'install'
+ - recipe: 'zlib'
+ task: 'install'
+ - task: 'header-stubs'
+ noinherit: true
+ run: |
+ export CXX_FOR_TARGET="$CXX_FOR_TARGET -nostdinc++"
+
+ mkdir {{pn}}-build
+ cd {{pn}}-build
+ ../{{pn}}-{{pv}}/configure \
+ --build={{build.gnu_triplet}} \
+ --host={{host.gnu_triplet}} \
+ --target={{target.gnu_triplet}} \
+ --prefix={{host.prefix}} \
+ --libdir={{host.prefix}}/lib \
+ --libexecdir={{host.prefix}}/lib \
+ --with-sysroot={{host_to_target.sysroot}} \
+ --with-build-sysroot={{sysroot}} \
+ --with-native-system-header-dir={{target.prefix}}/include \
+ --with-toolexeclibdir={{host_to_target.sysroot}}{{target.prefix}}/lib \
+ --with-gxx-include-dir={{host_to_target.sysroot}}{{target.prefix}}/include/c++/"$(cat ../{{pn}}-{{pv}}/gcc/BASE-VER)" \
+ --with-gnu-ld \
+ --enable-shared \
+ --enable-languages=c,c++ \
+ --enable-threads=posix \
+ --disable-multilib \
+ --enable-c99 \
+ --enable-long-long \
+ --enable-symvers=gnu \
+ --enable-libstdcxx-pch \
+ --without-local-prefix \
+ --disable-install-libiberty \
+ --disable-libssp \
+ --enable-libitm \
+ --enable-lto \
+ --disable-bootstrap \
+ --with-system-zlib \
+ --with-linker-hash-style=gnu \
+ --enable-linker-build-id \
+ --with-ppl=no \
+ --with-cloog=no \
+ --enable-checking=release \
+ --enable-cheaders=c_global \
+ --without-isl \
+ --with-system-zlib \
+ --enable-standard-branch-protection \
+ --with-glibc-version=2.28 \
+ --enable-initfini-array \
+ --enable-__cxa_atexit
+ find -name config.log -delete
+
+ compile:
+ args:
+ host: 'platform'
+ target: 'platform'
+ inherit:
+ task: 'configure'
+ depends:
+ - task: 'header-stubs'
+ noinherit: true
+ run: |
+ cd {{pn}}-build
+ make all-host
+ find -name config.log -delete
+
+ install:
+ args:
+ host: 'platform'
+ target: 'platform'
+ inherit:
+ task: 'compile'
+ output:
+ default:
+ runtime_depends:
+ - recipe: 'binutils'
+ task: 'install'
+ - recipe: 'mpc'
+ task: 'install'
+ - recipe: 'zlib'
+ task: 'install'
+ run: |
+ cd {{pn}}-build
+ make DESTDIR={{destdir}} install-host
+