Adding chimera_build_static, chimera_build_opt to help minimize script hacking.

This commit is contained in:
cltbld%netscape.com 2002-06-26 20:39:43 +00:00
Родитель 3de4689a0d
Коммит 9770bb1661
1 изменённых файлов: 23 добавлений и 5 удалений

Просмотреть файл

@ -43,9 +43,15 @@ sub main {
# Pending a config file, stuff things here.
my $post_status = 'success'; # Success until we report a failure.
my $status = 0; # 0 = success
# No tests for now, since Chimera can't open a URL passed on the command line.
my $chimera_alive_test = 1;
my $chimera_test8_test = 0;
# Build flags
my $chimera_build_static = 0;
my $chimera_build_opt = 1;
my $chimera_dir = "$mozilla_build_dir/mozilla/chimera";
my $embedding_dir = "$mozilla_build_dir/mozilla/embedding/config";
my $chimera_binary = "Navigator";
@ -88,9 +94,21 @@ sub main {
my $foo = Cwd::getcwd();
TinderUtils::print_log "cwd = $foo\n";
my $build_cmd = "pbxbuild -buildstyle ";
# opt = Deployment, debug = Development.
if($chimera_build_opt) {
$build_cmd .= "\"Deployment\"";
} else {
$build_cmd .= "\"Development\"";
}
# Add -target NavigatorStatic for static build.
$status = TinderUtils::run_shell_command("pbxbuild -buildstyle \"Deployment\"");
if($chimera_build_static) {
$build_cmd .= " -target NavigatorStatic";
}
$status = TinderUtils::run_shell_command($build_cmd);
TinderUtils::print_log "Status from pbxbuild: $status\n";
}