Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ziglang/zig
base: f1072d0d9fba
Choose a base ref
...
head repository: ziglang/zig
compare: 9e234d420872
Choose a head ref
  • 7 commits
  • 29 files changed
  • 1 contributor

Commits on Oct 21, 2017

  1. self hosted zig: print usage

    andrewrk committed Oct 21, 2017
    Configuration menu
    Copy the full SHA
    92751d5 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2017

  1. wip self hosted code

    andrewrk committed Oct 24, 2017
    Configuration menu
    Copy the full SHA
    4f4da3c View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2017

  1. Configuration menu
    Copy the full SHA
    4c306af View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    540bac0 View commit details
    Browse the repository at this point in the history
  3. delete -municode command line argument

    The solution to this is to always have it on and only
    use the 'W' versions of respective windows APIs.
    
    See the issue for this.
    andrewrk committed Oct 27, 2017
    Configuration menu
    Copy the full SHA
    1a414c7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7a96aca View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2017

  1. breaking change to std.io API

     * Merge io.InStream and io.OutStream into io.File
     * Introduce io.OutStream and io.InStream interfaces
       - io.File implements both of these
     * Move mem.IncrementingAllocator to heap.IncrementingAllocator
    
    Instead of:
    
    ```
    %return std.io.stderr.printf("hello\n");
    ```
    
    now do:
    
    ```
    std.debug.warn("hello\n");
    ```
    
    To print to stdout, see `io.getStdOut()`.
    
     * Rename std.ArrayList.resizeDown to std.ArrayList.shrink.
    andrewrk committed Oct 31, 2017
    Configuration menu
    Copy the full SHA
    9e234d4 View commit details
    Browse the repository at this point in the history