LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 05-16-2012, 12:38 PM   #1
arron9991
LQ Newbie
 
Registered: May 2012
Posts: 1

Rep: Reputation: Disabled
Question Newbe wanting to move from Windows - Borland C++ to Linux - C++(G++)


I am a C++ hobby enthusiast and I would like to start using Linux and G++. I have downloaded Ubuntu to a flash drive but I have not yet installed it. Is Ubuntu the right version of Linux for a beginner and how do I aquire a G++ IDE and compiler?
 
Click here to see the post LQ members have rated as the most helpful post in this thread.
Old 05-16-2012, 12:48 PM   #2
schneidz
LQ Guru
 
Registered: May 2005
Location: boston, usa
Distribution: fedora-35
Posts: 5,313

Rep: Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918
i think any distro with gcc installed will work. i would start by compiling hello-world on the command line. then look for an ide that you like to use (i think eclipse is popular).

i use gedit and gcc on fedora live-usb whenever i need to.
 
Old 05-16-2012, 12:57 PM   #3
Doc CPU
Senior Member
 
Registered: Jun 2011
Location: Stuttgart, Germany
Distribution: Mint, Debian, Gentoo, Win 2k/XP
Posts: 1,099

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
Hi there,

Quote:
Originally Posted by schneidz View Post
i would start by compiling hello-world on the command line. then look for an ide that you like to use (i think eclipse is popular).
okay, but I recommend to take a few days' time before to get used to the system - to get it installed in the first place. Preferrably without deleting the existing Windows environment, so that the OP has something familiar to revert to when something gets difficult. Best way to do this is probably a dual-boot configuration.

As for the IDE ... my favorite is code::blocks.

[X] Doc CPU
 
Old 05-16-2012, 01:33 PM   #4
netherfox
LQ Newbie
 
Registered: Jan 2004
Location: Pennsylvania
Distribution: SolusOS
Posts: 23

Rep: Reputation: 0
Quote:
Originally Posted by arron9991 View Post
Is Ubuntu the right version of Linux for a beginner and how do I aquire a G++ IDE and compiler?
Yes, it's a great distro for a beginner. Just use the existing package management system to view a variety of available tools.
 
Old 05-16-2012, 02:56 PM   #5
johnsfine
LQ Guru
 
Registered: Dec 2007
Distribution: Centos
Posts: 5,286

Rep: Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197
Quote:
Originally Posted by arron9991 View Post
I am a C++ hobby enthusiast and I would like to start using Linux and G++. I have downloaded Ubuntu to a flash drive but I have not yet installed it. Is Ubuntu the right version of Linux for a beginner and how do I aquire a G++ IDE and compiler?
1) How old is your Borland C++ ? Most questions I've seen about moving from Borland C++ to GCC get bogged down in details that are really about moving from an obsolete early version of C++ up to current and moving from a platform that freely mixes in Microsoft specific non portable constructs to a platform is mainly portable (and anything no portable is also non Microsoft).

2) The choice of distribution is not a major choice for your purpose. The major choice is IDE, which is a completely independent choice from distribution.

3) I like code::blocks anyway, but one possible major extra advantage of code::blocks is that you could make the jump in two steps: First Borlan to code::blocks and second Windows to Linux.
IIRC, it is pretty easy to download and install a Windows code::blocks package bundled with mingw (a Windows port of GCC) giving you everything you need to learn to use code::blocks in Windows.
Back when I last did it, it was somewhat harder to install code::blocks correctly in Linux, because it only pulls in what it needs for itself. It doesn't pull in other packages that you need to make code:blocks effective for you (that tends to be true of Linux IDEs in general). You need to know what to expect in order to know what other packages you should have installed in order to make the IDE effective.
I always believe in splitting learning into focused aspects when possible, rather than such things as using an OS you don't know yet for learning an IDE you don't know yet while learning a much newer C++ than you likely know.
 
2 members found this post helpful.
Old 05-16-2012, 03:35 PM   #6
Doc CPU
Senior Member
 
Registered: Jun 2011
Location: Stuttgart, Germany
Distribution: Mint, Debian, Gentoo, Win 2k/XP
Posts: 1,099

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
Hi there,

Quote:
Originally Posted by johnsfine View Post
1) How old is your Borland C++ ?
the latest version of Borland C++, which I, too, have still installed on my Windows PC, is version 5.01 from 1996.

Quote:
Originally Posted by johnsfine View Post
Most questions I've seen about moving from Borland C++ to GCC get bogged down in details that are really about moving from an obsolete early version of C++ up to current and moving from a platform that freely mixes in Microsoft specific non portable constructs to a platform is mainly portable (and anything no portable is also non Microsoft).
That doesn't match my impression. Okay, Borland C++ is slightly behind the standard, and source code from the 90's needs some adaptions here and there to compile on a modern compiler. But that's peanuts. The real challenge is changing from a programming environment that is clearly intertwined with Windows to one that tries to be platform independent. All code that interacts with the GUI has to be rewritten.
Anyway, Borland C++ is still gold compared to Microsofts Visual C++ that even tampers with the programmer's source files when you least expect it to enforce the use of Microsoft's templates.

Quote:
Originally Posted by johnsfine View Post
I like code::blocks anyway, but one possible major extra advantage of code::blocks is that you could make the jump in two steps: First Borlan to code::blocks and second Windows to Linux.
Thats for sure a significant point. But for me, the real advantage of code::blocks is the integration of totally different toolchains. I can compile projects for Linux, for Windows, for the legendary 6502 processor or for Atmel/AVR µCs just by selecting a different profile, and without ever leaving my Linux PC.

Quote:
Originally Posted by johnsfine View Post
Back when I last did it, it was somewhat harder to install code::blocks correctly in Linux, because it only pulls in what it needs for itself. It doesn't pull in other packages that you need to make code:blocks effective for you (that tends to be true of Linux IDEs in general).
Yea, the code:blocks package is only the IDE, not the compiler/linker toolchains for a specific target system. While a GNU/Linux system should have all the necessary tools "on board" to develop native applications, toolchains for different targets, such as Windows or certain µCs, must be installed and configured separately.

[X] Doc CPU
 
1 members found this post helpful.
Old 05-16-2012, 03:58 PM   #7
johnsfine
LQ Guru
 
Registered: Dec 2007
Distribution: Centos
Posts: 5,286

Rep: Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197
Quote:
Originally Posted by Doc CPU View Post
While a GNU/Linux system should have all the necessary tools "on board" to develop native applications,
Trivial to install if you know what to ask for, but typically not "on board" (installed by default with the distribution). Most Linux users never need to even compile any C++ source code.

As best as I recall from long ago (not necessarily well) code::blocks on Linux needed some automake or related packages, that I never needed for ordinary C++ development and that code::blocks didn't call out as a dependency, so I found it hard to get from "it doesn't seem to work" to "just needed to install this extra package".
 
Old 05-16-2012, 04:11 PM   #8
Doc CPU
Senior Member
 
Registered: Jun 2011
Location: Stuttgart, Germany
Distribution: Mint, Debian, Gentoo, Win 2k/XP
Posts: 1,099

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
Hi there,

Quote:
Originally Posted by johnsfine View Post
Trivial to install if you know what to ask for, but typically not "on board" (installed by default with the distribution). Most Linux users never need to even compile any C++ source code.
that may be true, but I haven't yet come across a distro that didn't have the toolchain around gcc preinstalled in its standard installation - though not necessarily g++.

Quote:
Originally Posted by johnsfine View Post
As best as I recall from long ago (not necessarily well) code::blocks on Linux needed some automake or related packages, that I never needed for ordinary C++ development and that code::blocks didn't call out as a dependency, so I found it hard to get from "it doesn't seem to work" to "just needed to install this extra package".
Your memory is either not accurate or not up to date. Actually, code::blocks just needs the tools themselves (compiler, linker, etc) installed.

[X] Doc CPU
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
What distro is best for wanting to learn Linux, but coming from windows Lumber King Linux - Newbie 11 07-31-2011 06:41 PM
Newbie wanting to move to Slackware for good navic Slackware 8 04-29-2007 02:15 PM
Compiling Borland c++ windows source on linux.. arun79 Linux - Software 3 10-15-2004 04:14 PM
windows user wanting to migrate to linux enhancedcrash Linux - Newbie 8 10-19-2003 03:37 PM
borland help (windows) petercool Programming 1 07-14-2002 02:23 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:59 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration