Hi, Currently I'm using a WinARM and its really user frendly for me. But i want to know, How Visual Studio configure for GCC compiler to build a ARM projects. Please help me ... Thanks in Advance.
Amit Chatre wrote: > But i want to know, How Visual Studio configure for GCC compiler to > build a ARM projects. Making Visual Studios use the GCC compiler is simple. Create a Make file for the ARM processor you are using. Put it in the same folder as your Visual Studios project file (or alternatively, you could look for it via relative/absolute path). When you are in Visual Studios, right click on your project and go to Properties. Go to the NMake tab underneath Configuration Properties. Change the following settings: Build Command Line: make Rebuild All Command Line: make rebuild_all Clean Command Line: make clean If you did not create the makefile in the same folder as the project file, replace "make" with the path to make.
Jim Kaz wrote: > Amit Chatre wrote: >> But i want to know, How Visual Studio configure for GCC compiler to >> build a ARM projects. > > Making Visual Studios use the GCC compiler is simple. Create a Make > file for the ARM processor you are using. Put it in the same folder as > your Visual Studios project file (or alternatively, you could look for > it via relative/absolute path). When you are in Visual Studios, > right click on your project and go to Properties. Go to the NMake tab > underneath Configuration Properties. Change the following settings: > > Build Command Line: make > Rebuild All Command Line: make rebuild_all > Clean Command Line: make clean > > > If you did not create the makefile in the same folder as the project > file, replace "make" with the path to make. Thank you Jim, I tried for it and its working. Thank you very much. Amit Chatre
Please log in before posting. Registration is free and takes only a minute.
Existing account
Do you have a Google/GoogleMail account? No registration required!
Log in with Google account
Log in with Google account
No account? Register here.