Wiki Roadmap Timeline Tickets New Ticket Source Search Help / Guide About Trac Login

Changeset 544:1c7220171d41

Show
Ignore:
Timestamp:
08/24/08 12:25:34 (5 months ago)
Author:
Christian Kamm <kamm incasoftware de>
branch:
default
Message:

Disable boehm gc by default. Use --enable-boehm-gc on premake to enable.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • premake.lua

    r366 r544  
    77 
    88-- use of boehm gc 
    9 if OS == "windows" then 
    10     USE_BOEHM_GC = 0 
    11 else 
    12     addoption("no-boehm", "Disable use of the Boehm GC") 
     9USE_BOEHM_GC = 0 
     10if OS ~= "windows" then 
     11    addoption("enable-boehm-gc", "Enable use of the Boehm GC (broken!)") 
    1312 
    14     if options["no-boehm"] then 
    15         USE_BOEHM_GC = 0 
    16     else 
     13    if options["enable-boehm-gc"] then 
    1714        USE_BOEHM_GC = 1 
    1815    end 
Copyright © 2008, LDC Development Team.