IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 16968


Ignore:
Timestamp:
Mar 13, 2008, 8:45:08 AM (18 years ago)
Author:
eugene
Message:

add option flag for tcmalloc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/configure.tcsh

    r16882 r16968  
    1111set pedantic = 0
    1212set memcheck = 0
     13set use_tcmalloc = 0
    1314
    1415set prefix  = ""
     
    5354   set memcheck = 1
    5455   breaksw;
     56  case --use-tcmalloc
     57   set use_tcmalloc = 1
     58   breaksw;
    5559  case --pedantic
    5660   set pedantic = 1
     
    174178
    175179set optlibs    = ""
    176 set optlibs    = "$optlibs mysqlclient tcmalloc"
     180set optlibs    = "$optlibs mysqlclient"
     181if ($use_tcmalloc) set optlibs = "$optlibs tcmalloc"
    177182
    178183set sysincpath = "/usr/include /usr/local/include /usr/X11R6/include"
Note: See TracChangeset for help on using the changeset viewer.