4 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
56
views
Apache-log4cxx will not compile with gcc-14 on MacOS Sequoia: init not declared
I am trying to build log4cxx from source on MacOS (Sequoia, 15.3.2). I am using gcc-14.2.0 installed via homebrew. I have built apr and apr-util from source using the same compiler.
I have downloaded ...
1
vote
0
answers
34
views
Unable to compile gcc installed from Homebrew [duplicate]
I have mac silicon M1:
% uname -m
arm64
and macOS = Sequoia:
% sw_vers
ProductName: macOS
ProductVersion: 15.3.1
BuildVersion: 24D70
I have command line tools installed:
% pkgutil --...
5
votes
1
answer
686
views
Why does std::println with STL containers not compile with GCC and Clang?
Take a look at this snippet:
// test.cpp
#include <print>
#include <vector>
int main () {
std::vector<int> vec = {1,2,3};
std::println("vector: {}",vec);
...
0
votes
1
answer
510
views
error: unknown type name ‘max_align_t’ when building GCC 14.2 for centos7
I am building gcc 14.2.0 from source for centos7 and ran into the following issue with gettext during the make process. I plan to use the recent C++ compilers that comes with gcc 14.
gcc -std=gnu99 -...