mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-20 14:53:14 +01:00
Automated merge with http://hg.dsource.org/projects/llvmdc
This commit is contained in:
11
premake.lua
11
premake.lua
@@ -6,14 +6,11 @@ project.name = llvmdc
|
||||
OPAQUE_VTBLS = 1
|
||||
|
||||
-- use of boehm gc
|
||||
if OS == "windows" then
|
||||
USE_BOEHM_GC = 0
|
||||
else
|
||||
addoption("no-boehm", "Disable use of the Boehm GC")
|
||||
USE_BOEHM_GC = 0
|
||||
if OS ~= "windows" then
|
||||
addoption("enable-boehm-gc", "Enable use of the Boehm GC (broken!)")
|
||||
|
||||
if options["no-boehm"] then
|
||||
USE_BOEHM_GC = 0
|
||||
else
|
||||
if options["enable-boehm-gc"] then
|
||||
USE_BOEHM_GC = 1
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user