We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f0310e commit f2c131aCopy full SHA for f2c131a
src/SPC/store/pkg/PkgConfig.php
@@ -67,7 +67,7 @@ public function extract(string $name): void
67
68
// build from source into package prefix
69
$env = [
70
- 'CFLAGS' => getenv('SPC_DEFAULT_C_FLAGS') ?: '-Os -Wno-int-conversion',
+ 'CFLAGS' => '-Wno-int-conversion ' . (getenv('SPC_DEFAULT_C_FLAGS') ?: '-Os'),
71
'LDFLAGS' => (SPCTarget::isStatic() ? '--static' : ''),
72
'PKG_CONFIG' => 'pkg-config',
73
'PKG_CONFIG_PATH' => BUILD_ROOT_PATH . '/lib/pkgconfig',
0 commit comments