Advertisement
KanjiCoder

GFT.SH

Nov 28th, 2022 (edited)
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.67 KB | None | 0 0
  1.     ## This file on pastebin : https://pastebin.com/KTfJwm7f  ##
  2.     ############################################################
  3.     gcc                                                        \
  4.         -x c                                                   \
  5.         -c "GFT.C11"                                           \
  6.         -o object_file.o                                       \
  7.                                                                \
  8.             -Werror                                            \
  9.             -Wfatal-errors                                     \
  10.             -Wpedantic                                         \
  11.             -Wall                                              \
  12.             -Wextra                                            \
  13.                                                                \
  14.             -fstrict-aliasing                                  \
  15.             -Wstrict-aliasing                                  \
  16.                                                                \
  17.             -std=c11                                           \
  18.             -m64 ###############################################
  19.                                     ####                    ####
  20.     gcc -o EXE.exe object_file.o    ####                    ####
  21.     rm             object_file.o    ####                    ####
  22.          ./EXE.exe                  ####                    ####
  23.     rm     EXE.exe                  ####                    ####
  24.                                     ####                    ####
  25.     read -p "[ENTER_TO_EXIT]:"      ####                    ####
  26.     ############################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement