Reduce memory pressure while compiling on mipsel
Nicholas Breen
1 year, 7 months ago
|
0 |
votca-xtp (2021.1-2) unstable; urgency=medium
|
|
1 |
|
|
2 |
* Adjust CXXFLAGS on mipsel to reduce memory pressure while compiling,
|
|
3 |
working around a FTBFS.
|
|
4 |
|
|
5 |
-- Nicholas Breen <nbreen@debian.org> Sat, 21 Aug 2021 20:37:02 -0700
|
|
6 |
|
0 | 7 |
votca-xtp (2021.1-1) unstable; urgency=medium
|
1 | 8 |
|
2 | 9 |
* New upstream release. Upload to unstable, after release.
|
4 | 4 |
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
5 | 5 |
|
6 | 6 |
export CTEST_OUTPUT_ON_FAILURE = On
|
|
7 |
|
|
8 |
# Reduce memory pressure while compiling on mipsel.
|
|
9 |
ifneq (,$(filter $(DEB_HOST_ARCH), mipsel))
|
|
10 |
export DEB_CXXFLAGS_MAINT_APPEND += -O1 -g1 -DNDEBUG
|
|
11 |
endif
|
7 | 12 |
|
8 | 13 |
override_dh_auto_configure:
|
9 | 14 |
dh_auto_configure -- -DENABLE_TESTING=On -DBUILD_MANPAGES=On
|