Skip to content

Commit

Permalink
SERVER-13686 Do not change the variant directory based on the JS engi…
Browse files Browse the repository at this point in the history
…ne being compiled.

Having the variant directory contain the JS engine name can actually increase
the time required to switch JS engines, because the only code that must compile
when you switch is the new JS engine and a small handful of support files.
  • Loading branch information
amschwerin committed May 1, 2014
1 parent 1b871f8 commit 2c9c7ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ add_option( "ssl" , "Enable SSL" , 0 , True )

# library choices
js_engine_choices = ['v8-3.12', 'v8-3.25', 'none']
add_option( "js-engine", "JavaScript scripting engine implementation", 1, True,
add_option( "js-engine", "JavaScript scripting engine implementation", 1, False,
type='choice', default=js_engine_choices[0], choices=js_engine_choices)
add_option( "libc++", "use libc++ (experimental, requires clang)", 0, True )

Expand Down

0 comments on commit 2c9c7ef

Please sign in to comment.