You are on page 1of 14

ROTEIRO PARA CONFIGURAÇÃO DO CODEBLOCKS

DEBUG

RELEASE
SET TO C++ 14
SETADO C++ 14
%AppData%
-std=gnu++14 -std=c11

Name: Have g++ follow the C++11 GNU C++ language standard (ISO C++ plus GNU extensions)
Compiler Flag: -std=gnu++11
Link flags: “vazio”
Check against: vazio
Supersedes: -std=c++98 -std=gnu++98 -std=c++11 -std=c++14 -std=gnu++14 -std=c++17 -std=gnu++17 -
std=c++20 -std=gnu++20

-std=c++98 -std=c++14 -std=c++17 -std=c++20

D:\SFML-2.4.2\lib
D:\SFML-2.4.2\include

-lsfml-graphics
-lsfml-window
-lsfml-system
-lsfml-audio

CONFIGURAÇÃO DO COMPILADOR DO DEV-C++

Compiler set to configure


[ TDM-GCC 4.9.2 64 - bit Release ]

ABA:General
[ ] Add the following commands when calling the compiler:

[X] Add the following command when calling the linker:


....
-static-libgcc
....

ABA:Settings/ C options
Suport all ANSI standard C programs (-ansi) [No]
Do not reconize asm, inline or typeeof as a keyword (-fno-asm) [No]
Imitate tradicional C preprocessors (-traditional-cpp) [No]

ABA:Settings/ Code Generation


Optimize for the dollowing machine (-march) [ ]
Optimaze less, while maintaining full compatibility (-mtune) [ ]
Enable use of specific instrutions (-mx) [ ]
Optimization level (-Ox) [ ]
Compile with the following pointer width (-mx) [ ]
Language standart (-std) [GNU C++11]

ABA:Settings/ Warnings
Inhibit all warning messages (-w) [No]
Show most warnings (-Wall) [No]
Show some more warnings (-Wextra) [No]
Check ISO C/C++ / C++0x conformance (-pedantic) [No]
Only check the code for syntax errors (-fsyntaz-only) [No]
Make all warnings into errors (-Werror) [No]
Abort compilation on first error (-Wfatal-errors) [No]

ABA:Settings/ Profiling
Generate profiling info for analysis (-pg) [No]

ABA:Settings/ Linker
Link an Objetive C program (-lobjc) [No]
Generate debugging information (-g3) [No]
Do not use standard system libraries (-nostdlib) [No]
Do not create a console sindow (-mwindow) [No]
Strip executable (-s) [No]

ABA:Settings/ Output
Put not comments in generated assembly code (-fverbose-asm) [No]
Do not assemble, but output assembler code (-S) [No]
Use pipes instead os temporary files during compilations (-pipe)[No]

ABA:Directories/Binaries
C:\Program Files (x86)\Dev-Cpp\MinGW64\bin
C:\Program Files (x86)\Dev-Cpp\MinGW64\x86_64-w64-mingw32\bin

ABA:Directories/Libraries
C:\Program Files (x86)\Dev-Cpp\MinGW64\lib
C:\Program Files (x86)\Dev-Cpp\MinGW64\x86_64-w64-mingw32\lib

ABA:Directories/ C Includes
C:\Program Files (x86)\Dev-Cpp\MinGW64\include
C:\Program Files (x86)\Dev-Cpp\MinGW64\x86_64-w64-mingw32\include
C:\Program Files (x86)\Dev-Cpp\MinGW64\lib\gcc\x86_64-w64-mingw32\4.9.2\include
ABA:Directories/ C++ Includes
C:\Program Files (x86)\Dev-Cpp\MinGW64\include
C:\Program Files (x86)\Dev-Cpp\MinGW64\x86_64-w64-mingw32\include
C:\Program Files (x86)\Dev-Cpp\MinGW64\lib\gcc\x86_64-w64-mingw32\4.9.2\include
C:\Program Files (x86)\Dev-Cpp\MinGW64\lib\gcc\x86_64-w64-mingw32\4.9.2\include\c++

ABA:Program

gcc : c:\Arquivos de programas (x86)\Dev-Cpp\MinGW64\bin [ gcc.exe ]


g++ : c:\Arquivos de programas (x86)\Dev-Cpp\MinGW64\bin [ g++.exe ]
make : c:\Arquivos de programas (x86)\Dev-Cpp\MinGW64\bin [ mingw32-make.exe ]
gdb : c:\Arquivos de programas (x86)\Dev-Cpp\MinGW64\bin [ gdb.exe ]
windres: c:\Arquivos de programas (x86)\Dev-Cpp\MinGW64\bin [ windres.exe ]
gprof : c:\Arquivos de programas (x86)\Dev-Cpp\MinGW64\bin [ gprof.exe ]

You might also like