Accepting request 889291 from home:Guillaume_G:branches:godot
- Disable modules unsupported on aarch64 and %arm: * module_denoise_enabled * module_lightmapper_cpu_enabled * module_raycast_enabled OBS-URL: https://build.opensuse.org/request/show/889291 OBS-URL: https://build.opensuse.org/package/show/games/godot?expand=0&rev=25
This commit is contained in:
parent
f6427ede33
commit
e3e3293a92
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 29 12:37:28 UTC 2021 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
|
- Disable modules unsupported on aarch64 and %arm:
|
||||||
|
* module_denoise_enabled
|
||||||
|
* module_lightmapper_cpu_enabled
|
||||||
|
* module_raycast_enabled
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 22 12:00:00 UTC 2021 - cunix@mail.de
|
Thu Apr 22 12:00:00 UTC 2021 - cunix@mail.de
|
||||||
|
|
||||||
|
@ -293,11 +293,18 @@ done
|
|||||||
mkdir -pv thirdparty/certs
|
mkdir -pv thirdparty/certs
|
||||||
touch thirdparty/certs/ca-certificates.crt
|
touch thirdparty/certs/ca-certificates.crt
|
||||||
|
|
||||||
%define build_args %{?_smp_mflags} \\\
|
%define build_args_common %{?_smp_mflags} \\\
|
||||||
progress=no verbose=yes udev=yes use_lto=1 \\\
|
progress=no verbose=yes udev=yes use_lto=1 \\\
|
||||||
use_static_cpp=no CCFLAGS='%{optflags}' \\\
|
use_static_cpp=no CCFLAGS='%{optflags}' \\\
|
||||||
system_certs_path=%{ca_bundle} $system_libs
|
system_certs_path=%{ca_bundle} $system_libs
|
||||||
|
|
||||||
|
%ifarch aarch64 %arm
|
||||||
|
# Disable unsupported features - https://github.com/godotengine/godot/issues/48297#issuecomment-829165296
|
||||||
|
%define build_args %{build_args_common} module_denoise_enabled=no module_lightmapper_cpu_enabled=no module_raycast_enabled=no
|
||||||
|
%else
|
||||||
|
%define build_args %{build_args_common}
|
||||||
|
%endif
|
||||||
|
|
||||||
# Build graphical editor (tools)
|
# Build graphical editor (tools)
|
||||||
# rename x11 to linuxbsd ?
|
# rename x11 to linuxbsd ?
|
||||||
scons %{build_args} platform=x11 tools=yes target=release_debug
|
scons %{build_args} platform=x11 tools=yes target=release_debug
|
||||||
|
Loading…
Reference in New Issue
Block a user