Skip to content

Commit

Permalink
Prefer clang over gcc since gcc is messing things up for us. Use exec…
Browse files Browse the repository at this point in the history
… when launching packaged versions.

Signed-off-by: Ryan McQuen <[email protected]>
  • Loading branch information
ryanpcmcquen committed Jun 2, 2020
1 parent 288f4c1 commit 088df99
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ TARGET=-o $(TITLE).exe && mt.exe -nologo -manifest windows\$(TITLE).manifest -ou
COMPILE=rc.exe /nologo windows\$(TITLE).rc && $(CC) $(FLAGS) $(SOURCE) $(LIBS) # \
!else
# make:
CC=clang
CP=cp -f
MV=mv -f
RM=rm -f
Expand Down
Binary file added basque
Binary file not shown.
Binary file added basque.linux.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion linux/basque_launch
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
TITLE=basque

cd ${HOME}/.local/share/${TITLE}
./${TITLE}
exec ./${TITLE}
2 changes: 1 addition & 1 deletion mac/basque.app/Contents/MacOS/basque
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
cd "$(dirname $BASH_SOURCE)"
cd ../Resources
./basque
exec ./basque

0 comments on commit 088df99

Please sign in to comment.