porffor 0.34.19 → 0.34.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiler/index.js +1 -1
- package/package.json +1 -1
- package/runner/index.js +1 -1
package/compiler/index.js
CHANGED
@@ -205,7 +205,7 @@ export default (code, flags) => {
|
|
205
205
|
|
206
206
|
const tmpfile = 'porffor_tmp.c';
|
207
207
|
const args = [ ...compiler, tmpfile, '-o', outFile ?? (process.platform === 'win32' ? 'out.exe' : 'out'), '-' + cO ];
|
208
|
-
if (!Prefs.compiler) args.push('-flto=thin', '-march=native', '-s', '-ffast-math', '-fno-exceptions', '-fno-ident', '-fno-asynchronous-unwind-tables', '-ffunction-sections', '-fdata-sections'
|
208
|
+
if (!Prefs.compiler) args.push('-flto=thin', '-march=native', '-s', '-ffast-math', '-fno-exceptions', '-fno-ident', '-fno-asynchronous-unwind-tables', '-ffunction-sections', '-fdata-sections');
|
209
209
|
|
210
210
|
if (logProgress) progressStart('compiling Wasm to C...');
|
211
211
|
const t4 = performance.now();
|
package/package.json
CHANGED