Use %set_build_flags to populate all relevant build flags
This is what rpm's %configure macro does as well, which is not used in the gdb build.
This commit is contained in:
parent
8fedf35634
commit
f2c0fdf050
14
gdb.spec
14
gdb.spec
@ -37,7 +37,7 @@ Version: 11.1
|
|||||||
|
|
||||||
# The release always contains a leading reserved number, start it at 1.
|
# The release always contains a leading reserved number, start it at 1.
|
||||||
# `upstream' is not a part of `name' to stay fully rpm dependencies compatible for the testing.
|
# `upstream' is not a part of `name' to stay fully rpm dependencies compatible for the testing.
|
||||||
Release: 5%{?dist}
|
Release: 6%{?dist}
|
||||||
|
|
||||||
License: GPLv3+ and GPLv3+ with exceptions and GPLv2+ and GPLv2+ with exceptions and GPL+ and LGPLv2+ and LGPLv3+ and BSD and Public Domain and GFDL
|
License: GPLv3+ and GPLv3+ with exceptions and GPLv2+ and GPLv2+ with exceptions and GPL+ and LGPLv2+ and LGPLv3+ and BSD and Public Domain and GFDL
|
||||||
# Do not provide URL for snapshots as the file lasts there only for 2 days.
|
# Do not provide URL for snapshots as the file lasts there only for 2 days.
|
||||||
@ -582,10 +582,11 @@ GDB_MINIMAL_CONFIGURE_FLAGS="\
|
|||||||
--disable-unit-tests \
|
--disable-unit-tests \
|
||||||
--disable-source-highlight"
|
--disable-source-highlight"
|
||||||
|
|
||||||
export CFLAGS="$RPM_OPT_FLAGS %{?_with_asan:-fsanitize=address}"
|
# Populate CFLAGS, LDFLAGS, CC, CXX, etc.
|
||||||
export LDFLAGS="%{?__global_ldflags} %{?_with_asan:-fsanitize=address}"
|
%set_build_flags
|
||||||
|
CFLAGS="$CFLAGS %{?_with_asan:-fsanitize=address}"
|
||||||
export CXXFLAGS="$CFLAGS"
|
LDFLAGS="$LDFLAGS {?_with_asan:-fsanitize=address}"
|
||||||
|
CXXFLAGS="$CXXFLAGS %{?_with_asan:-fsanitize=address}"
|
||||||
|
|
||||||
# --htmldir and --pdfdir are not used as they are used from %{gdb_build}.
|
# --htmldir and --pdfdir are not used as they are used from %{gdb_build}.
|
||||||
../configure \
|
../configure \
|
||||||
@ -1143,6 +1144,9 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Nov 12 2021 Timm Bäder <tbaeder@redhat.com> - 11.1-6
|
||||||
|
- Use %%set_build_flags to populate all relevant build flags
|
||||||
|
|
||||||
* Wed Nov 10 2021 Kevin Buettner - 11.1-5
|
* Wed Nov 10 2021 Kevin Buettner - 11.1-5
|
||||||
- Backport upstream fix and test case for a dprintf bug (RHBZ 2022177, Kevin
|
- Backport upstream fix and test case for a dprintf bug (RHBZ 2022177, Kevin
|
||||||
Buettner).
|
Buettner).
|
||||||
|
Loading…
Reference in New Issue
Block a user