ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/BuildSystem/BuildSetup.pm
Revision: 1.1.2.7.2.2.2.1.2.3
Committed: Tue Oct 31 13:26:29 2000 UTC (24 years, 6 months ago) by williamc
Content type: text/plain
Branch: V0_16branch
CVS Tags: V0_17_1, V0_17_0, V0_16_4
Branch point for: V0_17branch
Changes since 1.1.2.7.2.2.2.1.2.2: +1 -0 lines
Log Message:
Add LD_LIBRARY_PATH : substitution

File Contents

# User Rev Content
1 williamc 1.1.2.1 #
2     #
3     # Interface
4     # ---------
5 williamc 1.1.2.5 # new(toolbox) : A new BuildSetup
6 williamc 1.1.2.1 # BuildSetup(directory,targets) : prepare the ground for a build and build
7     # getclass(directory) : return (Class, ClassDir, BuildFileobject)
8     # associated with directory
9     #
10    
11     package BuildSystem::BuildSetup;
12     require 5.004;
13     use Utilities::Verbose;
14     use Utilities::SCRAMUtils;
15     use BuildSystem::BuildFile;
16     use Utilities::AddDir;
17     @ISA=qw(Utilities::Verbose);
18    
19     sub new {
20     my $class=shift;
21     my $self={};
22     bless $self,$class;
23 williamc 1.1.2.5 $self->{toolbox}=shift;
24 williamc 1.1.2.1 return $self;
25     }
26    
27     sub _generateexternals {
28     my $self=shift;
29     my $outfile=shift;
30    
31     # -- specifiy these files for dependency information
32     my $depfile=$ENV{projconfigdir}."/External_Dependencies";
33 williamc 1.1.2.3
34     # -- get list of dependent files
35     my $datadir=$ENV{LOCALTOP}."/.SCRAM/".$ENV{SCRAM_ARCH};
36     $fdir=FileHandle->new();
37 williamc 1.1.2.7 opendir $fdir, $datadir;
38 williamc 1.1.2.3 my @depfiles=grep !/^\.\.?$/, readdir $fdir;
39     undef $fdir;
40     for (my $i=0; $i<=$#depfiles; $i++ ) {
41     $depfiles[$i]=$datadir."/".$depfiles[$i];
42     }
43    
44 williamc 1.1.2.1 # -- do we need to rebuild?
45 williamc 1.1.2.3 if ( SCRAMUtils::dated($outfile,@depfiles) ) {
46 williamc 1.1.2.1 print "Configuring Local Area\n";
47     # -- open output file
48     my $fout=FileHandle->new();
49     $fout->open(">".$outfile) or die "Unable to open $outfile for output".
50     $!."\n";
51    
52     # -- print out tool/ version info
53     my ($tool,$toolobj,$f,$val,$version);
54 williamc 1.1.2.7.2.1 foreach $tool ( $self->{toolbox}->tools() ) {
55     $version=$self->{toolbox}->defaultversion($tool);
56 williamc 1.1.2.2 # default versions
57 williamc 1.1.2.1 print $fout "ifdef $tool\n".$tool."_V_".$version."=true\nendif\n";
58 williamc 1.1.2.7.2.1 # -- set up the different version -- externals
59     foreach $version ( $self->{toolbox}->versions($tool) ) {
60     $toolobj=$self->{toolbox}->gettool($tool,$version);
61     @deps=$toolobj->getfeature("_externals");
62     foreach $d ( @deps ) {
63 williamc 1.1.2.6 $d=~tr[A-Z][a-z];
64 williamc 1.1.2.2 print $fout "ifdef ".$tool."_V_".$version."\n $d=true\nendif\n";
65 williamc 1.1.2.7.2.1 }
66     # -- tool info
67     print $fout "ifdef ".$tool."_V_".$version."\n";
68     foreach $f ( $toolobj->features() ) {
69 williamc 1.1.2.1 foreach $val ( $toolobj->getfeature($f) ) {
70     print $fout "\t".$f." += ".$val."\n";
71     }
72 williamc 1.1.2.7.2.1 }
73     print $fout "endif\n";
74 williamc 1.1.2.1 }
75     }
76     # some addittional processing of specific vars
77     print $fout 'INCLUDEPATH+=$(addprefix -I,$(INCLUDE))'."\n";
78     print $fout 'LDFLAGS+=$(addprefix -L,$(LIBDIR))'."\n";
79     print $fout 'CPPFLAGS+=$(addprefix -D,$(CPPDEFINES))'."\n";
80     print $fout 'lib+=$(extralib)'."\n";
81     print $fout 'LDLIBS+=$(addprefix -l,$(lib))'."\n";
82     print $fout 'LDLIBS+=$(addprefix -l,$(REQUIRES))'."\n";
83 williamc 1.1.2.7.2.2.2.1.2.3 print $fout 'LD_LIBRARY_PATH:=$(subst $(space),:,$(LD_LIBRARY_PATH))'."\n";
84 williamc 1.1.2.1
85     undef $fout;
86     }
87     }
88    
89     sub BuildSetup {
90     my $self=shift;
91     my $THISDIR=shift;
92     my @Targets=@_;
93     my $DefaultBuildFile="";
94     my $Class="";
95    
96     # -- Create working directory
97     chdir $ENV{LOCALTOP};
98     AddDir::adddir($ENV{INTwork}."/".$THISDIR);
99    
100     my ($Class, $ClassDir, $bf)=$self->getclass($THISDIR);
101     $self->verbose("Class = $Class");
102     $self->verbose("ClassDir = $ClassDir");
103    
104     if ( $bf->ignore() ) {
105     print "Nothing to be done - empty group\n";
106     exit;
107     }
108     shift;
109     $self->_generateexternals($ENV{LOCALTOP}."/".$ENV{INTwork}."/clientmakefile");
110    
111     # set up the workdir variable
112     $ENV{workdir}=$ENV{INTwork}."/".$ClassDir;
113     my $fullworkdir=$ENV{LOCALTOP}."/".$ENV{workdir};
114    
115     # set up projdeps variable
116     my $projectfile=$ENV{projconfigdir}."/External_Dependencies";
117     if ( -e $ENV{LOCALTOP}."/".$projectfile ) {
118     $ENV{projdeps}=$ENV{LOCALTOP}."/".$projectfile;
119     }
120     elsif ( -e $ENV{RELEASETOP}."/".$projectfile ) {
121     $ENV{projectfile}=$ENV{RELEASETOP}."/".$projectfile;
122     }
123     if ( $DefaultBuildFile eq "" ) {
124     # Map Relevant makefile classmakefile directory
125     my $classmakefile=$ENV{projconfigdir}."/".$Class."_makefile.mk";
126     if ( -e $ENV{LOCALTOP}."/".$classmakefile ) {
127     $ENV{classmakefile}=$ENV{LOCALTOP}."/".$classmakefile;
128     }
129     elsif ( -e $ENV{RELEASETOP}."/".$classmakefile ) {
130     $ENV{classmakefile}=$ENV{RELEASETOP}."/".$classmakefile;
131     }
132     else {
133     print "\nUnable to locate $classmakefile\n";
134     print " Not in $ENV{LOCALTOP}\n";
135     print " Not in $ENV{RELEASETOP}\n";
136     exit 1;
137     }
138     $DefaultBuildFile=$ENV{classmakefile}; # TODO - only for override
139     }
140    
141     $ENV{ClassDir}=$ClassDir;
142     $ENV{Class}=$Class;
143     $ENV{DefaultBuildFile}=$DefaultBuildFile;
144    
145     chdir $fullworkdir || die "Unable to enter working directory $!";
146    
147     # Set up some other useful variables fo the Build
148     # list of directories available
149     opendir IDR, "$ENV{LOCALTOP}/$THISDIR";
150     @allfiles= grep !/^\.\.?$/, readdir IDR;
151     foreach $file ( @allfiles ) {
152     if ( -d "$ENV{LOCALTOP}/$THISDIR/$file" ) { # only add if its a directory
153     $ENV{SCRAM_AVAILDIRS}=$ENV{SCRAM_AVAILDIRS}." ".$file;
154     }
155     else {
156     $ENV{SCRAM_AVAILFILES}=$ENV{SCRAM_AVAILFILES}." ".$file;
157     }
158     }
159     $targetnumber=$#Targets;
160     foreach $word ( @Targets ) {
161     if ( $word=~/.*=.*/ ) { # if we have an assignment it cant be a target
162     $targetnumber--;
163     }
164 williamc 1.1.2.7.2.2.2.1.2.1 elsif ( $word=~/^-/ ) {
165     $targetnumber--;
166     }
167 williamc 1.1.2.1 else {
168     $ENV{"MAKETARGET_".$word}=$word;
169     }
170     }
171    
172     # If not specified default to the class name target
173     if ( $targetnumber == -1 ) {
174     push @Targets,$Class;
175     }
176    
177     $ENV{DefaultMakefile}="$ENV{TOOL_HOME}/basics.mk";
178    
179     $SCRAM_GROUPSDIR=$ENV{LOCALTOP}."/".$ENV{projconfigdir}."/groups.mk";
180     if ( -f $SCRAM_GROUPSDIR ) {
181     $ENV{SCRAM_GROUPSDIR}=$SCRAM_GROUPSDIR;
182     }
183    
184     # Do a datestamp check so that make will build files that have changed
185     # rather than just those which are older than their dependencies
186     # The main build here
187     $rv=system("gmake","--no-print-directory","-r","-k","-f","$ENV{DefaultMakefile}","-I$ENV{TOOL_HOME}",datestamp_config);
188     $rv=system("gmake","--no-print-directory","-r","-k","-f","$ENV{DefaultMakefile}","-I$ENV{TOOL_HOME}",datestamp, @Targets);
189     return $rv/256; # return the exit status of gmake
190     }
191    
192     sub getclass {
193     my $self=shift;
194     my $dirname = shift;
195     my $Class="DEFAULT";
196     my $ClassDir="";
197    
198     #return if $dirname eq "";
199     @DIRA=split /\//, $dirname;
200    
201     $thispath=".";
202     # bootstrap from project buildfile if it exists
203     my $bf=BuildSystem::BuildFile->new($self->{toolbox});
204     $bf->CheckBuildFile($ENV{projconfigdir});
205    
206     my @ClassPaths=split /:/, $bf->BlockClassPath();
207     foreach $BClassPath ( @ClassPaths ) {
208     next if ( $BClassPath eq "");
209     push @LoBCA, [ split /\//, $BClassPath ];
210     }
211     for ( $i=0; $i<=$#DIRA; $i++ ) {
212     $thispath=$thispath."/".$DIRA[$i];
213     if ( ($ClassName=$bf->CheckBuildFile($thispath)) ne "" ) {
214     $Class=$ClassName;
215     $ClassDir=$thispath;
216     }
217     # TODO --- Must test against position of last new BlockCaseA
218     # Need to reset array LoBCA to the New BlockPath
219     # - merge and replace options
220     #
221     else {
222     foreach $BlockClassA ( @LoBCA ) {
223     if ( $$BlockClassA[0]=~/^$DIRA[$i]\+/ ) {
224     $$BlockClassA[0]=~s/^$DIRA[$i]//;
225     }
226     if ( $$BlockClassA[0]=~/^\+/ ) {
227     ($Class=$$BlockClassA[0])=~s/^\+//;
228     $ClassDir=$thispath;
229     shift @$BlockClassA;
230     }
231     else {
232     @$BlockClassA=();
233     }
234     }
235     }
236     }
237     $ClassDir=~s/^\.\///;
238     return ( $Class, $ClassDir, $bf);
239     }