Skip to content

Commit

Permalink
Let the make driver handle its own GC path
Browse files Browse the repository at this point in the history
  • Loading branch information
nddrylliog committed Feb 20, 2013
1 parent e5bca62 commit 83eab52
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions source/rock/frontend/drivers/MakeDriver.ooc
Expand Up @@ -78,7 +78,12 @@ MakeDriver: class extends SequenceDriver {
params libcachePath = originalOutPath path params libcachePath = originalOutPath path
params libcache = true params libcache = true
flags := Flags new(null, params) flags := Flags new(null, params)

// we'll handle the GC flags ourselves, thanks
enableGC := params enableGC
params enableGC = false
flags absorb(params) flags absorb(params)
params enableGC = enableGC


for (sourceFolder in sourceFolders) { for (sourceFolder in sourceFolders) {
flags absorb(sourceFolder) flags absorb(sourceFolder)
Expand Down

0 comments on commit 83eab52

Please sign in to comment.