File: help

package info (click to toggle)
libnginx-mod-js 0.7.9-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,180 kB
  • sloc: ansic: 91,416; javascript: 4,038; exp: 427; sh: 309; python: 181; perl: 126; makefile: 18
file content (52 lines) | stat: -rw-r--r-- 2,146 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

# Copyright (C) Igor Sysoev
# Copyright (C) NGINX, Inc.


cat << END

./configure options:

  --cc=FILE                 set C compiler filename, default: "$CC"
  --cc-opt=OPTIONS          set additional C compiler options, \
default: "$NJS_CC_OPT"
  --ld-opt=OPTIONS          set additional linker options, \
default: "$NJS_LD_OPT"
  --ar=FILE                 set static linking program, default: "$AR"

  --build-dir=DIR           set build directory, default: "$NJS_BUILD_DIR"

  --no-pcre                 disables PCRE/PCRE2 discovery for RegExp
                            backend. This flag allows to build PCRE/PCRE2
                            outside of libnjs.a.  When this option is enabled
                            functions described in njs_regex.h are not built.
                            Instead this functions are expected to be provided
                            while linking.

  --no-pcre2                disables PCRE2 discovery for RegExp backend.
                            When this option is enabled only PCRE library
                            is discovered.

  --no-goto                 disables computed goto discovery.
                            When this option is enabled 'switch' statement
                            will be always used in instead of computed goto.

  --no-openssl              disables OpenSSL discovery. When this option is
                            enabled OpenSSL dependant code is not built as a
                            part of libnjs.a.

  --address-sanitizer=YES   enables build with address sanitizer, \
default: "$NJS_ADDRESS_SANITIZER"
  --addr2line=YES           enables native function symbolization, \
default: "$NJS_ADDR2LINE"
  --debug=YES               enables additional runtime checks, \
default: "$NJS_DEBUG"
  --debug-memory=YES        enables memory alloc debug, \
default: "$NJS_DEBUG_MEMORY"
  --debug-opcode=YES        enables runtime function tracing, \
default: "$NJS_DEBUG_OPCODE"
  --debug-generator=YES     enables generator debug, \
default: "$NJS_DEBUG_GENERATOR"
  --test262=YES             enables test262 extentions, \
default: "$NJS_TEST262"
END