Skip to content

Commit b4206fa

Browse files
committed
add dark-mode css
1 parent ba0ed8b commit b4206fa

File tree

3 files changed

+8046
-4
lines changed

3 files changed

+8046
-4
lines changed

build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export RUSTFLAGS="-C opt-level=3 -C target-feature=+sse4.1" &&
7474

7575
./configure --enable-the-force &&
7676

77-
make VERBOSE=1 V=1 -j8 &&
77+
make VERBOSE=1 V=1 -j16 &&
7878

7979
printf "\n" &&
8080
printf "${GRE}${bold}Build Completed. ${YEL}${bold}You can now run \`sudo make install\` or \`make install\` to install it.\n" &&
@@ -103,7 +103,7 @@ export RUSTFLAGS="-C opt-level=3 -C target-feature=+avx,+aes" &&
103103

104104
./configure --enable-the-force &&
105105

106-
make VERBOSE=1 V=1 -j8 &&
106+
make VERBOSE=1 V=1 -j16 &&
107107

108108
printf "\n" &&
109109
printf "${GRE}${bold}Build Completed. ${YEL}${bold}You can now run \`sudo make install\` or \`make install\` to install it.\n" &&

build_win.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,13 @@ export LDFLAGS="-Wl,-O3 -msse4.1 -s -flto=auto" &&
7272
export OPT_LEVEL="3" &&
7373
export RUSTFLAGS="-C opt-level=3 -C target-feature=+sse4.1" &&
7474

75+
mkdir -p ./dist &&
76+
7577
NOCONFIGURE=1 ./autogen.sh &&
7678

7779
./configure --enable-the-force --prefix=${PWD}/dist &&
7880

79-
make VERBOSE=1 V=1 -j8 &&
81+
make VERBOSE=1 V=1 -j16 &&
8082

8183
make install
8284

@@ -103,11 +105,13 @@ export LDFLAGS="-Wl,-O3 -mavx -maes -s -flto=auto" &&
103105
export OPT_LEVEL="3" &&
104106
export RUSTFLAGS="-C opt-level=3 -C target-feature=+avx,+aes" &&
105107

108+
mkdir -p ./dist &&
109+
106110
NOCONFIGURE=1 ./autogen.sh &&
107111

108112
./configure --enable-the-force --prefix=${PWD}/dist &&
109113

110-
make VERBOSE=1 V=1 -j8 &&
114+
make VERBOSE=1 V=1 -j16 &&
111115

112116
make install
113117

0 commit comments

Comments
 (0)