0% found this document useful (0 votes)
273 views2 pages

Codelite Installation

This document provides instructions for installing and configuring the Mingw-w64 gcc compiler and CodeLite integrated development environment on Windows. It outlines downloading and installing Mingw-w64 from SourceForge, setting the PATH environment variable, and downloading and installing CodeLite from its website. It then gives steps for configuring a basic C++ project in CodeLite to use Mingw-w64 as the compiler and enable C++17 features.

Uploaded by

ero feina
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
273 views2 pages

Codelite Installation

This document provides instructions for installing and configuring the Mingw-w64 gcc compiler and CodeLite integrated development environment on Windows. It outlines downloading and installing Mingw-w64 from SourceForge, setting the PATH environment variable, and downloading and installing CodeLite from its website. It then gives steps for configuring a basic C++ project in CodeLite to use Mingw-w64 as the compiler and enable C++17 features.

Uploaded by

ero feina
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

control panel

system and security

install

mingw-w64
https://sourceforge.net/projects/mingw-w64/
downloads
mingw-w64 - gcc compiler
sourcefourge
download
double click to install
x-86
shorten directory into program files/mingw

set the path environment


control panel
search env
system edit variables
environment variables
path-edit-new-browse-programfiles-mingw64-bin
move up just below system32
done
cmd
type g++ --version

next

code lite integrated environment

free that work in windows, mac and linux


go to codelite.org
https://downloads.codelite.org/
click download
not now take me to the download
codelite windows 64 bit installer

install in local drive


desktop
press install
launch codelite

Configuring on Windows
cancel wizard
update theme select yes

Help-run the setup wizard


C/C++d development
Scan will look for the compiler
mingw-next
color system default
settings-build settings
compiler
write a simple program
new workspace
C++ workspace
firstWorkspace
no spaces
no special characters
right click - new-newproject
name project -project1
check project
category-console-non-graphical interface
type -simple executable g++
compiler -mingw
Debugger - gdb debugger
build system -default - ok
Project1
src folder
main.cpp -source code type the program
settings - font bigger - colors and fonts 16

std::cout<<"hello"<<std::endl;
return 0;
file-save-color red to green
build and run

set-up -use modern c++


select project
right-click-settings
compiler
c++ compiler-select-enable c++17 feature
you can use c++ 14 or C++17
optimize for debugging
produce debugging information
linker-linker options type -static

You might also like