compiling source for windows

Please support our Computer Science advertiser: Learn about neural networks and artificial intelligence.
Thread Solved

Join Date: Apr 2007
Posts: 53
Reputation: whoost is an unknown quantity at this point 
Solved Threads: 1
whoost's Avatar
whoost whoost is offline Offline
Junior Poster in Training

compiling source for windows

 
0
  #1
Jun 13th, 2007
hi
i'm not really sure if this is the right place to post this, but i was wondering how you go about compiling programs from source for windows XP. i've heard vaguely about a program called Cygwin, but am not sure if i should download it or not. i'd download it if it would help but i'm only a novice programmer at this point and i figured you'd have to be at least a little better than that to make it work. If anyone could at least point me in the right direction that would be great

thanks =]
Reply With Quote Quick reply to this message  
Join Date: Apr 2005
Posts: 16,207
Reputation: jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all 
Solved Threads: 538
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is offline Offline
Moderator

Re: compiling source for windows

 
0
  #2
Jun 13th, 2007
Do you want to compile regular applications? or do you want to compile linux applications for windows ? (thats what cygiwin is for)
If i am helpful, please give me reputation points.
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 7,709
Reputation: Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute 
Solved Threads: 731
Team Colleague
Narue's Avatar
Narue Narue is offline Offline
Code Goddess

Re: compiling source for windows

 
0
  #3
Jun 13th, 2007
>i was wondering how you go about compiling programs from source for windows XP.
We could be of more help if you told us what programming language you want to compile. But at the very least, you need a tool that will turn your source file into something that can be executed, called a compiler or interpreter.
I'm here to prove you wrong.
Reply With Quote Quick reply to this message  
Join Date: Apr 2007
Posts: 53
Reputation: whoost is an unknown quantity at this point 
Solved Threads: 1
whoost's Avatar
whoost whoost is offline Offline
Junior Poster in Training

Re: compiling source for windows

 
0
  #4
Jun 13th, 2007
most of what i want to compile is stuff i find on source forge or similar places that i can't get binary installers. i was originally going to try doing this for the GIMP photo editor, but i found those installers later on so it wasn't a problem. I'm not quite sure what language i want to compile, if that is even up to me (as you can probably tell by now, i'm quite new at this). Anything else specific i need to answer to help you help me?

and thanks for your patience, i imagine i could possibly get frustrating at some point
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 7,709
Reputation: Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute 
Solved Threads: 731
Team Colleague
Narue's Avatar
Narue Narue is offline Offline
Code Goddess

Re: compiling source for windows

 
0
  #5
Jun 13th, 2007
>most of what i want to compile is stuff i find on source forge or similar places that i can't get binary installers.
That kind of stuff should be very clear about what language is used so that you can pick the tool. But it's probably not a good idea to try building applications from source if you don't have any development experience. You might want to take up C or C++ with the gcc compiler to get a feel for how it all works.
I'm here to prove you wrong.
Reply With Quote Quick reply to this message  
Join Date: Apr 2007
Posts: 53
Reputation: whoost is an unknown quantity at this point 
Solved Threads: 1
whoost's Avatar
whoost whoost is offline Offline
Junior Poster in Training

Re: compiling source for windows

 
0
  #6
Jun 14th, 2007
i'm in the process of taking up C++ right now, despite some older programmers telling me to take C. where do i need to download the gcc compiler?
Reply With Quote Quick reply to this message  
Join Date: Apr 2005
Posts: 16,207
Reputation: jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all 
Solved Threads: 538
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is offline Offline
Moderator

Re: compiling source for windows

 
0
  #7
Jun 14th, 2007
get Dev c++. Its an IDE for c and c++ and has MiniGW built in (which is the nearest thing youll get to gcc on windows)
If i am helpful, please give me reputation points.
Reply With Quote Quick reply to this message  
Join Date: Jun 2005
Posts: 2,047
Reputation: Rashakil Fol is just really nice Rashakil Fol is just really nice Rashakil Fol is just really nice Rashakil Fol is just really nice 
Solved Threads: 139
Team Colleague
Rashakil Fol's Avatar
Rashakil Fol Rashakil Fol is offline Offline
Super Senior Demiposter

Re: compiling source for windows

 
1
  #8
Jun 14th, 2007
MinGW, not MiniGW.
All my posts may be redistributed under the GNU Free Documentation License.
Reply With Quote Quick reply to this message  
Join Date: Apr 2007
Posts: 53
Reputation: whoost is an unknown quantity at this point 
Solved Threads: 1
whoost's Avatar
whoost whoost is offline Offline
Junior Poster in Training

Re: compiling source for windows

 
0
  #9
Jun 15th, 2007
okay, so let's pretend (this would be on source forge) that the "architecture" is platform-independent and the "source form" is .bz2. all i really know is that i can unzip that =p.

sorry if this is excruciatingly painful to be teaching me like this. your help is very much appreciated
Reply With Quote Quick reply to this message  
Join Date: May 2007
Posts: 4,481
Reputation: Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of 
Solved Threads: 515
Moderator
Featured Poster
Ezzaral's Avatar
Ezzaral Ezzaral is online now Online
Industrious Poster

Re: compiling source for windows

 
0
  #10
Jun 15th, 2007
If you look at the Project Details section, there is an attribute Programming Language. This will tell you what language the project is written in and therefore how you would need to compile it.
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Computer Science Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC