Skip to content

Commit 9a2d94c

Browse files
committed
fix debugflags being backwards
1 parent 8649068 commit 9a2d94c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SPC/builder/unix/UnixBuilderBase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ protected function buildFrankenphp(): void
339339
$dynamic_exports = ' ' . $dynamicSymbolsArgument;
340340
}
341341
}
342-
$debugFlags = $this->getOption('no-strip') ? '-w -s ' : '';
342+
$debugFlags = $this->getOption('no-strip') ? '' : '-w -s ';
343343
$extLdFlags = "-extldflags '-pie{$dynamic_exports} {$this->arch_ld_flags}'";
344344
$muslTags = '';
345345
$staticFlags = '';

0 commit comments

Comments
 (0)