Skip to content

Commit 081e2d2

Browse files
committed
fix debugflags being backwards
1 parent 9edb941 commit 081e2d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/SPC/builder/unix/UnixBuilderBase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ protected function buildFrankenphp(): void
418418
$dynamic_exports = ' ' . $dynamicSymbolsArgument;
419419
}
420420
}
421-
$debugFlags = $this->getOption('no-strip') ? '-w -s ' : '';
421+
$debugFlags = $this->getOption('no-strip') ? '' : '-w -s ';
422422
$extLdFlags = "-extldflags '-pie{$dynamic_exports} {$this->arch_ld_flags}'";
423423
$muslTags = '';
424424
$staticFlags = '';

0 commit comments

Comments
 (0)