So....what do I do? - Printable Version +- Forums (http://www.scratchpadgames.net/forums) +-- Forum: **FREE*** Visual Studio Dev for Linux (http://www.scratchpadgames.net/forums/forumdisplay.php?fid=19) +--- Forum: Getting started (http://www.scratchpadgames.net/forums/forumdisplay.php?fid=20) +--- Thread: So....what do I do? (/showthread.php?tid=10) Pages:
1
2
|
RE: So....what do I do? - Brian Beuken - 02-13-2019 (02-13-2019, 06:20 AM)jomoengineer Wrote: Ah, yeah, the Linux option from the newer Visual Studio seems to work fine. Yeah its improved a lot since I first checked it out, and aside from some occasional unexplained (so far) hangs, it is doing everything it has to do rather well. It can be a bit of a pain to set up for multiple boards,and multi configs get very confusing, but most people won't have that issue. So my initial reluctance to reccomend it has been overcome. You should post more on how you work with Eclipse, the more we remvoe the mystery of the IDE, the more we can get people actually building code. RE: So....what do I do? - Lawro - 07-17-2020 (02-03-2018, 04:58 PM)Brian Beuken Wrote: VisualGDB is for me the best option for coding on SBC targets. But it does come at a cost and not everyone can afford it. Visual GDB is expensive for sure, but I can understand why it is considering what it does. By the by, which is the version we'd need to buy for your book? I'd imagine we wouldn't need the Ultimate version, but then the Embedded version doesn't support the Pi according to their website. RE: So....what do I do? - Brian Beuken - 07-17-2020 The Visual GDB Linux version, is all you need, Ultimate has many features but you won't use them unless you are a very expereinced coder. The 30day trial version is free and is basically the ultimate version it gives you a chance to play with all the fancy features, but we just want the basics. Linux version is currently $109 with a very generous 50% discount for students or academics. Though I am still very much in the VisualGDB camp because its so easy to use, the VS for Linux cross platform systems are getting better and better and its almost at the same level now. RE: So....what do I do? - Lawro - 07-17-2020 (07-17-2020, 11:15 AM)Brian Beuken Wrote: The Visual GDB Linux version, is all you need, Ultimate has many features but you won't use them unless you are a very expereinced coder. Fantastic, thanks Brian. I've been using the trial, but with my best intentions and with life often getting in the way, I won't finish your book before the trial ends, hehe. Great to know we can just go for the cheaper Linux tier of Visual GDB, but also good to know there are alternatives. RE: So....what do I do? - jomoengineer - 07-22-2020 One thing to note, with the Visual Studio Linux cross compiler, the compile of the code happens on the remote system, such as the Raspberry Pi, rather than locally on the host system where VS is running. So, basically it will copy the code to the RasPi and then compile it there. I am not sure if VS Code will compile locally, but I am quite certain this can be down with Eclipse. The other option is to use the GNU Windows Toolchain for Raspberry Pi and run it at command line. I'm not sure if this can be done in VS though. I suspect this is what VisualGDB is doing behind the scene though. https://gnutoolchains.com/raspberry/tutorial/ |