Forum Replies Created
-
AuthorPosts
-
September 8, 2022 at 14:08 in reply to: Project property page not showing c++ and linker properties #33157
So, you cannot set compiler and linker settings like you can with MSBUILD.
That would be a disappointment.
Attachments:
You must be logged in to view attached files.September 8, 2022 at 13:19 in reply to: Project property page not showing c++ and linker properties #33152Hello,
The steps I took were.
- Start Visual studio
- select new project
- select template linux visualgdb
- Select CMake / Ninja
- after project is created try to open project properties (Menu project -> properties)
- Dialog box appears but without any properties for compiler and linker
See attachment
-
This reply was modified 4 months, 3 weeks ago by
paulh001.
Attachments:
You must be logged in to view attached files.The build fails because intellisense has added incorrect include directories. When I remove these it compiles. The question is why is intellisense adding incorrect include directories? If I remove these include directories. Intellisense directly tries to add them again.
Thanks, however the option is placed by intellisense “fix the solution” option.
But will first check and compile with verbose.
thanks
Found it sudo install gdbserver
sometimes its easy 🙂
Thanks, looks like rebuilding remote source cache did the trick.
When I remove /usr/include/c++/10/tr1 it compliles ok. But intellisense keeps asking to add it
I hace resolved it manualy. But the steps are:
- In a CMake project op Menu Project->VisualGDB Project Properties
- Click CMake Build Settings
- In Installation Settings click Explicit location
- Fill Custom installation location: /home/pi
- Click Apply and Close
- Open CMakeList.txt
Expectation is that CMakeLists.txt has a entry install(TARGETS applicationname DESTINATION /home/pi)
This does not happen.
Some extra information, the font is also very large see png file
Attachments:
You must be logged in to view attached files.When I add a include file to my source a very annoying popup occurs. Listing loads of include files.
How can I stop this popup from appearing?
Also the pop-up is only partial visible because it goes of my screen.
Please don’t add more clutter to the editor it cost so much time to clear all this kind of stuff.
Did you install correct USB driver using Zadig for interface 0?
For me I have to use libusbK driver other drivers did not work for me.
Also it worked on Windows 10 but lately it stopped working and could not get it working again.
Now on Windows 11 and works again.
Maybe this helps
Think I found the option in Tools->C/C++ (VisualGDB)->advanced->Code Completion->Suggest names while typing. Set it to False. (Still can use Ctrl+J to get IntelliSense suggestions)
The problem is the automatic correction (intellisense) suggesting all kind of options while you are typing and every variable or cast I enter is changed. This has so much effect that the editor is almost of no use. Visual Studio describes how to switch it off, but this does not seem to work for VisualGDB. I just want to type without being interrupted by wrong suggestions. IÂ added a picture.
Attachments:
You must be logged in to view attached files. -
AuthorPosts