You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fixed certain C export name handling that could cause a crash
* Added a regression test for the name handling bug.
* Optimization is now on by default to avoid confusion (#18)
* Fixed nonstandard use of `static const int`
unsignedint flags = ENV_ENABLE_WAT; // Always enable WAT
140
-
unsignedint optimize = 0;
140
+
unsignedint optimize = ENV_OPTIMIZE_O3; // Default to O3
141
141
innative::Path out;
142
142
std::vector<constchar*> wast; // WAST files will be executed in the order they are specified, after all other modules are injected into the environment
143
143
constchar* libpath = nullptr;
@@ -192,6 +192,8 @@ int main(int argc, char* argv[])
0 commit comments