Reputation: 894
Can i compile a c++ code in visual studio 2012 IDE which will be ultimately run on a stm32 ARM processor. Because i think visual studio is the best when it comes to IDE in the current time. Thanks in advance.
Upvotes: 0
Views: 702
Reputation: 2436
Yes if you buy the right tools. There are two that I know of: WinGDB at http://www.wingdb.com/ and VisualGDB at http://visualgdb.com/. Looks like they will let you use Visual Studio and use either a GCC cross-compiler or GCC running on a remote to do the actual compilation.
Upvotes: 3
Reputation: 179779
Yes and no. Visual Studio can target multiple Windows platforms, including Windows on ARM. But it can't target Linux on ARM, which is by far the most common.
Upvotes: 2