Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
Fix pinning
Browse files Browse the repository at this point in the history
  • Loading branch information
mingwandroid committed Oct 16, 2017
1 parent caeb229 commit 69c9dd2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
6 changes: 3 additions & 3 deletions cross-compilers/compilers_generic/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ outputs:
run:
- {{ pin_subpackage('binutils_' ~ ctng_target_platform, exact=True) }}
run_exports:
- {{ pin_subpackage('libgcc_' ~ ctng_target_platform, min_pin='x.x.x.x.x.x.x.x.x', max_pin='None') }}
- {{ pin_subpackage('libgcc_' ~ ctng_target_platform, min_pin='x.x.x.x.x.x.x.x.x', max_pin=None) }}
about:
summary: GNU C Compiler
home: https://gcc.gnu.org/
Expand All @@ -41,7 +41,7 @@ outputs:
- {{ pin_subpackage('gcc_' ~ ctng_target_platform, exact=True) }}
- {{ pin_subpackage('libstdcxx_' ~ ctng_target_platform, exact=True) }}
run_exports:
- {{ pin_subpackage('libstdcxx_' ~ ctng_target_platform, min_pin='x.x.x.x.x.x.x.x.x', max_pin='None') }}
- {{ pin_subpackage('libstdcxx_' ~ ctng_target_platform, min_pin='x.x.x.x.x.x.x.x.x', max_pin=None) }}
about:
summary: GNU C++ Compiler
home: https://gcc.gnu.org/
Expand All @@ -58,7 +58,7 @@ outputs:
- {{ pin_subpackage('gcc_' ~ ctng_target_platform, exact=True) }}
- {{ pin_subpackage('libgfortran_' ~ ctng_target_platform, exact=True) }}
run_exports:
- {{ pin_subpackage('libgfortran_' ~ ctng_target_platform, min_pin='x.x.x.x.x.x.x.x.x', max_pin='None') }}
- {{ pin_subpackage('libgfortran_' ~ ctng_target_platform, min_pin='x.x.x.x.x.x.x.x.x', max_pin=None) }}
about:
summary: GNU Fortran Compiler
home: https://gcc.gnu.org/
Expand Down
14 changes: 9 additions & 5 deletions cross-compilers/compilers_generic_null/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
{% set cross_target_platform = 'linux-64' %}
{% set gcc = '7.1.0' %}
{% set binutils = '2.28' %}
{% set gdb = '7.12' %}
{% set duma = '1' %}

package:
name: compilers_{{ cross_target_platform }}
version: {{ gcc }}
Expand All @@ -10,8 +16,6 @@ build:
binary_relocation: False

requirements:
build:
- crosstool-ng
run:
- {{ pin_subpackage('gcc_' ~ cross_target_platform, exact=True) }}
- {{ pin_subpackage('gxx_' ~ cross_target_platform, exact=True) }}
Expand All @@ -26,7 +30,7 @@ outputs:
run:
- {{ pin_subpackage('binutils_' ~ cross_target_platform, exact=True) }}
run_exports:
- {{ pin_subpackage('libgcc_' ~ cross_target_platform) }}
- {{ pin_subpackage('libgcc_' ~ cross_target_platform, min_pin='x.x.x.x.x.x.x.x.x', max_pin=None) }}
about:
summary: GNU C Compiler
home: https://gcc.gnu.org/
Expand All @@ -38,7 +42,7 @@ outputs:
# For cpp and crt{i,n}.o
- {{ pin_subpackage('gcc_' ~ cross_target_platform, exact=True) }}
run_exports:
- {{ pin_subpackage('libstdcxx_' ~ cross_target_platform) }}
- {{ pin_subpackage('libstdcxx_' ~ cross_target_platform, min_pin='x.x.x.x.x.x.x.x.x', max_pin=None) }}
about:
summary: GNU C++ Compiler
home: https://gcc.gnu.org/
Expand All @@ -50,7 +54,7 @@ outputs:
# For cpp and crt{i,n}.o
- {{ pin_subpackage('gcc_' ~ cross_target_platform, exact=True) }}
run_exports:
- {{ pin_subpackage('libgfortran_' ~ cross_target_platform) }}
- {{ pin_subpackage('libgfortran_' ~ cross_target_platform, min_pin='x.x.x.x.x.x.x.x.x', max_pin=None) }}
about:
summary: GNU Fortran Compiler
home: https://gcc.gnu.org/
Expand Down

0 comments on commit 69c9dd2

Please sign in to comment.