We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
-s
-g
1 parent a607b5c commit a374318Copy full SHA for a374318
1 file changed
build.sh
@@ -4,7 +4,7 @@ OS_NAMES="android|emscripten|ios|linux|mac|win"
4
CPU_NAMES="arm|arm64|ppc64|x64|x86|wasm"
5
ENV_NAMES="catalyst|device|musl|simulator"
6
OS_ENV_COMBINATIONS="linux musl|ios (catalyst|device|simulator)"
7
-STEP_REGEX="[0-9]"
+STEP_REGEX="[0-9]|10"
8
9
START_STEP=0
10
@@ -22,13 +22,13 @@ Arguments:
22
23
Options:
24
-b branch = Chromium branch (default=main)
25
- -s 0-10 = Set start step (default=0)
+ -g 0-10 = Go immediately to step n (default=0)
26
-d = debug build
27
-j = enable v8"
28
exit
29
fi
30
31
-while getopts "b:djms:" OPTION
+while getopts "b:djmg:" OPTION
32
do
33
case $OPTION in
34
b)
@@ -43,7 +43,7 @@ do
43
export PDFium_ENABLE_V8=true
44
;;
45
46
- s)
+ g)
47
START_STEP="$OPTARG"
48
49
0 commit comments