[go: up one dir, main page]

File: compilers.yaml

package info (click to toggle)
duktape 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 20,496 kB
  • sloc: ansic: 203,676; python: 5,856; makefile: 476; cpp: 205
file content (35 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (4)
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
# Compiler metadata.

autodetect:
  -
    name: Clang
    check: DUK_F_CLANG
    include: compiler_clang.h.in
  -
    name: GCC
    check: DUK_F_GCC
    include: compiler_gcc.h.in
  -
    name: MSVC
    check: DUK_F_MSVC
    include: compiler_msvc.h.in
  -
    name: Emscripten
    check: DUK_F_EMSCRIPTEN
    include: compiler_emscripten.h.in
  -
    name: TinyC
    check: DUK_F_TINYC
    include: compiler_tinyc.h.in
  -
    name: VBCC
    check: DUK_F_VBCC
    include: compiler_vbcc.h.in
  -
    name: Bruce's C compiler
    check: DUK_F_BCC
    include: compiler_bcc.h.in
  -
    name: Generic
    check: null
    include: compiler_generic.h.in