Lines Matching full:abc
19 ./bin/es2panda --extension=ets --output=out.abc --opt-level=2 x.ets
20 ./bin/es2panda --extension=ets --output=etsstdlib.abc --opt-level=2 --gen-stdlib=true
22 ./bin/ark --boot-panda-files=etsstdlib.abc --load-runtimes=ets out.abc ETSGLOBAL::main
50 To execute compiled module *out.abc* we have several options:
54 ./bin/ark --compiler-enable-jit=false --boot-panda-files=etsstdlib.abc \
55 --load-runtimes=ets out.abc ETSGLOBAL::main
58 ./bin/ark --compiler-enable-jit=true --boot-panda-files=etsstdlib.abc \
59 --load-runtimes=ets out.abc ETSGLOBAL::main
62 ./bin/ark_aot --boot-panda-files=etsstdlib.abc --load-runtimes=ets \
63 --paoc-panda-files out.abc --paoc-output out.aot
64 ./bin/ark --boot-panda-files=etsstdlib.abc --load-runtimes=ets \
65 --aot-files=out.aot out.abc ETSGLOBAL::main
78 ./bin/es2panda --extension=ets --output=out.abc --opt-level=2 --gen-stdlib=false /path/to/module/fo…
88 ### How to use .abc and .d.ets without samples
92 ### How to find out what is in .abc
95 Its input is .abc file, its output is .pa (panda assembler) file.
98 ./bin/ark_disasm out.abc out.pa
121 ### How does global scope affect .abc
154 ./bin/es2panda --extension=ets --output=out.abc --opt-level=2 --gen-stdlib=false \
158 ### How to make one .abc file from two
161 this application and it will output a combined .abc file.
164 ./bin/ark_link --output out.abc -- a.abc b.abc
203 ### What are the limits of the internal keyword? One .abc? One module?
224 ./bin/es2panda --extension=ets --output=b.abc --opt-level=2 --ets-module y.ets
225 ./bin/es2panda --extension=ets --output=a.abc --opt-level=2 x.ets
227 ./bin/ark_link --output out.abc -- a.abc b.abc
230 ./bin/ark --boot-panda-files=etsstdlib.abc --load-runtimes=ets out.abc ETSGLOBAL::main