| check-lit - run the lit tests |
| check-xtest - run the cross tests |
| Additional 'make' command options: |
| Create a minimal build, as small and fast as possible |
| Compile with -O0 instead of -O2 |
| Disable textual dump/emission support and other verbose options |
| Disable assert() calls, via -DNDEBUG |
| Enable UBSan support, i.e. -fsanitize=undefined |
| Enable UBSan support, trapping on errors |
| Enable TSan support, i.e. -fsanitize=thread |
| Enable ASan support, i.e. -fsanitize=address |
| Enable MSan support, i.e. -fsanitize=memory |
| Restrict support to a single processor target, |
| where <target> is one of {ARM32,MIPS32,X8632,X8664} |
| Most of these options can be combined, e.g. |
| make -f Makefile.standalone NOASSERT=1 NODUMP=1 |
| For more detailed help on a 'make' target: |
| make -f Makefile.standalone help-<target> , e.g: |
| make -f Makefile.standalone help-check-lit |