1. 18 12月, 2016 3 次提交
    • J
      Detect failed server connections in the bootstrap build · e4af938f
      Jared Parsons 提交于
      This change will cause our bootstrap build to fail if a threshold of server connection failures
      occur.  The threshold is chosen a bit arbitrarily as valid failures can occur.  But 15 seems like
      a number to warrant an investigation.  If this produces too many false positives it will be
      adjusted appropriately.
      e4af938f
    • J
      Removed custom bootstrap config files · 4f4907ee
      Jared Parsons 提交于
      The bootstrap configuration files were added when we had static config files checked into the repo.  Now that the config files are auto-generated with correct binding redirects (based off of the current build version) these are unneccesary.
      4f4907ee
    • A
      Fix local function capturing by another local function (#15773) · a7d43ec6
      Andy Gocke 提交于
      Local functions have already implemented their own frame management,
      including frame pointer "capturing" (which is implemented by passing a
      list of frames to the local function by-ref, rather than traditional
      lambda capturing which is implemented by keeping a linked list of frame
      pointers to parent frames).
      
      PR #14736 wired up local function lowering to the lambda frame pointer
      machinery, which is necessary for when a local function is captured by a
      lambda or converted to a delegate, but in the process it diverted
      control flow for pure local function capturing to the frame pointer
      machinery, which can't handle the structure of local function struct
      frame pointers.
      
      This PR resolves the issue by restoring the control flow for local
      functions capturing other local functions with by-ref struct frames.
      
      Fixes #15599
      a7d43ec6
  2. 17 12月, 2016 28 次提交
  3. 16 12月, 2016 9 次提交