- Avoid warning for unreferenced variables
- Fix incorrect (non-existent) macro name (DUK_NEVER_HERE)
- Fix built-in missing prototype
- Fix C++ static variable issue
- Avoid pc2line lookup when not enabled
- Change combine_src.py order to match C++ static var requirements
- Use volatile in cause segfault to avoid clang warning
Reimplement matrix testing to support proper combination structure like
Select, Combine, Subset, etc. Avoid enumerating the matrix explicitly,
and change testing to use random sampling of the (very large) matrix space.
Improve the testing matrix to include a lot more option combinations. The
set is still not complete and output is not yet warning free with all options
so '-Werror' is not yet enabled in the matrix.
Add convenience Makefile targets like 'matrix10', 'matrix100', etc so that
small matrix tests can be easily run while developing.
Add basic support for /*@include util-foo.js@*/ in Ecmascript testcases.
This allows helpers to be shared but requires no runtime testing framework
because the includes are resolved in a separate prepare step.
When using separate sources MinGW would use GCC symbol visibility attributes
which cause: "warning: visibility attribute not supported in this
configuration; ignored".
Avoid using GCC symbol visibility attributes with MinGW. Instead, use either
no visibility attributes or Windows specific __declspec(dllexport) and
__declspec(dllimport).
Based on "make checkalign", there is no alignment requirement at least on
Linux SH4. Using alignment 4 in any case, because that's a good default
if there is potential performance impact of smaller alignment (e.g. for
cache lines and such).