diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2023-02-02 16:54:51 -0500 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2023-02-02 16:54:51 -0500 |
commit | bf760cf15e9660abaf2ea2e55ff38bc51c8e8d94 (patch) | |
tree | 6e3b9c96bdb0a3278d26132a3becafb63e7bd94d /build.sh | |
parent | b6507b457fcc4a2e1cdffa04768e5dd48e43be99 (diff) | |
download | lite-xl-plugin-manager-bf760cf15e9660abaf2ea2e55ff38bc51c8e8d94.tar.gz lite-xl-plugin-manager-bf760cf15e9660abaf2ea2e55ff38bc51c8e8d94.zip |
Added in JSON progress bars.
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,5 +47,5 @@ fi [[ $OSTYPE == 'msys'* || $CC == *'mingw'* ]] && LDFLAGS="$LDFLAGS -lbcrypt -lws2_32 -lz -lwinhttp -lole32 -lcrypt32 -lrpcrt4" [[ $OSTYPE == *'darwin'* ]] && LDFLAGS="$LDFLAGS -liconv -framework Security -framework Foundation" -[[ " $@" != *" -g"* && " $@" != *" -O"* ]] && CFLAGS="$CFLAGS -O3" && LDFLAGS="$LDFLAGS -s" -$CC $CFLAGS $SRCS $@ -o $BIN $LDFLAGS +[[ " $@" != *" -g"* && " $@" != *" -O"* ]] && CFLAGS="$CFLAGS -O3" && LDFLAGS="$LDFLAGS -s -flto" +$CC $CFLAGS $SRCS $@ -o $BIN $LDFLAGS |