Jnana
Jnana

Reputation: 894

can i build c++ code for different platforms(like stm32 ARM processor) in visual studio 2012

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

Answers (2)

John Bandela
John Bandela

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

MSalters
MSalters

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

Related Questions