@andersbakken/fisk 4.0.65 → 4.0.66
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/builder/VM_runtime.js +12 -1
- package/builder/fisk-builder.js +210 -314
- package/package.json +1 -1
- package/scheduler/fisk-scheduler.js +211 -292
package/builder/VM_runtime.js
CHANGED
|
@@ -3071,7 +3071,9 @@ class Compile extends EventEmitter__default["default"] {
|
|
|
3071
3071
|
case "-cxx-isystem":
|
|
3072
3072
|
case "-isysroot":
|
|
3073
3073
|
case "-isystem":
|
|
3074
|
+
case "-iquote":
|
|
3074
3075
|
case "-I":
|
|
3076
|
+
case "-F":
|
|
3075
3077
|
args.splice(i--, 2);
|
|
3076
3078
|
break;
|
|
3077
3079
|
case "-x":
|
|
@@ -3120,7 +3122,16 @@ class Compile extends EventEmitter__default["default"] {
|
|
|
3120
3122
|
++i;
|
|
3121
3123
|
break;
|
|
3122
3124
|
default:
|
|
3123
|
-
if (
|
|
3125
|
+
if (args[i].startsWith("-mlinker-version=") ||
|
|
3126
|
+
args[i].startsWith("-stdlib=") ||
|
|
3127
|
+
args[i].startsWith("-I") ||
|
|
3128
|
+
args[i].startsWith("-F") ||
|
|
3129
|
+
args[i].startsWith("-isystem") ||
|
|
3130
|
+
args[i].startsWith("-isysroot") ||
|
|
3131
|
+
args[i].startsWith("-cxx-isystem") ||
|
|
3132
|
+
args[i].startsWith("-iquote") ||
|
|
3133
|
+
args[i].startsWith("--sysroot=") ||
|
|
3134
|
+
args[i].startsWith("--gcc-toolchain=")) {
|
|
3124
3135
|
args.splice(i--, 1);
|
|
3125
3136
|
break;
|
|
3126
3137
|
}
|