“CodeBlocks” needs to be updated. The developer of this app needs to update it to work with this version of macOS.
Please help me out
MacBook Air 13″, macOS 12.5
Please help me out
MacBook Air 13″, macOS 12.5
CodeBlocks on macOS was discontinued years ago. There is no one here to help you out as Apple is not here, just fellow users that have no sway over the CodeBlocks developer. Contact them yourself.
Better yet, install Apple's CommandLine Tools which will give you a state of the art Clang C++ compiler, current C++ library, and language standard support.
In the Terminal, enter one of these commands to launch the prompt for the CommandLine tools installer. It will need your administrator password for the installation.
xcode-select --install
clang
The C++ language standards available can be shown by a bogus standard name as in:
clang++ -o a.out foo.C -std=foobar
clang --help
and you will have language standard choices from C++98 through C++2b (ISO C++ 2023 working draft). Then you need an intelligent Programmer's Editor to facilitate development.
CodeBlocks on macOS was discontinued years ago. There is no one here to help you out as Apple is not here, just fellow users that have no sway over the CodeBlocks developer. Contact them yourself.
Better yet, install Apple's CommandLine Tools which will give you a state of the art Clang C++ compiler, current C++ library, and language standard support.
In the Terminal, enter one of these commands to launch the prompt for the CommandLine tools installer. It will need your administrator password for the installation.
xcode-select --install
clang
The C++ language standards available can be shown by a bogus standard name as in:
clang++ -o a.out foo.C -std=foobar
clang --help
and you will have language standard choices from C++98 through C++2b (ISO C++ 2023 working draft). Then you need an intelligent Programmer's Editor to facilitate development.
You can contact the developer using this link...
“CodeBlocks” needs to be updated. The developer of this app needs to update it to work with this version of macOS.