sl@0: # Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: # All rights reserved. sl@0: # This component and the accompanying materials are made available sl@0: # under the terms of "Eclipse Public License v1.0" sl@0: # which accompanies this distribution, and is available sl@0: # at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: # sl@0: # Initial Contributors: sl@0: # Nokia Corporation - initial contribution. sl@0: # sl@0: # Contributors: sl@0: # sl@0: # Description: sl@0: # sl@0: sl@0: use strict; sl@0: use Env qw(EPOCROOT); sl@0: sl@0: # literals sl@0: my $icl_param = "-i"; sl@0: my $misc_param = "-c"; sl@0: my $mmf_param = "-m"; sl@0: my $all_param = "-f"; sl@0: my $test_param = "-t"; sl@0: my $testBuild_param = "-b"; sl@0: my $extra_param = "-x"; sl@0: my $keep_param = "-k"; sl@0: my $gccxml_param = "-g"; sl@0: my $skipMake_param = "-s"; sl@0: sl@0: my $setup_comm = "setup"; sl@0: my $clean_comm = "clean"; sl@0: my $build_comm = "build"; sl@0: sl@0: my @known_targets = ("wins", "winscw", "arm4", "armi","armv5", "gccxml", "thumb", "mcot", "misa", "mint"); sl@0: sl@0: my @Cedar_targets = ("winscw", "armv5"); # gccxml must be added explicitly with -g and even then only build gccxml on main code sl@0: my @Beech_targets = ("wins", "winscw", "thumb", "mcot"); sl@0: sl@0: my @default_targets = @Cedar_targets; sl@0: sl@0: my @physical_targets = ("mcot", "misa", "mint"); # those we just re-build sound drivers for sl@0: my $gccxml_target = "gccxml"; sl@0: my $x86gcc_target = "x86gcc"; sl@0: my @stages = ("export", "makefile", "library", "resource", "target", "final"); sl@0: my @tbstages = ("test export", "test makefile", "test library", "test resource", "test target", "test final"); sl@0: my @stagesTakingTarget = ("makefile", "library", "resource", "target", "final", sl@0: "test makefile", "test library", "test resource", "test target", "test final"); sl@0: my $eka2IdentifyFile = "$ENV{EPOCROOT}epoc32\\release\\winscw\\udeb\\winsgui.dll"; # if file present, is EKA2 build sl@0: my $x86gccIdentifyFile = "$ENV{EPOCROOT}epoc32\\release\\x86gcc\\udeb\\euser.dll"; # if dir present, x86 environment present sl@0: sl@0: my @targets; sl@0: my $component = ""; # default added later sl@0: my $extras = ""; sl@0: my $test = ""; sl@0: my $testBuild = ""; sl@0: my $command = ""; sl@0: my $keep = ""; sl@0: my $use_gccxml = ""; sl@0: my $skipMake = ""; sl@0: sl@0: my $main_mbc = "__main.mbc"; sl@0: my $test_mbc = "__test.mbc"; sl@0: my $testBuild_mbc = "__testBuild.mbc"; sl@0: my $phys_mbc = "__phys.mbc"; sl@0: my $metabld = "metabld"; sl@0: sl@0: my $targetToolsDir = "..\\..\\..\\..\\..\\TargetTools\\Build"; sl@0: my $TargetToolsExists = 0; sl@0: if (-d $targetToolsDir) sl@0: { sl@0: $TargetToolsExists = 1; sl@0: print "TargetTools directory exists: $targetToolsDir\n" sl@0: } sl@0: sl@0: # main: sl@0: { sl@0: # Process command-line sl@0: sl@0: unless (@ARGV) sl@0: { sl@0: &Usage(); sl@0: } sl@0: sl@0: &ReadArgs(); sl@0: sl@0: die "EPOCROOT is not set" unless ($EPOCROOT ne ""); sl@0: sl@0: $| = 1; # autoflush stdout. sl@0: sl@0: if ($command eq $setup_comm) sl@0: { sl@0: &Setup(); sl@0: } sl@0: elsif ($command eq $clean_comm) sl@0: { sl@0: &Clean(); sl@0: } sl@0: elsif ($command eq $build_comm) sl@0: { sl@0: &Build(); sl@0: } sl@0: else sl@0: { sl@0: die "Unknown command"; sl@0: } sl@0: exit 0; sl@0: } sl@0: sl@0: # sl@0: # Subroutines sl@0: # sl@0: sl@0: sub ReadArgs() sl@0: { sl@0: while (@ARGV) sl@0: { sl@0: my $param = @ARGV[0]; shift @ARGV; # grab first param and shift along sl@0: sl@0: if ($param eq "") # ignore blank parameters sl@0: { sl@0: next; sl@0: } sl@0: sl@0: if ($param eq $icl_param || $param eq $misc_param || sl@0: $param eq $mmf_param || $param eq $all_param) sl@0: { sl@0: $component = $param; sl@0: } sl@0: elsif ($param eq $test_param) sl@0: { sl@0: $test = $param; sl@0: } sl@0: elsif ($param eq $testBuild_param) sl@0: { sl@0: $testBuild = $param; sl@0: } sl@0: elsif ($param eq $extra_param) sl@0: { sl@0: $extras = $param; sl@0: } sl@0: elsif ($param eq $keep_param) sl@0: { sl@0: $keep = $param; sl@0: } sl@0: elsif ($param eq $gccxml_param) sl@0: { sl@0: $use_gccxml = $param; sl@0: } sl@0: elsif ($param eq $skipMake_param) sl@0: { sl@0: $skipMake = $param; sl@0: } sl@0: elsif ($param eq $setup_comm || $param eq $clean_comm || sl@0: $param eq $build_comm) sl@0: { sl@0: if ($command ne "") sl@0: { sl@0: &Usage; # scream if we try to state more than one command sl@0: } sl@0: $command = $param; sl@0: } sl@0: elsif ($command eq $build_comm) sl@0: { sl@0: # see if the parameter is one of the list of arguments sl@0: my $match = 0; sl@0: foreach my $target (@known_targets) sl@0: { sl@0: if ($target eq $param) sl@0: { sl@0: $match = 1; sl@0: last; # exit loop sl@0: } sl@0: } sl@0: if ($match != 0) sl@0: { sl@0: $targets[++$#targets] = $param; # append sl@0: } sl@0: else sl@0: { sl@0: # was not a valid target sl@0: Usage(); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: # unknown setting sl@0: &Usage(); sl@0: } sl@0: } sl@0: &CheckArgs(); sl@0: } sl@0: sl@0: sub CheckArgs() sl@0: { sl@0: # check that the arguments make sense sl@0: if ($command eq $clean_comm || $command eq $build_comm) sl@0: { sl@0: # for build and cleanup, can't set the required module sl@0: if ($component ne "" || $extras ne "") sl@0: { sl@0: &Usage; sl@0: } sl@0: } sl@0: # for setup, check -t has not been given sl@0: if ($command eq $setup_comm) sl@0: { sl@0: if ($test ne "") sl@0: { sl@0: &Usage; sl@0: } sl@0: } sl@0: if ($command eq "") sl@0: { sl@0: # need to state some command sl@0: &Usage; sl@0: } sl@0: } sl@0: sl@0: sub Setup sl@0: { sl@0: # default settings sl@0: if ($component eq "") sl@0: { sl@0: $component = $all_param; sl@0: } sl@0: # some boolean values sl@0: my $want_mmf = $component eq $mmf_param | $component eq $all_param; sl@0: my $want_icl = $component eq $icl_param | $component eq $all_param; sl@0: my $want_misc = $component eq $misc_param | $component eq $all_param; sl@0: my $want_extra = $extras ne ""; sl@0: # generate .mbc files and then do bldmake sl@0: open(OUTFILE, ">".$main_mbc) or die "Can't create file: $!"; sl@0: print OUTFILE "//\n//Auto-generated - do not edit!!\n//\n\n"; sl@0: print OUTFILE "#include \"mmf.mbc\"\n" if ($want_mmf); sl@0: print OUTFILE "#include \"icl.mbc\"\n" if ($want_icl); sl@0: print OUTFILE "#include \"Misc.mbc\"\n" if ($want_misc); sl@0: print OUTFILE "#include \"mmfOpt.mbc\"\n" if ($want_mmf && $want_extra); sl@0: print OUTFILE "#include \"iclOpt.mbc\"\n" if ($want_icl && $want_extra); sl@0: print OUTFILE "#include \"MiscOpt.mbc\"\n" if ($want_misc && $want_extra); sl@0: close OUTFILE; sl@0: sl@0: if ($want_mmf) sl@0: { sl@0: open(OUTFILE, ">".$phys_mbc) or die "Can't create file: $!"; sl@0: print OUTFILE "//\n//Auto-generated - do not edit!!\n//\n\n"; sl@0: print OUTFILE "#include \"mmfPhys.mbc\"\n"; sl@0: print OUTFILE "#include \"mmfOptPhys.mbc\"\n" if ($want_extra); sl@0: close OUTFILE; sl@0: } sl@0: else sl@0: { sl@0: # only applicable for mmf - otherwise just delete the file sl@0: if (-f $phys_mbc) sl@0: { sl@0: unlink $phys_mbc or die "Couldn't delete $phys_mbc"; sl@0: } sl@0: } sl@0: sl@0: open(OUTFILE, ">".$test_mbc) or die "Can't create file: $!"; sl@0: print OUTFILE "//\n//Auto-generated - do not edit!!\n//\n\n"; sl@0: print OUTFILE "#include \"AllTests.mbc\"\n"; sl@0: print OUTFILE "#include \"TestFrameworkTest.mbc\"\n"; sl@0: print OUTFILE "#include \"mmfTest.mbc\"\n" if ($want_mmf); sl@0: print OUTFILE "#include \"mmfNotOptTest.mbc\"\n" if ($want_mmf && !$want_extra); sl@0: print OUTFILE "#include \"iclTest.mbc\"\n" if ($want_icl); sl@0: print OUTFILE "#include \"MiscTest.mbc\"\n" if ($want_misc); sl@0: print OUTFILE "#include \"mmfOptTest.mbc\"\n" if ($want_mmf && $want_extra); sl@0: print OUTFILE "#include \"iclOptTest.mbc\"\n" if ($want_icl && $want_extra); sl@0: print OUTFILE "#include \"MiscOptTest.mbc\"\n" if ($want_misc && $want_extra); sl@0: if ($TargetToolsExists) sl@0: { sl@0: print OUTFILE "#include \"TargetTools.mbc\"\n"; sl@0: } sl@0: close OUTFILE; sl@0: sl@0: open(OUTFILE, ">".$testBuild_mbc) or die "Can't create file: $!"; sl@0: print OUTFILE "//\n//Auto-generated - do not edit!!\n//\n\n"; sl@0: print OUTFILE "#include \"mmfTestBuild.mbc\"\n" if ($want_mmf); sl@0: print OUTFILE "#include \"iclTestBuild.mbc\"\n" if ($want_icl); sl@0: print OUTFILE "#include \"MiscTestBuild.mbc\"\n" if ($want_misc); sl@0: print OUTFILE "#include \"mmfOptTestBuild.mbc\"\n" if ($want_mmf && $want_extra); sl@0: print OUTFILE "#include \"iclOptTestBuild.mbc\"\n" if ($want_icl && $want_extra); sl@0: print OUTFILE "#include \"MiscOptTestBuild.mbc\"\n" if ($want_misc && $want_extra); sl@0: close OUTFILE; sl@0: sl@0: # first getmake does bldmake on the main entries sl@0: my $sysComm = $metabld . " " . $main_mbc . " bldmake " . $keep . " bldfiles"; sl@0: my $result = system($sysComm); sl@0: if ($result != 0 && $keep eq "") sl@0: { sl@0: print "Error '$sysComm' failed: $result\n"; sl@0: exit ($result); sl@0: } sl@0: my $error = $result; sl@0: # second metabld goes through physical sl@0: if (-f $phys_mbc) sl@0: { sl@0: $sysComm = $metabld . " " . $phys_mbc . " bldmake " . $keep . " bldfiles"; sl@0: $result = system($sysComm); sl@0: if ($result != 0 && $keep eq "") sl@0: { sl@0: print "Error '$sysComm' failed: $result\n"; sl@0: exit ($result); sl@0: } sl@0: $error |= $result; sl@0: } sl@0: # third metabld goes through tests sl@0: $sysComm = $metabld . " " . $test_mbc . " bldmake " . $keep . " bldfiles"; sl@0: $result = system($sysComm); sl@0: if ($result != 0 && $keep eq "") sl@0: { sl@0: print "Error '$sysComm' failed: $result\n"; sl@0: exit ($result); sl@0: } sl@0: $error |= $result; sl@0: # fourth metabld goes through test build tests - ignore any dups with the above. Does not make any difference sl@0: $sysComm = $metabld . " " . $testBuild_mbc . " bldmake " . $keep . " bldfiles"; sl@0: $result = system($sysComm); sl@0: if ($result != 0 && $keep eq "") sl@0: { sl@0: print "Error '$sysComm' failed: $result\n"; sl@0: exit ($result); sl@0: } sl@0: $error |= $result; sl@0: if ($error) sl@0: { sl@0: print "Errors found during run\n"; sl@0: exit ($error) sl@0: } sl@0: } sl@0: sl@0: sub Clean sl@0: { sl@0: # first getmake does makefiles on the main entries sl@0: # note we generally ignore any errors on this sl@0: my $sysComm = $metabld . " " . $main_mbc . " abld " . $keep . " makefile"; sl@0: system($sysComm); sl@0: if (-f $phys_mbc) sl@0: { sl@0: my $sysComm = $metabld . " " . $phys_mbc . " abld " . $keep . " makefile"; sl@0: system($sysComm); sl@0: } sl@0: if ($test eq $test_param) sl@0: { sl@0: # also do for test files sl@0: $sysComm = $metabld . " " . $test_mbc . " abld " . $keep . " makefile"; sl@0: system($sysComm); sl@0: $sysComm = $metabld . " " . $testBuild_mbc . " abld " . $keep . " test makefile"; sl@0: system($sysComm); sl@0: } sl@0: my $sysComm = $metabld . " " . $main_mbc . " abld " . $keep . " reallyclean"; sl@0: system($sysComm); sl@0: if (-f $phys_mbc) sl@0: { sl@0: my $sysComm = $metabld . " " . $phys_mbc . " abld " . $keep . " reallyclean"; sl@0: system($sysComm); sl@0: } sl@0: if ($test eq $test_param) sl@0: { sl@0: # also do for test file sl@0: $sysComm = $metabld . " " . $test_mbc . " abld " . $keep . " reallyclean"; sl@0: system($sysComm); sl@0: $sysComm = $metabld . " " . $testBuild_mbc . " abld " . $keep . " test reallyclean"; sl@0: system($sysComm); sl@0: } sl@0: sl@0: } sl@0: sl@0: sub Build sl@0: { sl@0: # defaults sl@0: if (!(-f $eka2IdentifyFile)) sl@0: { sl@0: @default_targets = @Beech_targets; sl@0: } sl@0: sl@0: if (@targets == 0) sl@0: { sl@0: @targets = @default_targets; sl@0: } sl@0: if ($use_gccxml ne "") sl@0: { sl@0: $targets[++$#targets] = $gccxml_target; # append sl@0: } sl@0: if ((-f $x86gccIdentifyFile)) sl@0: { sl@0: $targets[++$#targets] = $x86gcc_target; # append x86gcc target since Build env present. sl@0: } sl@0: # for each target we need to go through each stage sl@0: # if -k was given, we make all calls and give error at the end sl@0: my $error = 0; sl@0: foreach my $target (@targets) sl@0: { sl@0: # work out which .mbc files to use. Key is as follows sl@0: # in physical targets and not test, __test.mbc sl@0: # in physical targets and test, skip - not currently supported sl@0: # not in physical targets and not test, __main.mbc sl@0: # not in physical targets and test, __test.mbc sl@0: my $build_test = $test ne ""; # -t has been given sl@0: my $build_testBuild = $test ne "" && $testBuild ne ""; # -t and -b has been given sl@0: my $physical_target = 0; sl@0: foreach my $phys (@physical_targets) sl@0: { sl@0: if ($phys eq $target) sl@0: { sl@0: $physical_target = 1; sl@0: last; # exit loop sl@0: } sl@0: } sl@0: my $mbc; sl@0: if ($physical_target && !$test) sl@0: { sl@0: if (-f $phys_mbc) sl@0: { sl@0: $mbc = $phys_mbc; sl@0: } sl@0: else sl@0: { sl@0: # we don't want to do anything - skip to next target sl@0: next; sl@0: } sl@0: } sl@0: elsif ($physical_target && $test) sl@0: { sl@0: next; # skip to next target sl@0: } sl@0: elsif (($target eq "gccxml") && $test) # Build GCCXML on the production code only sl@0: { sl@0: next; # skip to next target sl@0: } sl@0: elsif (!$physical_target && !$test) sl@0: { sl@0: $mbc = $main_mbc; sl@0: } sl@0: elsif ($test ne "") sl@0: { sl@0: if (!$testBuild) sl@0: { sl@0: $mbc = $test_mbc; sl@0: } sl@0: else sl@0: { sl@0: $mbc = $testBuild_mbc; sl@0: } sl@0: } sl@0: sl@0: # if the target is "wins", then check to see if wins is installed and otherwise just do export sl@0: # this is intended to get around Cedar builds not having wins. Really out to check for VC++ too, sl@0: # but not clear how sl@0: my @reqStages = @stages; sl@0: @reqStages = @tbstages if $build_testBuild; sl@0: if ($target eq "wins") sl@0: { sl@0: my $euser_lib = $EPOCROOT . "epoc32\\release\\wins\\udeb\\euser.lib"; sl@0: if (! -f $euser_lib) sl@0: { sl@0: print "no WINS installation found - just export\n"; sl@0: @reqStages = ( "export" ); sl@0: } sl@0: } sl@0: sl@0: sl@0: sl@0: # now the main loop sl@0: foreach my $stage (@reqStages) sl@0: { sl@0: # export does not take target as parameter, others do sl@0: my $takesTarget = 0; sl@0: foreach my $stage2 (@stagesTakingTarget) sl@0: { sl@0: if ($stage eq $stage2) sl@0: { sl@0: $takesTarget = 1; sl@0: last; # exit loop sl@0: } sl@0: } sl@0: if (($stage eq "makefile" || $stage eq "test makefile") && $skipMake ne "") sl@0: { sl@0: print "Skip makefile\n"; sl@0: next; # skip the makefile stage sl@0: } sl@0: # the command - metabld xxx.mbc command sl@0: my $sysComm = $metabld . " " . $mbc . sl@0: " abld " . $keep . " " . $stage; sl@0: if ($takesTarget) sl@0: { sl@0: $sysComm .= " " . $target; sl@0: } sl@0: my $result = system($sysComm); sl@0: if ($result != 0) sl@0: { sl@0: if ($keep ne "") sl@0: { sl@0: # remember error and keep going sl@0: $error |= $result; sl@0: } sl@0: else sl@0: { sl@0: print "Error '$sysComm' failed: $result\n"; sl@0: exit ($result); sl@0: } sl@0: } sl@0: } sl@0: } sl@0: if ($error) sl@0: { sl@0: print "Errors found during run\n"; sl@0: exit ($error) sl@0: } sl@0: } sl@0: sl@0: sub Usage sl@0: { sl@0: # print usage statement and exit sl@0: print <