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.") | |||
| 1147 | (append | 1147 | (append |
| 1148 | (origin-patches (package-source gcc-base)) | 1148 | (origin-patches (package-source gcc-base)) |
| 1149 | (search-patches | 1149 | (search-patches |
| 1150 | "gcc-4.6-gnu-inline.patch" | ||
| 1151 | "gcc-cross-environment-variables.patch"))))) | 1150 | "gcc-cross-environment-variables.patch"))))) |
| 1152 | (arguments | 1151 | (arguments |
| 1153 | (substitute-keyword-arguments (package-arguments xgcc) | 1152 | (substitute-keyword-arguments (package-arguments xgcc) |
| 1154 | ((#:phases phases) | 1153 | ((#:phases phases) |
| 1155 | #~(modify-phases #$phases | 1154 | #~(modify-phases #$phases |
| 1155 | (delete 'pre-x86-configure) | ||
| 1156 | (add-after 'unpack 'chdir | 1156 | (add-after 'unpack 'chdir |
| 1157 | (lambda _ (chdir "gcc"))))))) | 1157 | (lambda _ (chdir "gcc"))))))) |
| 1158 | (native-inputs | 1158 | (native-inputs |
| 1159 | (modify-inputs (package-native-inputs xgcc) | 1159 | (modify-inputs (package-native-inputs xgcc) |
| 1160 | (prepend gcc-4.9))) | 1160 | (prepend gcc-5))) |
| 1161 | (home-page "https://github.com/parallaxinc/propgcc") | 1161 | (home-page "https://github.com/parallaxinc/propgcc") |
| 1162 | (supported-systems (delete "aarch64-linux" %supported-systems)))))) | 1162 | (supported-systems (delete "aarch64-linux" %supported-systems)))))) |
| 1163 | 1163 | ||
