Difference between revisions of "Installing Cygwin Compiler"

From Code::Blocks
m
m (formatting)
Line 15: Line 15:
  
 
1.) Under the "Programs" tab:
 
1.) Under the "Programs" tab:
  - point the path to your Cygwin installation folder
+
** point the path to your Cygwin installation folder
  - under "Additional path" add [Cygwin]\usr\X11R6\bin (if required)
+
** under "Additional path" add [Cygwin]\usr\X11R6\bin (if required)
  - under "Program files" setup the following for the executables:
+
** under "Program files" setup the following for the executables:
    - C Compiler:              gcc.exe
+
*** C Compiler:              gcc.exe
    - C++ Compiler:            g++.exe
+
*** C++ Compiler:            g++.exe
    - Linker for dynamic libs: g++.exe
+
*** Linker for dynamic libs: g++.exe
    - Linker for tatic libs:  ar.exe
+
*** Linker for tatic libs:  ar.exe
    - Debugger:                gdb.exe
+
*** Debugger:                gdb.exe
    - Resource compiler:      windres.exe
+
*** Resource compiler:      windres.exe
    - Make program:            make.exe
+
*** Make program:            make.exe
  
 
2.) Under the "Directories" tab make sure to adjust the include/lib path's:
 
2.) Under the "Directories" tab make sure to adjust the include/lib path's:
  - tab "compiler" (notice the "\usr" in contrast to the linker):
+
** tab "compiler" (notice the "\usr" in contrast to the linker):
    - add [Cygwin]\usr\include
+
*** add [Cygwin]\usr\include
    - add [Cygwin]\usr\X11R6\include (if required)
+
*** add [Cygwin]\usr\X11R6\include (if required)
  - tab "compiler" (notice the missing "\usr" in contrast to the compiler):
+
** tab "compiler" (notice the missing "\usr" in contrast to the compiler):
    - add [Cygwin]\lib
+
*** add [Cygwin]\lib
    - add [Cygwin]\usr\X11R6\lib (if required)
+
*** add [Cygwin]\usr\X11R6\lib (if required)
  - tab "Resource compiler"
+
** tab "Resource compiler"
    - add [Cygwin]\usr\include
+
*** add [Cygwin]\usr\include
    - add [Cygwin]\usr\X11R6\include (if required)
+
*** add [Cygwin]\usr\X11R6\include (if required)
  
 
3.) If you want to create pure (native) win32 applications that do not require the Cygwin DLL you may add the following:
 
3.) If you want to create pure (native) win32 applications that do not require the Cygwin DLL you may add the following:
  - tab "Compiler" -> tab "Other options": add the compiler switch: -mno-cygwin
+
** tab "Compiler" -> tab "Other options": add the compiler switch: -mno-cygwin
  -> Please notice that some programs you are developing require specific
+
-> Please notice that some programs you are developing require specific unix functionality / libs that is provided only through the Cygwin layer. In that case this switch has to be removed.
    unix functionality / libs that is provided only through the Cygwin layer.
 
    In that case this switch has to be removed.
 
  
 
== Troubleshooting ==
 
== Troubleshooting ==
 
For troubleshooting enable the "Full command line" Under menu "Settings" -> "Compiler" -> "Other" tab, "Compiler logging". If you see that still the gcc compiler is invoked, make sure you setup the right compiler in the build options for your project '''AND''' your target (e.g. "default").
 
For troubleshooting enable the "Full command line" Under menu "Settings" -> "Compiler" -> "Other" tab, "Compiler logging". If you see that still the gcc compiler is invoked, make sure you setup the right compiler in the build options for your project '''AND''' your target (e.g. "default").

Revision as of 06:28, 28 June 2006

Attaching the compiler framework

Make sure that you have installed Cygwin at least with the GCC, G++ and GDB packages. This article describes the steps required to attach the GNU Cygwin Compiler suite.

In Code::Blocks under Settings->Compiler and debugger do the following:

  • Make a copy of the GNU GCC compiler as follows:

1.) Goto menu "Settings" -> "Compiler"

2.) Select the "GNU GCC Compiler", click the "Copy Button"

3.) Save the copy e.g. under "Cygwin GCC Compiler"

  • Setup the compiler as follows:

1.) Under the "Programs" tab:

    • point the path to your Cygwin installation folder
    • under "Additional path" add [Cygwin]\usr\X11R6\bin (if required)
    • under "Program files" setup the following for the executables:
      • C Compiler: gcc.exe
      • C++ Compiler: g++.exe
      • Linker for dynamic libs: g++.exe
      • Linker for tatic libs: ar.exe
      • Debugger: gdb.exe
      • Resource compiler: windres.exe
      • Make program: make.exe

2.) Under the "Directories" tab make sure to adjust the include/lib path's:

    • tab "compiler" (notice the "\usr" in contrast to the linker):
      • add [Cygwin]\usr\include
      • add [Cygwin]\usr\X11R6\include (if required)
    • tab "compiler" (notice the missing "\usr" in contrast to the compiler):
      • add [Cygwin]\lib
      • add [Cygwin]\usr\X11R6\lib (if required)
    • tab "Resource compiler"
      • add [Cygwin]\usr\include
      • add [Cygwin]\usr\X11R6\include (if required)

3.) If you want to create pure (native) win32 applications that do not require the Cygwin DLL you may add the following:

    • tab "Compiler" -> tab "Other options": add the compiler switch: -mno-cygwin

-> Please notice that some programs you are developing require specific unix functionality / libs that is provided only through the Cygwin layer. In that case this switch has to be removed.

Troubleshooting

For troubleshooting enable the "Full command line" Under menu "Settings" -> "Compiler" -> "Other" tab, "Compiler logging". If you see that still the gcc compiler is invoked, make sure you setup the right compiler in the build options for your project AND your target (e.g. "default").