summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRafael Marçalo <raroma09@gmail.com>2023-11-29 17:20:09 +0000
committerRafael Marçalo <raroma09@gmail.com>2023-11-29 17:20:09 +0000
commit8e69478ff67f886451b2e13e00806be03215d61e (patch)
tree2927fa70e8013832630853c5063d5ed46a40cb64 /scripts
parent515bba40658d47972d65fb654d9633791e242481 (diff)
Replaced neovimb with surf
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/.local/bin/compiler4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/.local/bin/compiler b/scripts/.local/bin/compiler
index ab8d62c..286be7d 100755
--- a/scripts/.local/bin/compiler
+++ b/scripts/.local/bin/compiler
@@ -11,10 +11,10 @@ if [ "$#" -eq 2 ] && { [ -e "$2/Makefile" ] || [ -e "$2/makefile" ]; }; then
else
case $EXTENSION in
c|h)
- cc -o "$BASE" ./*.c
+ cc -g -o "$BASE" ./*.c
;;
cpp)
- c++ -o "$BASE" ./*.cpp
+ c++ -g -o "$BASE" ./*.cpp
;;
java)
javac "$FILE" ./*.java