@@ -77,15 +77,6 @@ sub pre_workspace {
7777 }
7878 }
7979
80- # TODO(sonndinh):
81- # Some other information is specific to ACE such as its root directory,
82- # its compilation and linking requirements (C++ version, flags, etc).
83- # These can be put in some form of input to MPC instead of hardcoded here.
84- # We can use environment variables and command-line options:
85- # --expand_vars, -use_env. Or can use the -relative command-line option.
86- # The first option requires setting environment variables.
87- # The second option requires passing parameters to the -relative option.
88-
8980 # # Try to read the INTEGRITY installation directory and BSP name from environment.
9081 # # Default values are the installation directory on Windows and the BSP name
9182 # # for the simulator for PowerPC architecture.
@@ -200,27 +191,15 @@ sub mix_settings {
200191 $type = $integrity ; # [INTEGRITY Application]
201192 }
202193 $mix .= " \t\t $type$crlf " ;
203- # $mix .= "\t\t$type$crlf" .
204- # "\t-object_dir=" . $self->mpc_dirname($project) .
205- # '/.obj' . $crlf;
206194 }
207195 elsif (/ ^\s *(\[ Shared Object\] )\s *$ / ) {
208196 $mix .= " \t\t $1 $crlf " ;
209- # $mix .= "\t\t$1$crlf" .
210- # "\t-pic$crlf" .
211- # "\t-object_dir=" . $self->mpc_dirname($project) .
212- # '/.shobj' . $crlf;
213197 }
214198 elsif ($integrity_project && / ^(.*\. bsp)\s / ) {
215199 push (@integ_bsps , $1 );
216200 }
217201 else {
218202 if (/ ^\s *\- ((\w )\w *)/ ) {
219- # # Save the required options into the mixed project string
220- if (defined $directives {$2 } || defined $directives {$1 }) {
221- # $mix .= $_;
222- }
223-
224203 # # If this is an integrity project, we need to find out
225204 # # what the output file will be for the integrate file.
226205 if (defined $int_proj && / ^\s *\- o\s +(.*)\s $ / ) {
0 commit comments