Overview
Request 5921 (accepted)
- Explicitely set CFLAGS/CXXFLAGS for all targets
- Created by frispete about 1 year ago
- In state accepted
-
Package maintainers:
boombatower,
darix, and
frispete
obs-studio.changes
Changed
x
1
2
-------------------------------------------------------------------
3
+Fri Jan 19 15:00:06 UTC 2024 - Hans-Peter Jansen <hp@urpla.net>
4
+
5
+- Explicitely set CFLAGS/CXXFLAGS for all targets
6
+
7
+-------------------------------------------------------------------
8
Wed Jun 21 08:03:37 UTC 2023 - hpj@urpla.net
9
10
- Update to version 29.1.3:
11
obs-studio.spec
Changed
22
1
2
%build
3
mkdir -p build && cd build
4
# does not like cmake macro as it fails to link in math.h (-lma
5
-# the compile flags for 15.{4,5} must be relaxed in order to compile obs-studio successfully
6
+# the compile flags must be relaxed in order to compile obs-studio successfully
7
+export CFLAGS="%{optflags} -Wno-error=type-limits -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wno-error=return-type -Wno-error=unused-but-set-variable -Wno-error=pointer-sign -Wno-error=reorder"
8
+export CXXFLAGS="%{optflags} -Wno-error=type-limits -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wno-error=return-type -Wno-error=unused-but-set-variable -Wno-error=pointer-sign -Wno-error=reorder"
9
+
10
cmake \
11
-DCMAKE_CXX_STANDARD=17 \
12
-DCMAKE_INSTALL_PREFIX=/usr \
13
-%if 0%{?suse_version} == 1500
14
- -DCMAKE_C_FLAGS:STRING="$CFLAGS %{optflags} -Wno-error=type-limits -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wno-error=return-type -Wno-error=unused-but-set-variable -Wno-error=pointer-sign -Wno-error=reorder" \
15
- -DCMAKE_CXX_FLAGS:STRING="$CXXFLAGS %{optflags} -Wno-error=type-limits -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wno-error=return-type -Wno-error=unused-but-set-variable -Wno-error=pointer-sign -Wno-error=reorder" \
16
-%endif
17
+ -DCMAKE_C_FLAGS:STRING="$CFLAGS" \
18
+ -DCMAKE_CXX_FLAGS:STRING="$CXXFLAGS" \
19
-DUNIX_STRUCTURE=1 \
20
%if "%{_lib}" == "lib64"
21
-DOBS_MULTIARCH_SUFFIX=64 \
22
Refresh
Refresh
Login required, please
login
or
signup
in order to comment
Request History
frispete created request about 1 year ago
- Explicitely set CFLAGS/CXXFLAGS for all targets
frispete accepted request about 1 year ago
Fixes the build.
Preparing 30.0.2 update now, but it requires a newer libvpl, that went backwards versionwise...