forked from pool/llvm14
- Fix PowerPC triples: use powerpc[64[le]] instead of ppc[64[le]].
- Require 8 GB memory for 64-bit architectures to prevent OOM. OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/llvm14?expand=0&rev=61
This commit is contained in:
parent
57c38099b3
commit
5e2c537129
@ -5,7 +5,7 @@
|
||||
<size unit="G">35</size>
|
||||
</disk>
|
||||
<memory>
|
||||
<size unit="M">4096</size>
|
||||
<size unit="M">8192</size>
|
||||
</memory>
|
||||
</hardware>
|
||||
<overwrite>
|
||||
|
@ -1,6 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 3 20:30:50 UTC 2024 - Aaron Puchert <aaronpuchert@alice-dsl.net>
|
||||
Mon Mar 4 21:29:51 UTC 2024 - Aaron Puchert <aaronpuchert@alice-dsl.net>
|
||||
|
||||
- Fix PowerPC triples: use powerpc[64[le]] instead of ppc[64[le]].
|
||||
- Require 8 GB memory for 64-bit architectures to prevent OOM.
|
||||
- Disable test that fails on ppc64le.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
@ -71,7 +71,8 @@
|
||||
# See https://build.opensuse.org/request/show/968066.
|
||||
%define target_cpu armv6kz
|
||||
%else
|
||||
%define target_cpu %{_target_cpu}
|
||||
# What RPM spells ppc, GCC spells powerpc.
|
||||
%define target_cpu %{lua:print((string.gsub(rpm.expand("%{_target_cpu}"), "ppc", "powerpc")))}
|
||||
%endif
|
||||
|
||||
%ifarch %{arm}
|
||||
|
Loading…
Reference in New Issue
Block a user