I just tried building the latest with target=release_debug
and got this error:
scons: *** Invalid value for option target: release_debug. Valid values are: ('editor', 'template_release', 'template_debug')
Looking at https://github.com/godotengine/godot/blob/master/SConstruct, it appears that the target flags have indeed been replaced.
opts.Add(EnumVariable("target", "Compilation target", "editor", ("editor", "template_release", "template_debug")))
I'm not familiar enough with SCons or Godot to know what these flags specify. The latest docs still list the old flags at the time of writing this. Does anyone know anywhere documented what the new changes to SConstruct do? Thanks!