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 "cl

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 don'

Short Survey About Requirements Engineering

2022-01-27 Thread ETEM ÇETİN TOPTANİ
Dear Sir or Madam, We prepared a short survey to understand practitioners’ perspectives towards the requirements engineering. Our survey basically aims to clarify on many aspects of the requirements engineering applied in industry, including (i) requirements gathering and specifications, (ii) req

RE: NetBeans 12.6 Push to GitHub

2022-01-27 Thread Sam Lalani
Hi Dave, I am just getting started with GitHub and your answer was exactly what I needed! I setup a token on GitHub and now I am able to push my project to GitHub. Thank you very much! Sam Lalani From: David Green Sent: Thursday, January 27, 2022 7:53 AM To: users@netbeans.apache.or

Re: NetBeans 12.6 Push to GitHub

2022-01-27 Thread David Green
On Jan 27, 2022 at 9:41:12 AM, Sam Lalani wrote: > Incorrect credentials for repository at https://github.com/xxx/xxx.git > > If I use the GitHub Desktop application, then I am able to drag and drop > my NetBeans project to GitHub, but I would prefer to use the NetBeans Git > integration to updat

NetBeans 12.6 Push to GitHub

2022-01-27 Thread Sam Lalani
I have NetBeans 12.6 installed on my Windows 10 computer. I used the instructions at the following URL to try and link my NetBeans 12.6 project to GitHub: https://www.youtube.com/watch?v=B4IP44k5U7Y My repository is private. For the Repository URL I use the HTTPS link, and then I add my u

java.nio.charset.MalformedInputException Error when changing from JDK8 to JDK 11

2022-01-27 Thread Christoph Englmann
Hello,   I have a project in JAVA 8, that works just fine.   Now I have to port the jdk from 8 to 11.   So I changed the Java Platform from JDK 1.8 to JDK 11 in the Project Properties.   Debugging works just fine, but when I try clean and build the following Error occurs:   An input/outpu

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: NB