mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-03-12 20:34:53 +01:00
16 lines
315 B
PHP
16 lines
315 B
PHP
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
// $arcanist_root = dirname(dirname(dirname(dirname(__FILE__))));
|
||
|
// require_once $arcanist_root.'/support/init/init-script.php';
|
||
|
|
||
|
$cppflags = '';
|
||
|
$arch = php_uname('m');
|
||
|
|
||
|
if ($arch == 'i386' || $arch == 'x86_64') {
|
||
|
$cppflags .= ' -minline-all-stringops ';
|
||
|
}
|
||
|
|
||
|
echo $cppflags;
|
||
|
echo "\n";
|