How do I set up Netbeans 12.3 on Ubuntu 21.04 for C/C++ programming? In Netbeans the plugin is marked as Temporary, and says it uses CCLS (CC Language Server). I can install that native with "apt install ccls" In Netbeans under Tools/Options/C/C++ the path /usr/bin/ccls is set. In Project Properties there are two options, Editor and Build For Editor I can guess I write, "gcc hello.c -o hello.out" For Build, there are Build, Clean and Run data entry textboxes, which I can write:- Build: "gcc hello.c -o hello.out" Run: "hello.out"
But nothing works properly. CCLS search gets me to "https://github.com/MaskRay/ccls", but there is nothing in the Editor Configuration for Netbeans.
Anyone?