Adrian Bunk
Adrian Bunk
Commit 51c0b2f742920535178560f31c6e91065bf87b41 does not give any information why tbbmalloc is not being built on mips, it would be useful if someone could check the rationale in the original git tree....
This fixes #18 and #19
https://buildd.debian.org/status/fetch.php?pkg=libxlsxwriter&arch=armhf&ver=1.1.7-1%7Eexp1&stamp=1714910384&raw=0 ``` =================================== FAILURES =================================== ______________________ TestCompareXLSXFiles.test_image58 _______________________ self = def test_image58(self): > self.run_exe_test('test_image58') test/functional/test_image.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _...
gcc < 14 gave warnings when passing such variable from from incompatible pointer type: https://buildd.debian.org/status/fetch.php?pkg=gpaste&arch=armhf&ver=45-3&stamp=1721124747&raw=0 gcc 14 turned these warnings into errors: https://buildd.debian.org/status/fetch.php?pkg=gpaste&arch=armhf&ver=45-4&stamp=1722968009&raw=0
Building tests was changed to `-O0` in commit a4ca3d14c1ae8297c286626fa347125ed2c30297. 3 reasons why the tests should be built with default optimizations: 1. C++ code compiled with `-O0` can be very inefficient,...
C++ code compiled without optimizations can be inefficient in many ways, and on some more exotic architectures (MIPS, Alpha) this caused a build failure: https://buildd.debian.org/status/fetch.php?pkg=libcvd&arch=mips64el&ver=0.0%7Egit20221020150751.30e8cfc%2Bds1-1&stamp=1695631656&raw=0 https://buildd.debian.org/status/fetch.php?pkg=libcvd&arch=alpha&ver=0.0%7Egit20221020150751.30e8cfc%2Bds1-1&stamp=1722259419&raw=0 ``` /usr/bin/ld: /tmp/cc5JDH6b.o: .got...
https://buildd.debian.org/status/logs.php?pkg=haskell-github&ver=0.29-1 ``` spec/GitHub/Actions/CacheSpec.hs:27:86: warning: [GHC-97441] [-Woverflowed-literals] Literal 55000268087 is out of the Int range -2147483648..2147483647 | 27 | GH.repositoryCacheUsageActiveCachesSizeInBytes repoCacheUsage `shouldBe` 55000268087 | ^^^^^^^^^^^ [ 3 of 21] Compiling GitHub.Actions.SecretsSpec...
Commit 42280d2 contains ``` - EVP_PKEY_decrypt(ctx, *plaintext, &plaintext_len, rsa_buffer, rsa_buffer_len); + ret = EVP_PKEY_decrypt(ctx, *plaintext, &plaintext_len, rsa_buffer, rsa_buffer_len); ``` This has no effect since the value of `ret` is never...
Trying to build the deal.ii package in Debian for arm64 (aarch64) with mold fails: https://buildd.debian.org/status/fetch.php?pkg=deal.ii&arch=arm64&ver=9.6.2-4&stamp=1751283269&raw=0 ``` [100%] Linking CXX shared library ../lib/aarch64-linux-gnu/libdeal.ii.g.so cd /build/reproducible-path/deal.ii-9.6.2/obj-aarch64-linux-gnu/source && /usr/bin/cmake -E cmake_link_script CMakeFiles/dealii_debug.dir/link.txt --verbose=1...
https://bugs.debian.org/1113326 ``` CMake Error at CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): Compatibility with CMake < 3.5 has been removed from CMake. ``` Just bumping it to 3.5 fails due to the next line: ```...