We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ba9ba6 commit d810be3Copy full SHA for d810be3
1 file changed
README.md
@@ -346,6 +346,22 @@ the C stack usage is bounded. There is no abstract syntax tree. The
346
bytecode is generated in one pass with several tricks to optimize it
347
(QuickJS has several optimization passes).
348
349
+#### Configuration
350
+
351
+The build configuration can be customized by creating a `config.mk` file.
352
+You can copy the example configuration:
353
354
+```bash
355
+cp config.mk.example config.mk
356
+```
357
358
+Then edit `config.mk` to enable or disable specific options (e.g. `CONFIG_ASAN=y` for debugging).
359
+Alternatively, you can override options directly on the command line:
360
361
362
+make CONFIG_SMALL=n
363
364
365
## Tests and benchmarks
366
367
Running the basic tests:
0 commit comments