IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18863


Ignore:
Timestamp:
Aug 1, 2008, 2:42:24 PM (18 years ago)
Author:
eugene
Message:

adding profile flags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psconfig/psbuild

    r18315 r18863  
    88$rebuild = 0;
    99$optimize = 0;
     10$profile = 0;
    1011$developer = 0;
    1112$start = "";
     
    5455    if ($ARGV[0] eq "-optimize") {
    5556        $optimize = 1;
     57        shift; next;
     58    }
     59    if ($ARGV[0] eq "-profile") {
     60        $profile = 1;
    5661        shift; next;
    5762    }
     
    208213    $psopts = "";
    209214    if ($optimize) { $psopts = "$psopts --enable-optimize"; }
     215    if ($profile)  { $psopts = "$psopts --enable-profiler"; }
    210216
    211217    $homedir = `pwd`; chomp $homedir;
Note: See TracChangeset for help on using the changeset viewer.