What is the right way to install wxWidgets with codeblocks Topic is solved

Do you have a question about makefiles, a compiler or IDE you are using and need to know how to set it up for wxWidgets or why it doesn't compile but other IDE's do ? Post your questions here.
ONEEYEMAN
Part Of The Furniture
Part Of The Furniture
Posts: 7449
Joined: Sat Apr 16, 2005 7:22 am
Location: USA, Ukraine

Re: What is the right way to install wxWidgets with codeblocks

Post by ONEEYEMAN »

Hi,
Look at the gcc source code.
Get yourself familiar with the assembly.
Read the documentation on the different processors and how they are operate.

Try to fix a problem with the gcc.

Start writing new code

Thank you.
sly_chandan
Earned some good credits
Earned some good credits
Posts: 116
Joined: Fri Sep 25, 2015 2:33 pm

Re: What is the right way to install wxWidgets with codeblocks

Post by sly_chandan »

I can see some gcc books on amazon.

Is there a best way to start with gcc?

How can I open gcc files in CB or MSVC?
ONEEYEMAN
Part Of The Furniture
Part Of The Furniture
Posts: 7449
Joined: Sat Apr 16, 2005 7:22 am
Location: USA, Ukraine

Re: What is the right way to install wxWidgets with codeblocks

Post by ONEEYEMAN »

Hi,
The best way is to learn about assembly, processor architecture, C language (not C++ and definitely not wxWidgets).
Then clone the gcc source code, study it, check any open bugs against it and try to fix one of them.

I would start with the top line (learning assembly and the processor architecture.
Without it you can forget about working on the compiler in general (not just gcc).

Thank you.
Post Reply