--- naresh bhalala <[EMAIL PROTECTED]> wrote: > Hello Friends, > > I have finished with my project compilation using > normal settings (as it's cpp project, it must have > used g++ compiler) > Now same project I have to compile and run using > arm-linux-g++ compiler.... > I can see the "Compiler option" in Project->options > but dont know How to change "g++" compiler to > "arm-linux-g++" compiler so it can compile my > project > with "arm-linux-g++" compiler ..... > > thanks > regards...Naresh
edit the configure script and makefile for the project. specially the makefile generally, make will call gcc, so to ensure the desired compiler is used you have to set a macro in it to call the arm-linux-g++ compiler instead, depending on invocation of make ie make --arm -all if the compiler doesn't appear in the kdevelop compiler list then that is the only option. if it appears in the compiler list then you can just select it from the drop down list where the comipler is specified. no drop down, then edit kdevelop's advanced options to include it as a compiler option. pointing kevelop to the arm-linux-g++ executable in the process __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com To unsubscribe from this list, please email [EMAIL PROTECTED] & you will be removed. Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/LINUX_Newbies/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
