From e0c0d4b38cde20e2300e86b69414dd9851b47456 Mon Sep 17 00:00:00 2001 From: neodarz Date: Thu, 5 Sep 2019 07:05:07 +0200 Subject: ooo --- dotfiles/cheat/gcc | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 dotfiles/cheat/gcc (limited to 'dotfiles/cheat/gcc') diff --git a/dotfiles/cheat/gcc b/dotfiles/cheat/gcc new file mode 100644 index 0000000..6c3e2f1 --- /dev/null +++ b/dotfiles/cheat/gcc @@ -0,0 +1,26 @@ +# Compile a file +gcc file.c + +# Compile a file with a custom output +gcc -o file file.c + +# Debug symbols +gcc -g + +# Debug with all symbols. +gcc -ggdb3 + +# Build for 64 bytes +gcc -m64 + +# Include the directory {/usr/include/myPersonnal/lib/} to the list of path for #include <....> +# With this option, no warning / error will be reported for the files in {/usr/include/myPersonnal/lib/} +gcc -isystem /usr/include/myPersonnal/lib/ + +# Build a GUI for windows (Mingw) (Will disable the term/console) +gcc -mwindows + +# Change gcc version (for exemple if not work with the last version test the old last) +# Do this before ./configure or make command +CC=gcc-6 +CXX=gcc-6 -- cgit v1.2.1