Re: Trouble with file access permission in a C++ projet

2022-01-30 Thread Bradley Willcott
The following was copied from my previous email responce on this type of problem: NB: Tools -> Plugins -> Settings: Activate: Netbeans 8.2 Plugin Portal Switch to -> Updates: Click on: [Check for Updates] Switch to -> Available Plugins: Install: "C/C++" plugin Hope this helps. Brad. *(**/Gj

Re: Trouble with file access permission in a C++ projet

2022-01-27 Thread antonio
Hi, As far as I know, in cpplite the "compile commands" are the exact command(s?) you want to use to compile your stuff. Something like (*): C:\cygwin64\bin\c++.exe -g -I\cygwin64\whatever\include myfile.c main.c another.c -o myfile The "run command" would then be: ".\myfile" And the

Re: Trouble with file access permission in a C++ projet

2022-01-27 Thread slipbits
Hi; I tried to place the path to my compiler in Windows->Files->->Properties->Editor->Compile Commands ["C:\cygwin64\bin\c++.exe"] with no good effect. Same for Windows->Files->->Properties->Build->Run. Tools->Options->C/C++ only allows entry of the path to ccls or clangd. It is clear I

Re: Trouble with file access permission in a C++ projet

2022-01-27 Thread antonio
Hi, In my box CYGWIN\lib\gcc\x86_64-pc-cygwin\10\include\c++ is a directory, so of course NetBeans is not able to "execute" it. It seems you're missing the path to the compiler you want to use. In my box this is "CYGWIN\bin\c++.exe". Cheers, Antonio On 26/01/2022 22:18, slipbits wrote: