@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.
@@ -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 (/^-mlinker-version=/.exec(args[i]) || /^-stdlib=/.exec(args[i])) {
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
  }