diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-03-02 20:27:13 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-03-04 09:52:22 +0100 |
| commit | 129ff35366c866f0bf60cd2a291ce352bc5e936f (patch) | |
| tree | f440d4b17897e87c148c1ad44e50e23f2fe206dc /gnu/packages/embedded.scm | |
| parent | 995e7c800b7a603569989d9eaeeab975ce4ffcc4 (diff) | |
gnu: make-propeller-gcc-4: Build with GCC 5.
* gnu/packages/patches/gcc-4.6-gnu-inline.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Remove it.
* gnu/packages/embedded.scm (make-propeller-gcc-4)[source]: Remove patch.
[arguments]: Remove 'pre-x86-configure phase.
[native-inputs]: Replace gcc-4.9 with gcc-5.
Change-Id: Ifb4b00952edc9053e7496ffe33f8beacd34e11ca
Diffstat (limited to 'gnu/packages/embedded.scm')
| -rw-r--r-- | gnu/packages/embedded.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm index f5fa70c75df..3ec68e78d03 100644 --- a/gnu/packages/embedded.scm +++ b/gnu/packages/embedded.scm @@ -1147,17 +1147,17 @@ with a layered architecture of JTAG interface and TAP support.") (append (origin-patches (package-source gcc-base)) (search-patches - "gcc-4.6-gnu-inline.patch" "gcc-cross-environment-variables.patch"))))) (arguments (substitute-keyword-arguments (package-arguments xgcc) ((#:phases phases) #~(modify-phases #$phases + (delete 'pre-x86-configure) (add-after 'unpack 'chdir (lambda _ (chdir "gcc"))))))) (native-inputs (modify-inputs (package-native-inputs xgcc) - (prepend gcc-4.9))) + (prepend gcc-5))) (home-page "https://github.com/parallaxinc/propgcc") (supported-systems (delete "aarch64-linux" %supported-systems)))))) |
