Skip to content
Snippets Groups Projects
  1. Dec 12, 2015
  2. Dec 11, 2015
    • Paul Sokolovsky's avatar
      tools: Upgrade upip to 0.6.3. · bb7f5b55
      Paul Sokolovsky authored
      Updated for _os -> uos builtin module rename.
      bb7f5b55
    • Paul Sokolovsky's avatar
    • stijn's avatar
      msvc: Use different output directories depending on build type · 967ceba5
      stijn authored
      This allows multiple versions (e.g. Debug/Release, x86/x64) of micropython.exe
      to co-exist instead and also solves potential problems where msbuild does not
      completely rebuild the output and/or pdb files when switching between builds,
      which in turn can cause linker errors in dependent projects.
      
      By default exe/map/... files go in windows/build/$(Configuration)$(Platform)
      
      After each build micropython.exe is still copied from the above directory to
      the windows directory though, as that is consistent with the other ports and
      the test runner by default uses that location as well.
      
      Also rename env.props -> path.props which is a clearer name,
      and add ample documentation in the affected build files.
      
      (also see discussion in #1538)
      967ceba5
    • Paul Sokolovsky's avatar
      unix/moduselect: Implement "one-shot" flag for poll.poll(). · c1481bb0
      Paul Sokolovsky authored
      After an I/O event is triggered for fd, event flags are automatically reset,
      so no further events are reported until new event flags are set. This is
      an optimization for uasyncio, required to account for coroutine semantics:
      each coroutine issues explicit read/write async call, and once that trigger,
      no events should be reported to coroutine, unless it again explicitly
      requests it. One-shot mode saves one linear scan over the poll array.
      c1481bb0
  3. Dec 10, 2015
  4. Dec 09, 2015
  5. Dec 08, 2015
  6. Dec 07, 2015
  7. Dec 06, 2015
Loading