cargo, make me a project

Overview

cargo-generate

cargo, make me a project

Build status crates.io dependency status

cargo-generate is a developer tool to help you get up and running quickly with a new Rust project by leveraging a pre-existing git repository as a template.

Here's an example of using cargo-generate with this template: demo.gif

Installation

Using cargo with system's OpenSSL

cargo install cargo-generate

See the openssl-sys crate readme on how to obtain the OpenSSL library for your system. Alternatively, use the vendored-openssl flag if you do not want to install OpenSSL.

Using cargo with vendored OpenSSL

NOTE: vendored-openssl requires the following packages to be installed:

  • libssl-dev
  • gcc
  • m4
  • ca-certificates
  • make
  • perl
cargo install cargo-generate --features vendored-openssl

Manual Install:

  1. Download the binary tarball for your platform from our releases page.

  2. Unpack the tarball and place the binary cargo-generate in ~/.cargo/bin/

Usage

Standard usage is to pass a --git flag to cargo generate or short cargo gen. This will prompt you to enter the name of your project.

NOTE: cargo gen requires an cargo alias configuration

cargo generate --git https://github.com/githubusername/mytemplate.git

You can also pass the name of your project to the tool using the --name or -n flag:

cargo generate --git https://github.com/githubusername/mytemplate.git --name myproject

If the git repository contains multiple templates, the specific subfolder in the git repository may be specified like this:

cargo generate --git https://github.com/githubusername/mytemplate.git <relative-template-path>

NOTE: The specified relative-template-path will be used as the actual template root, whether or not this is actually true!

NOTE: When using the subfolder feature, cargo-generate will search for

git over ssh

New in version 0.7.0 is the support for both public and private and ssh git remote urls. For example:

cargo generate --git [email protected]:rustwasm/wasm-pack-template.git --name mywasm

leads to the same result as:

cargo generate --git https://github.com/rustwasm/wasm-pack-template.git --name mywasm

as well as:

cargo generate --git rustwasm/wasm-pack-template --name mywasm

NOTE: you can pass a custom ssh identity file with via -i | --identity like -i ~/.ssh/id_rsa_other

http(s) proxy

New in version 0.7.0 is automatic proxy usage. So, if http(s)_PROXY env variables are provided, they will be used for cloning a http(s) template repository.

Favorites

Favorite templates can be defined in a config file, that by default is placed at $CARGO_HOME/cargo-generate. To specify an alternative configuration file, use the --config <config-file> option.

Each favorite template is specified in its own section, e.g.:

[favorites.demo]
description = "<optional description, visible with --list-favorites>"
git = "https://github.com/ashleygwilliams/wasm-pack-template"
branch = "<optional-branch>"
subfolder = "<optional-subfolder>"

Values may be overridden using the CLI arguments of the same names (e.g. --subfolder for the subfolder value).

When favorites are available, they can be generated simply by invoking:

cargo gen <favorite>

or slightly more involved:

cargo generate demo --branch mybranch --name expanded_demo --subfolder myfolder

NOTE: when <favorite> is not defined in the config file, it is interpreted as a git repo like as if --git <favorite>

Templates

Templates are git repositories whose files contain placeholders. The current supported placeholders are:

  • {{authors}}

    this will be filled in by a function borrowed from Cargo's source code, that determines your information from Cargo's configuration.

  • {{project-name}}

    this is supplied by either passing the --name flag to the command or working with the interactive CLI to supply a name.

  • {{crate_name}}

    the snake_case_version of project-name

  • {{crate_type}}

    this is supplied by either passing the --bin or --lib flag to the command line, contains either bin or lib, --bin is the default

  • {{os-arch}}

    contains the current operating system and architecture ex: linux-x86_64

Additionally, all filters and tags of the liquid template language are supported. For more information, check out the Liquid Documentation on Tags and Filters.

You can use those placeholders in the file and directory names of the generated project.
For example, for a project named awesome, the filename {{project_name}}/{{project_name}}.rs will be transformed to awesome/awesome.rs during generation. Only files that are not listed in the exclude settings will be templated.

NOTE: invalid characters for a filename or directory name will be sanitized after template substitution. Invalid is e.g. / or \.

You can also add a .genignore file to your template. The files listed in the .genignore file will be removed from the local machine when cargo-generate is run on the end user's machine. The .genignore file is always ignored, so there is no need to list it in the .genignore file.

NOTE:

Here's a list of currently available templates. If you have a great template that you'd like to feature here, please file an issue or a PR!

Example for --bin and --lib

A template could be prepared in a way to act as a binary or a library. For example the Cargo.toml might look like:

[package]
# the usual stuff

[dependencies]
{% if crate_type == "bin" %}
structopt = "0.3.21"
{% endif %}
# other general dependencies

{% if crate_type == "bin" %}
[[bin]]
path = "src/main.rs"
name = "{{crate_name}}-cli"
{% endif %}

Now a user of this template could decide weather they want the binary version by passing --bin or use only the library version by passing --lib as a command line argument.

Template defined placeholders

Sometimes templates need to make decisions. For example one might want to conditionally include some code or not. Another use case might be that the user of a template should be able to choose out of provided options in an interactive way. Also, it might be helpful to offer a reasonable default value that the user just simply can use.

Since version 0.6.0 it is possible to use placeholders in a cargo-generate.toml that is in the root folder of a template.
Here an example:

[placeholders.hypervisor]
type = "string"
prompt = "What hypervisor to use?"
choices = ["uhyve", "qemu"]
default = "qemu"

[placeholders.network_enabled]
type = "bool"
prompt = "Want to enable network?"
default = true

As you can see the placeholders configuration section accepts a table of keywords that will become the placeholder name.

In this example the placeholder hypervisor and network_enabled will become template variables and can be used like this:

{% if network_enabled %}
use std::net::TcpListener;

fn main() {
    let listener = TcpListener::bind("0.0.0.0:8080").unwrap();
    loop {
        let (conn, addr) = listener.accept().unwrap();
        println!("Incoming Connection from {}", addr);
        std::io::copy(&mut &conn, &mut &conn).unwrap();
    }
}
{% else %}
fn main() {
    println!("Hello Rusty Hermit 🦀");
}
{% endif %}

Tip: similar to dependencies in the Cargo.toml file you can also list them as one liners:

[placeholders]
hypervisor = { type = "string", prompt = "What hypervisor to use?", choices = ["uhyve", "qemu"], default = "qemu" }
network_enabled = { type = "bool", prompt = "Want to enable network?", default = true }

prompt property

The prompt will be used to display a question / message for this very placeholder on the interactive dialog when using the template.

🤷  What hypervisor to use? [uhyve, qemu] [default: qemu]:

type property

A placeholder can be of type string or bool. Boolean types are usually helpful for conditionally behaviour in templates.

choices property (optional)

A placeholder can come with a list of choices that the user can choose from. It's further also validated at the time when a user generates a project from a template.

choices = ["uhyve", "qemu"]

default property (optional)

A default property must mach the type (string | bool) and is optional. A default should be provided, to ease the interactive process. As usual the user could press and the default value would simply be taken, it safes time and mental load.

default = 'qemu'

regex property (optional)

A regex property is a string, that can be used to enforce a certain validation rule. The input dialog will keep repeating until the user entered something that is allowed by this regex.

Placeholder Examples

An example with a regex that allows only numbers

[placeholders]
phone_number = { type = "string", prompt = "What's your phone number?", regex = "[0-9]+" }

Default values for placeholders from a file

For automation purposes the user of the template may provide provide a file containing the values for the keys in the template by using the --template-values-file flag.

The file should be a toml file containing the following (for the example template provided above):

[values]
hypervisor = "qemu"
network_enabled = true

Include / Exclude

Templates support a cargo-generate.toml, with a "template" section that allows you to configure the files that will be processed by cargo-generate. The behavior mirrors Cargo's Include / Exclude functionality, which is documented here. If you are using placeholders in a file name, and also wish to use placeholders in the contents of that file, you should setup your globs to match on the pre-rename filename.

[template]
include = ["Cargo.toml"]
# include and exclude are exclusive, if both appear we will use include
exclude = ["*.c"]

The cargo-generate.toml file should be placed in the root of the template. If using the subfolder feature, the root is the subfolder inside the repository, though cargo-generate will look for the file in all parent folders until it reaches the repository root.

Cargo gen - alias

cargo gen requires an cargo alias to be configured in your $HOME/.cargo/config like this:

[alias]
gen = "generate"

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. If you want to contribute to cargo-generate, please read our CONTRIBUTING notes.

Comments
  • Unable to generate new project (ssh issue?)

    Unable to generate new project (ssh issue?)

    When trying to generate a new project (on Windows 10, using WSL shell), cargo-generate errors out while trying to generate a project:

    playground $ cargo generate --git https://github.com/cloudflare/worker-template
     Project Name: Testing
     Renaming project called `Testing` to `testing`...
     Creating project called `testing`...
     Git Error: failed to clone into: /mnt/c/Users/Kristian Freeman/src/playground/testing6aQq65
    

    (This issue was moved from https://github.com/cloudflare/wrangler/issues/322)

    opened by codewithkristian 36
  • [RFC] generating partial templates into an existing project

    [RFC] generating partial templates into an existing project

    As a Developer I want to generate a partial into an existing project So that I can apply feature by feature to an existing project

    An example

    Let's assume I've started off by a project template a while ago, the project meanwhile grew. Not I need the feature of a github workflow build pipeline in my existing project.

    Let's assume further I have already a project template or a gist of my personal default github workflow pipeline that contains project specific placeholders, like some boolean flags to support building a binary and a library building out of one file. Also it may contain the crate / binary name variables.

    When I run:

    cargo generate --partial my-github-handle/rust-build-pipeline .github/workflows/build.yml
    

    I would trigger basically the same project as using cargo-generate the usual way. Just that:

    • I can checkout a subset (here .github/workflows/build.yml)
    • of a given template repository (here my-github-handle/rust-build-pipeline)
    • into my $CWD (here it would expand to $CWD/.github/workflows/build.yml)
    • optionally I could specify a different target directory (for example --into src/my/)

    Of course an interactive template rendering is happening as usual.

    Other Use-Cases

    the above described behaviour would also enable a some more use-cases. For instance one could build a composable project library of partials that can be applied step by step. All those components could live in one template repository in purpose specific folders.

    Type: RFC 
    opened by sassman 22
  • Introduce features, a way to include files conditionally

    Introduce features, a way to include files conditionally

    It would be really cool if cargo-generate would have something like cargo's features, where a user could select to include certain configuration/setup files of a template if he wants to.

    An example: My template contains GitHub Actions workflow files for creating releases on tag pushes on master as well as creating documentation on the gh-pages branch when a push to master happens. The template would, by default, include everything. But if a user doesn't want the docs workflow, he could run something similar to this:

    cargo-generate --git <url> --no-docs-workflow
    cargo generate --git <url> --no-default-features --features docs-workflow
    

    The first is a somewhat nicer syntax for this use-case I think. The second one would be the same as the one from cargo.

    I imagine something like this inside the configuration file:

    [[features]]
    name = "docs-workflow"
    include = [".github/workflows/docs.yml"]
    
    [[features]]
    name = "bors"
    include = ["bors.toml"]
    

    This comes really handy in situations where templates offer a lot of pre-defined configuration files with sane and good default values for various services (GitHub Actions, bors etc). That way, a user can just pick what he wants and be done.

    Feedback is appreciated!

    Edit: Additionally, this could be expanded upon composing features into "super-features". For example:

    [[features]]
    name = "workflows"
    uses = ["docs-workflow", "publish-workflow", "pr-workflow"]
    

    This would introduce more code to maintain, as something like cyclic dependency checks have to be performed on the features before running them.

    Type: Enhancement Status: Pending 
    opened by mainrs 18
  • Add option to function like `cargo init`

    Add option to function like `cargo init`

    Cargo provides two commands for creating a new Rust project: cargo new and cargo init. The former creates a new subdirectory for the project and a SCM repo. The latter assumes the user has already created the project directory and maybe even the SCM repo and only adds the rest.

    cargo generate works like cargo new, but sometimes the user has already created a Git repo and cloned it so they don't want to have to jump through extra hoops to get everything squared away.

    git clone git@...:myproject.git
    cd myproject.git
    cargo generate --git git@...:mytemplate.git
    ls
    # :scream: Sacrébleu, mise en abyme! (and not Inception as most people say but that's an issue for a metaphysical repo)
    mv myproject/* .
    ls
    ls -a
    # :dizzy_face: why doesn't * pick up dot files?
    mv myproject/.* .
    ls -a
    git status
    # :skull: I overwrote the local repo
    
    opened by punkstarman 18
  • cargo generate using ssh results in: Git Error: Failed to authenticate SSH session: ; class=Ssh (23)

    cargo generate using ssh results in: Git Error: Failed to authenticate SSH session: ; class=Ssh (23)

    Hello! I'm currently struggling getting this tool to work properly with ssh. Generating from github using https works fine. I have no issues using git by itselve, but for some obscure reason cargo generate does not play nicely with it. Here is the error I am presented with after trying to clone a simple template of mine:

    cargo generate [email protected]:VirtualNonsense/rust_bluepill_minimal_template.git
     Using application config: C:\Users\VirtualNonsense\.cargo\cargo-generate.toml
     Using ssh-identity from application config: $HOME/.ssh/id_rsa
     Favorite [email protected]:VirtualNonsense/rust_bluepill_minimal_template.git not found in config, using it as a git repo url
     Using private key: `%userprofile%\.ssh\id_rsa` for git-ssh checkout
    Error:  Git Error: Failed to authenticate SSH session: ; class=Ssh (23)
    

    I've seen that there seems to be an issue with passphrase protected keys so I made sure mine does not have one. I also tied an ed25519 key but it did not change the result as well. I feel like I'm missing something obvious and would appreciate some guidance😅

    My system: Win11: Version 21H2 rust: rustup 1.24.3 cargo 1.61.0 rustc 1.61.0 cargo-generate 0.14.0

    Type: Bug Status: In Progress 
    opened by VirtualNonsense 15
  • linking error with `x86_64-w64-mingw32-gcc` on windows

    linking error with `x86_64-w64-mingw32-gcc` on windows

    error: linking with D:/tools/msys2/mingw64/bin/gcc.exe failed: exit code: 1 | = note: "D:/tools/msys2/mingw64/bin/gcc.exe" "-Wl,--enable-long-section-names" "-fno-use-linker-plugin" "-Wl,--nxcompat" "-nostdlib" "-m64" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib\crt2.o" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib\rsbegin.o" "-L" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.0.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.1.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.10.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.11.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.12.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.13.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.14.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.15.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.2.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.3.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.4.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.5.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.6.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.7.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.8.rcgu.o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.cargo_generate.elpum516-cgu.9.rcgu.o" "-o" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.exe" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\cargo_generate-322a0567e1bd1f3c.tbu5d0tql07i4k5.rcgu.o" "-Wl,--gc-sections" "-nodefaultlibs" "-L" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps" "-L" "D:\tools\rust\cargo\registry\src\mirrors.ustc.edu.cn-61ef6e0cd06fb9b8\winapi-x86_64-pc-windows-gnu-0.4.0\lib" "-L" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\build\curl-sys-af3af859703ade0c\out\build" "-L" "D:/tools/msys2/mingw64/lib" "-L" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\build\miniz-sys-dda096bda52d57c7\out" "-L" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\build\libgit2-sys-7ec412b9f75c2d14\out\build" "-L" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\build\libssh2-sys-6202ae920404ab1e\out\build" "-L" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib" "-Wl,-Bstatic" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libliquid-a856f37089028c34.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libitertools-044a3c7ebe57eb15.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libchrono-d43e036e99ab9175.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libnum_integer-41afb4b9a3d66492.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libnum_traits-5ea7273248b77cba.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libtime-af67cc2a0f23cb81.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libindicatif-1a09bf93340bb565.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libregex-16df94e096ada1bc.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libregex_syntax-cbfa75d3e32eb6bd.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libheck-b620118086972baa.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libunicode_segmentation-d500c0645fa2299d.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libdialoguer-ca8db0fb498caaf2.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libtempfile-f87c0004fa05a90a.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\librand-9eee9644ba90629f.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libconsole-fa6e307b89bdfcf5.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libclicolors_control-640d82fe253a46dc.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\liblazy_static-e105ff82f801dd65.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libkernel32-a3ba73322d2bffcd.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcargo-ecf7d878e1780958.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libmiow-41461ad2c2ba30c9.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcrypto_hash-f68db54db9c040a7.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libtoml-6cf61ba61cbeed68.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libtempfile-4617355f93652106.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libremove_dir_all-02b14a4798917bed.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libtar-b6a368df1588c541.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libshell_escape-9bebd1421d960bf2.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libserde_ignored-f0c82ba94e579cf0.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libsemver-ff9e4cc953084670.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libsemver_parser-fe72b8a3198cc28f.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\librustfix-b336a80bbca59846.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\liblazycell-9aa3a43a522cd938.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libjobserver-a26603ddafed40e9.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\librand-d37858d4f5db9b71.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libignore-08862777c9bcae2f.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libwalkdir-52a42bf873692c95.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libsame_file-6a24195975822b76.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libglobset-ab760efa58c17c6e.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libfnv-37c543951331ebc5.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcrossbeam_channel-4e36a95d7b5aa8fa.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libparking_lot-619272693a9d98e1.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libparking_lot_core-4e7e83d7bbc99257.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libsmallvec-19521330d8799c32.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libunreachable-b51fa06ab19701d8.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libvoid-02fca20cb3b16c21.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\liblock_api-91acaf34fae40dcc.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libowning_ref-5e62befec956c970.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libstable_deref_trait-8a22f15585242799.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\librand-d98c24f0c2c91ae7.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\librand_core-9cf4d34506d01a3b.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\librand_core-3d5bd0e6e5311427.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcrossbeam_epoch-8d7910f2e9f47b43.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcrossbeam_utils-c81e0308eb92971a.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libhome-d1e6582e4dc40b76.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libhex-b69485eeb985172e.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libgit2-0184e0fd091a7fc6.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\liblibgit2_sys-97ef8d96dcadc46d.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\liblibssh2_sys-e2490ead6536ff5e.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libfs2-2194860d9b309035.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libflate2-bfa78e9d6b0a47e9.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libminiz_sys-40e3708393e1da5f.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libflate2_crc-dbf55099c16d34c8.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libfiletime-0402e4efef9ada0f.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcrossbeam_utils-fa509388618477d7.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcrates_io-33419572fb832d0d.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\liburl-afb10d27d9fd3016.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libpercent_encoding-a355114de0e6db22.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libidna-edec281c5a5e3686.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libunicode_normalization-dcd5297c77dc97ec.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libunicode_bidi-593623e2e567e29f.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libmatches-85ff47ecd69a35f2.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libserde_json-80842ccfd836dcb4.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libryu-8fa185226987cfab.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libitoa-81c665a18bc43567.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcurl-a6500983cf99de10.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libwinapi-738ad2b00ad044db.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libsocket2-88c097ce076aa3cd.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcurl_sys-19f68c0f0debfa8d.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\liblibz_sys-5123f541428d776f.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libquicli-8eeddace8e77fe2c.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libglob-bf303a1735075306.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\librayon-132ecb1a286ba1c1.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libeither-7e0e6f3e02880cd6.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\librayon_core-f4e2ca328e9c0f70.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libnum_cpus-17343f8950ed4847.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcrossbeam_deque-5558c69bd7e22f8e.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcrossbeam_epoch-5e97f64e96407ced.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libscopeguard-80802f48d94e9794.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libmemoffset-c3b9a111149383d5.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcrossbeam_utils-152a39b5da18ce6e.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libarrayvec-11bd89e19e0497a5.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libnodrop-c1bbb322ea60c1b4.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libclap_verbosity_flag-e6a05ba413540d28.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libenv_logger-db75c6de78a92ee4.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libregex-41134fd1502a05e9.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libutf8_ranges-4a04e3147b96465f.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libregex_syntax-585b00813f8c6df4.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libucd_util-2ff0197eaf504c81.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libthread_local-b9f3c54fb4fc76db.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\liblazy_static-f730d61e0410bfdb.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libaho_corasick-f810524dd139a7a7.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libmemchr-7f0582c0b21d58ec.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\liblibc-de18764d00aa515e.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libhumantime-ccc4141ccbd56251.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libquick_error-449b2c3229e442bb.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libtermcolor-87761f4f28216508.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libwincolor-333c52afa5e29098.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libwinapi_util-d9138a3eb1d4e87b.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\liblog-f0855e438ecbf127.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libfailure-bf8efacbfcc6a90e.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libbacktrace-12ae1d462c6db669.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\librustc_demangle-6c1e6e60d6861f8a.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcfg_if-187834b448f19fc3.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libstructopt-cf9dcf4fc407380a.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libclap-de734b35c6a8c58b.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libvec_map-949606e25430044e.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libtextwrap-f8640948c8c6d1ed.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libunicode_width-1e6dd0e0606990cb.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libstrsim-b9b06c3438835334.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libbitflags-41caf2aeec7d7598.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libatty-3bd152b1e4938760.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libwinapi-9766c4bc1e4292bf.rlib" "C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libserde-6fa5d4a6d6a41b7b.rlib" "-Wl,--start-group" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib\libstd-e269899800b7f5ee.rlib" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib\libpanic_unwind-420daa7077b13e1b.rlib" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib\libunwind-d5a63f54c467a91c.rlib" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib\liblibc-1e5b567790a6623b.rlib" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib\liballoc_system-d3d36d79ddf591f9.rlib" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib\liballoc-07cf62366d6c96b4.rlib" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib\libcore-2a100266e0223f8b.rlib" "-Wl,--end-group" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib\libcompiler_builtins-05731d1ceb996d14.rlib" "-Wl,-Bdynamic" "-lkernel32" "-lwinhttp" "-lrpcrt4" "-lole32" "-lcrypt32" "-lbcrypt" "-lcrypt32" "-luser32" "-lws2_32" "-lcrypt32" "-lz" "-lwinapi_advapi32" "-lwinapi_bcrypt" "-lwinapi_credui" "-lwinapi_crypt32" "-lwinapi_cryptnet" "-lwinapi_dbghelp" "-lwinapi_fwpuclnt" "-lwinapi_gdi32" "-lwinapi_kernel32" "-lwinapi_msimg32" "-lwinapi_ncrypt" "-lwinapi_ntdll" "-lwinapi_opengl32" "-lwinapi_psapi" "-lwinapi_secur32" "-lwinapi_setupapi" "-lwinapi_synchronization" "-lwinapi_user32" "-lwinapi_userenv" "-lwinapi_winspool" "-lwinapi_ws2_32" "-ladvapi32" "-lws2_32" "-luserenv" "-lshell32" "-Wl,-Bstatic" "-lgcc_eh" "-lpthread" "-Wl,-Bdynamic" "-lmingwex" "-lmingw32" "-lgcc" "-lmsvcrt" "-lmsvcrt" "-luser32" "-lkernel32" "D:\tools\rust\rustup\toolchains\stable-x86_64-pc-windows-gnu\lib\rustlib\x86_64-pc-windows-gnu\lib\rsend.o" = note: C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcurl_sys-19f68c0f0debfa8d.rlib(url.o):url.c:(.text$Curl_init_userdefined+0x10): undefined reference to __imp___acrt_iob_func' C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcurl_sys-19f68c0f0debfa8d.rlib(cookie.o):cookie.c:(.text$Curl_cookie_init+0x28e): undefined reference to __imp___acrt_iob_func' C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcurl_sys-19f68c0f0debfa8d.rlib(cookie.o):cookie.c:(.text$Curl_flush_cookies+0x24c): undefined reference to __imp___acrt_iob_func' C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcurl_sys-19f68c0f0debfa8d.rlib(formdata.o):formdata.c:(.text$Curl_getformdata.part.0+0x266): undefined reference to __imp___acrt_iob_func' C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcurl_sys-19f68c0f0debfa8d.rlib(setopt.o):setopt.c:(.text$Curl_vsetopt+0x316c): undefined reference to __imp___acrt_iob_func' C:\Users\lws\AppData\Local\Temp\cargo-installFh6koS\release\deps\libcurl_sys-19f68c0f0debfa8d.rlib(mprintf.o):mprintf.c:(.text$curl_mprintf+0x29): more undefined references to __imp___acrt_iob_func' follow collect2.exe: error: ld returned 1 exit status

    opened by meteor-lsw 14
  • Refactor of handling favorites, git and path

    Refactor of handling favorites, git and path

    Hi,

    I wanted to implement #522 but I found it difficult. When I dig into code I found that some of it should in my opinion be refactored:

    The first problem is with --git flag. If you set it to local path it will act differently than git clone what is a little bit unexpected. This is because src/git.rs try to check if the value in --git is not a local path and if it's it will just copy it. git2 already handle local path so there is no necessary of additional code.

    The second problem is with favorite arg. If there is no favorite configuration in config file. cargo-generate will use favorite arg as the --git flag. In my opinion we should here distinguish if this is a git or path and handle it differently.

    I would also expect that:

    cargo generate --git <repository> <template_name>
    

    and

    git clone <repository> <local_path>
    cargo generate --path <local_path> <template_name>
    

    work the same. But now when --path is used it just ignore subfolder arg (and ask about witch template is should actually use)

    https://github.com/cargo-generate/cargo-generate/blob/d95863bd5f05471c0c529a129f584af0b73f9857/src/lib.rs#L263-L272

    I would suggest this approach:

    1. [ ] --git is handled as much as possible by git2 library
    2. [ ] --path is used when we want to plain copy of some location.
    3. [ ] favorite should be decoded in this order
      1. look for defined favorites in configuration and use one if name match
      2. if there is a --branch flag used consider favorite arg as --git
      3. if favorite arg starts with abbreviation consider it as --git
      4. try to use favorite arg as --path (check if such path exist, is dir etc.)
      5. fallback to --git

    This changes are against 0.12.0 ( I made them some day ago but decided to publish today) and at this moment are just an idea of refactoring if you find it right I will continue to work on it. The current changes also contains additional level of credentials through ssh-agent.

    opened by xoac 13
  • alpine musl ssl package leads to seg fault

    alpine musl ssl package leads to seg fault

    Unable to load /usr/local/cargo/cargo-generate.toml?

    uname -a             
    Linux  5.10.0-8mx-amd64 #1 SMP Debian 5.10.46-4~mx19+1 x86_64 Linux
    

    Error

    cargo generate --git https://github.com/rustwasm/wasm-pack-template.git --name wasm-game-of-life
     Unable to load config file: /usr/local/cargo/cargo-generate.toml
    
    cargo-generate --version      
    cargo-generate 0.11.0
    
    opened by byteshiva 13
  • feat: include files conditionally

    feat: include files conditionally

    Allow special syntax in cargo-generate.toml in order to allow files to be included/excluded/ignored based on variables.

    Also allow placeholders to be included conditionally.

    features feature not needed, as this is more flexible, and can be coupled with the --template-values-file or --define options in order to create predefined sets of variables.

    Closes #230

    opened by taurr 13
  • `cargo install cargo-generate` build failed on Mac OS X.

    `cargo install cargo-generate` build failed on Mac OS X.

       Compiling ignore v0.4.6
    error: failed to run custom build command for `libgit2-sys v0.7.11`
    process didn't exit successfully: `/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-9429d010a7cc8a6b/build-script-build` (exit code: 101)
    --- stdout
    libgit2/include/git2.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2.h
    libgit2/include/git2/signature.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/signature.h
    libgit2/include/git2/oid.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/oid.h
    libgit2/include/git2/index.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/index.h
    libgit2/include/git2/ignore.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/ignore.h
    libgit2/include/git2/inttypes.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/inttypes.h
    libgit2/include/git2/attr.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/attr.h
    libgit2/include/git2/blame.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/blame.h
    libgit2/include/git2/oidarray.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/oidarray.h
    libgit2/include/git2/pack.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/pack.h
    libgit2/include/git2/revert.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/revert.h
    libgit2/include/git2/version.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/version.h
    libgit2/include/git2/odb.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/odb.h
    libgit2/include/git2/status.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/status.h
    libgit2/include/git2/net.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/net.h
    libgit2/include/git2/tag.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/tag.h
    libgit2/include/git2/annotated_commit.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/annotated_commit.h
    libgit2/include/git2/config.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/config.h
    libgit2/include/git2/branch.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/branch.h
    libgit2/include/git2/types.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/types.h
    libgit2/include/git2/repository.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/repository.h
    libgit2/include/git2/clone.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/clone.h
    libgit2/include/git2/global.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/global.h
    libgit2/include/git2/blob.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/blob.h
    libgit2/include/git2/cherrypick.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/cherrypick.h
    libgit2/include/git2/submodule.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/submodule.h
    libgit2/include/git2/errors.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/errors.h
    libgit2/include/git2/message.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/message.h
    libgit2/include/git2/merge.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/merge.h
    libgit2/include/git2/pathspec.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/pathspec.h
    libgit2/include/git2/tree.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/tree.h
    libgit2/include/git2/odb_backend.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/odb_backend.h
    libgit2/include/git2/graph.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/graph.h
    libgit2/include/git2/describe.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/describe.h
    libgit2/include/git2/rebase.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/rebase.h
    libgit2/include/git2/worktree.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/worktree.h
    libgit2/include/git2/stash.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/stash.h
    libgit2/include/git2/remote.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/remote.h
    libgit2/include/git2/strarray.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/strarray.h
    libgit2/include/git2/reflog.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/reflog.h
    libgit2/include/git2/cred_helpers.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/cred_helpers.h
    libgit2/include/git2/buffer.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/buffer.h
    libgit2/include/git2/diff.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/diff.h
    libgit2/include/git2/sys/time.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/time.h
    libgit2/include/git2/sys/index.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/index.h
    libgit2/include/git2/sys/config.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/config.h
    libgit2/include/git2/sys/repository.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/repository.h
    libgit2/include/git2/sys/openssl.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/openssl.h
    libgit2/include/git2/sys/merge.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/merge.h
    libgit2/include/git2/sys/stream.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/stream.h
    libgit2/include/git2/sys/odb_backend.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/odb_backend.h
    libgit2/include/git2/sys/reflog.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/reflog.h
    libgit2/include/git2/sys/diff.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/diff.h
    libgit2/include/git2/sys/transport.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/transport.h
    libgit2/include/git2/sys/hashsig.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/hashsig.h
    libgit2/include/git2/sys/refs.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/refs.h
    libgit2/include/git2/sys/filter.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/filter.h
    libgit2/include/git2/sys/mempack.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/mempack.h
    libgit2/include/git2/sys/commit.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/commit.h
    libgit2/include/git2/sys/refdb_backend.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/sys/refdb_backend.h
    libgit2/include/git2/trace.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/trace.h
    libgit2/include/git2/common.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/common.h
    libgit2/include/git2/proxy.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/proxy.h
    libgit2/include/git2/indexer.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/indexer.h
    libgit2/include/git2/refspec.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/refspec.h
    libgit2/include/git2/notes.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/notes.h
    libgit2/include/git2/transport.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/transport.h
    libgit2/include/git2/revwalk.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/revwalk.h
    libgit2/include/git2/patch.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/patch.h
    libgit2/include/git2/object.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/object.h
    libgit2/include/git2/checkout.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/checkout.h
    libgit2/include/git2/revparse.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/revparse.h
    libgit2/include/git2/refs.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/refs.h
    libgit2/include/git2/reset.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/reset.h
    libgit2/include/git2/filter.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/filter.h
    libgit2/include/git2/transaction.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/transaction.h
    libgit2/include/git2/stdint.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/stdint.h
    libgit2/include/git2/commit.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/commit.h
    libgit2/include/git2/refdb.h => /var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include/git2/refdb.h
    TARGET = Some("x86_64-apple-darwin")
    OPT_LEVEL = Some("3")
    HOST = Some("x86_64-apple-darwin")
    CC_x86_64-apple-darwin = None
    CC_x86_64_apple_darwin = None
    HOST_CC = None
    CC = Some("clang")
    CFLAGS_x86_64-apple-darwin = None
    CFLAGS_x86_64_apple_darwin = None
    HOST_CFLAGS = None
    CFLAGS = None
    DEBUG = Some("false")
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/commit_list.o" "-c" "libgit2/src/commit_list.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/merge_driver.o" "-c" "libgit2/src/merge_driver.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/proxy.o" "-c" "libgit2/src/proxy.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/diff.o" "-c" "libgit2/src/diff.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/offmap.o" "-c" "libgit2/src/offmap.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/diff_print.o" "-c" "libgit2/src/diff_print.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/trace.o" "-c" "libgit2/src/trace.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/fetch.o" "-c" "libgit2/src/fetch.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/trailer.o" "-c" "libgit2/src/trailer.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/buffer.o" "-c" "libgit2/src/buffer.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/tsort.o" "-c" "libgit2/src/tsort.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/reflog.o" "-c" "libgit2/src/reflog.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/remote.o" "-c" "libgit2/src/remote.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/fnmatch.o" "-c" "libgit2/src/fnmatch.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transport.o" "-c" "libgit2/src/transport.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/revwalk.o" "-c" "libgit2/src/revwalk.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/object.o" "-c" "libgit2/src/object.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/patch.o" "-c" "libgit2/src/patch.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/util.o" "-c" "libgit2/src/util.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/notes.o" "-c" "libgit2/src/notes.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/posix.o" "-c" "libgit2/src/posix.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/idxmap.o" "-c" "libgit2/src/idxmap.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/indexer.o" "-c" "libgit2/src/indexer.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/refspec.o" "-c" "libgit2/src/refspec.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/ident.o" "-c" "libgit2/src/ident.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/diff_file.o" "-c" "libgit2/src/diff_file.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/netops.o" "-c" "libgit2/src/netops.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/refdb_fs.o" "-c" "libgit2/src/refdb_fs.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/push.o" "-c" "libgit2/src/push.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/tree-cache.o" "-c" "libgit2/src/tree-cache.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/vector.o" "-c" "libgit2/src/vector.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/revparse.o" "-c" "libgit2/src/revparse.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/diff_generate.o" "-c" "libgit2/src/diff_generate.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/diff_stats.o" "-c" "libgit2/src/diff_stats.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/checkout.o" "-c" "libgit2/src/checkout.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/config_parse.o" "-c" "libgit2/src/config_parse.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/apply.o" "-c" "libgit2/src/apply.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/hashsig.o" "-c" "libgit2/src/hashsig.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/odb_mempack.o" "-c" "libgit2/src/odb_mempack.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/filebuf.o" "-c" "libgit2/src/filebuf.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/pqueue.o" "-c" "libgit2/src/pqueue.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/config_cache.o" "-c" "libgit2/src/config_cache.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/patch_generate.o" "-c" "libgit2/src/patch_generate.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/refdb.o" "-c" "libgit2/src/refdb.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/commit.o" "-c" "libgit2/src/commit.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/fetchhead.o" "-c" "libgit2/src/fetchhead.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/thread-utils.o" "-c" "libgit2/src/thread-utils.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/iterator.o" "-c" "libgit2/src/iterator.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/oidmap.o" "-c" "libgit2/src/oidmap.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/hash.o" "-c" "libgit2/src/hash.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/filter.o" "-c" "libgit2/src/filter.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/reset.o" "-c" "libgit2/src/reset.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/refs.o" "-c" "libgit2/src/refs.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/odb_pack.o" "-c" "libgit2/src/odb_pack.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transaction.o" "-c" "libgit2/src/transaction.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/attrcache.o" "-c" "libgit2/src/attrcache.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/sysdir.o" "-c" "libgit2/src/sysdir.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/blame.o" "-c" "libgit2/src/blame.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/pack.o" "-c" "libgit2/src/pack.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/oidarray.o" "-c" "libgit2/src/oidarray.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/attr.o" "-c" "libgit2/src/attr.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/diff_xdiff.o" "-c" "libgit2/src/diff_xdiff.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/pack-objects.o" "-c" "libgit2/src/pack-objects.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/index.o" "-c" "libgit2/src/index.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/ignore.o" "-c" "libgit2/src/ignore.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/signature.o" "-c" "libgit2/src/signature.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/buf_text.o" "-c" "libgit2/src/buf_text.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/odb_loose.o" "-c" "libgit2/src/odb_loose.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/zstream.o" "-c" "libgit2/src/zstream.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/oid.o" "-c" "libgit2/src/oid.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/varint.o" "-c" "libgit2/src/varint.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/repository.o" "-c" "libgit2/src/repository.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/branch.o" "-c" "libgit2/src/branch.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/path.o" "-c" "libgit2/src/path.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/settings.o" "-c" "libgit2/src/settings.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/config.o" "-c" "libgit2/src/config.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/annotated_commit.o" "-c" "libgit2/src/annotated_commit.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/merge_file.o" "-c" "libgit2/src/merge_file.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/tag.o" "-c" "libgit2/src/tag.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/pool.o" "-c" "libgit2/src/pool.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/odb.o" "-c" "libgit2/src/odb.c"
    cargo:warning=libgit2/src/odb.c:1389:11: warning: format specifies type 'ssize_t' (aka 'long') but the argument has type 'git_off_t' (aka 'long long') [-Wformat]
    cargo:warning=                action, stream->declared_size, stream->received_bytes);
    cargo:warning=                        ^~~~~~~~~~~~~~~~~~~~~
    cargo:warning=libgit2/src/odb.c:1389:34: warning: format specifies type 'ssize_t' (aka 'long') but the argument has type 'git_off_t' (aka 'long long') [-Wformat]
    cargo:warning=                action, stream->declared_size, stream->received_bytes);
    cargo:warning=                                               ^~~~~~~~~~~~~~~~~~~~~~
    cargo:warning=2 warnings generated.
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/revert.o" "-c" "libgit2/src/revert.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/attr_file.o" "-c" "libgit2/src/attr_file.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/status.o" "-c" "libgit2/src/status.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/cherrypick.o" "-c" "libgit2/src/cherrypick.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/date.o" "-c" "libgit2/src/date.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/cache.o" "-c" "libgit2/src/cache.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/submodule.o" "-c" "libgit2/src/submodule.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/delta.o" "-c" "libgit2/src/delta.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/config_file.o" "-c" "libgit2/src/config_file.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/object_api.o" "-c" "libgit2/src/object_api.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/strmap.o" "-c" "libgit2/src/strmap.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/parse.o" "-c" "libgit2/src/parse.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/crlf.o" "-c" "libgit2/src/crlf.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/diff_tform.o" "-c" "libgit2/src/diff_tform.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/blob.o" "-c" "libgit2/src/blob.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/sha1_lookup.o" "-c" "libgit2/src/sha1_lookup.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/patch_parse.o" "-c" "libgit2/src/patch_parse.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/clone.o" "-c" "libgit2/src/clone.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/global.o" "-c" "libgit2/src/global.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/diff_driver.o" "-c" "libgit2/src/diff_driver.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/graph.o" "-c" "libgit2/src/graph.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/stash.o" "-c" "libgit2/src/stash.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/describe.o" "-c" "libgit2/src/describe.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/worktree.o" "-c" "libgit2/src/worktree.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/rebase.o" "-c" "libgit2/src/rebase.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/sortedcache.o" "-c" "libgit2/src/sortedcache.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/diff_parse.o" "-c" "libgit2/src/diff_parse.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/blame_git.o" "-c" "libgit2/src/blame_git.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/mwindow.o" "-c" "libgit2/src/mwindow.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/message.o" "-c" "libgit2/src/message.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/errors.o" "-c" "libgit2/src/errors.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/fileops.o" "-c" "libgit2/src/fileops.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/tree.o" "-c" "libgit2/src/tree.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/pathspec.o" "-c" "libgit2/src/pathspec.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/merge.o" "-c" "libgit2/src/merge.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/xdiff/xhistogram.o" "-c" "libgit2/src/xdiff/xhistogram.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/xdiff/xprepare.o" "-c" "libgit2/src/xdiff/xprepare.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/xdiff/xpatience.o" "-c" "libgit2/src/xdiff/xpatience.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/xdiff/xdiffi.o" "-c" "libgit2/src/xdiff/xdiffi.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/xdiff/xmerge.o" "-c" "libgit2/src/xdiff/xmerge.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/xdiff/xutils.o" "-c" "libgit2/src/xdiff/xutils.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/xdiff/xemit.o" "-c" "libgit2/src/xdiff/xemit.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transports/ssh.o" "-c" "libgit2/src/transports/ssh.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transports/cred_helpers.o" "-c" "libgit2/src/transports/cred_helpers.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transports/auth.o" "-c" "libgit2/src/transports/auth.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transports/auth_negotiate.o" "-c" "libgit2/src/transports/auth_negotiate.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transports/local.o" "-c" "libgit2/src/transports/local.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transports/smart_pkt.o" "-c" "libgit2/src/transports/smart_pkt.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transports/winhttp.o" "-c" "libgit2/src/transports/winhttp.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transports/http.o" "-c" "libgit2/src/transports/http.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transports/smart_protocol.o" "-c" "libgit2/src/transports/smart_protocol.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transports/git.o" "-c" "libgit2/src/transports/git.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transports/cred.o" "-c" "libgit2/src/transports/cred.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/transports/smart.o" "-c" "libgit2/src/transports/smart.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/streams/mbedtls.o" "-c" "libgit2/src/streams/mbedtls.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/streams/curl.o" "-c" "libgit2/src/streams/curl.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/streams/socket.o" "-c" "libgit2/src/streams/socket.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/streams/tls.o" "-c" "libgit2/src/streams/tls.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/streams/openssl.o" "-c" "libgit2/src/streams/openssl.c"
    exit code: 0
    running: "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/streams/stransport.o" "-c" "libgit2/src/streams/stransport.c"
    cargo:warning=libgit2/src/streams/stransport.c:13:10: fatal error: 'Security/SecureTransport.h' file not found
    cargo:warning=#include <Security/SecureTransport.h>
    cargo:warning=         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
    cargo:warning=1 error generated.
    exit code: 1
    
    --- stderr
    fatal: not a git repository (or any of the parent directories): .git
    thread 'main' panicked at '
    
    Internal error occurred: Command "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/include" "-I" "libgit2/src" "-I" "libgit2/deps/http-parser" "-I" "libgit2/deps/regex" "-I" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libssh2-sys-f75d2234aa9c57aa/out/include" "-fvisibility=hidden" "-o" "/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y/release/build/libgit2-sys-22fbdfdd29614593/out/build/libgit2/src/streams/stransport.o" "-c" "libgit2/src/streams/stransport.c" with args "clang" did not execute successfully (status code exit code: 1).
    
    ', /Users/yuzhao/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.28/src/lib.rs:2314:5
    note: Run with `RUST_BACKTRACE=1` environment variable to display a backtrace.
    
    warning: build failed, waiting for other jobs to finish...
    error: failed to compile `cargo-generate v0.2.2`, intermediate artifacts can be found at `/var/folders/tc/7wl_q01x7zz6cpktgfs1dbjh0000gn/T/cargo-install6REK7y`
    
    Caused by:
      build failed
    
    opened by cmal 13
  • cargo install cargo-generate fails compiling curl-sys on windows 10

    cargo install cargo-generate fails compiling curl-sys on windows 10

    I've looked in both fatal errors in the output (neither had internet solution)... here's the copy of output at failure:

    error: failed to run custom build command for curl-sys v0.4.15process didn't exit successfully:C:\Users\mike\AppData\Local\Temp\cargo-install2DTZOi\release\build\curl-sys-25e47cbb6164fbf2\build-script-build` (exit code: 101)
    --- stdout
    cargo:root=C:\Users\mike\AppData\Local\Temp\cargo-install2DTZOi\release\build\curl-sys-f61f6f8e7db9a41f\out
    cargo:include=C:\Users\mike\AppData\Local\Temp\cargo-install2DTZOi\release\build\curl-sys-f61f6f8e7db9a41f\out\include
    cargo:static=1
    TARGET = Some("x86_64-pc-windows-gnu")
    OPT_LEVEL = Some("3")
    HOST = Some("x86_64-pc-windows-gnu")
    CC_x86_64-pc-windows-gnu = None
    CC_x86_64_pc_windows_gnu = None
    HOST_CC = None
    CC = None
    CFLAGS_x86_64-pc-windows-gnu = None
    CFLAGS_x86_64_pc_windows_gnu = None
    HOST_CFLAGS = None
    CFLAGS = None
    DEBUG = Some("false")
    running: "gcc.exe" "-O3" "-ffunction-sections" "-fdata-sections" "-m64" "-I" "curl/lib" "-I" "curl/include" "-DBUILDING_LIBCURL" "-DCURL_DISABLE_CRYPTO_AUTH" "-DCURL_DISABLE_DICT" "-DCURL_DISABLE_FTP" "-DCURL_DISABLE_GOPHER" "-DCURL_DISABLE_IMAP" "-DCURL_DISABLE_LDAP" "-DCURL_DISABLE_LDAPS" "-DCURL_DISABLE_NTLM" "-DCURL_DISABLE_POP3" "-DCURL_DISABLE_RTSP" "-DCURL_DISABLE_SMB" "-DCURL_DISABLE_SMTP" "-DCURL_DISABLE_TELNET" "-DCURL_DISABLE_TFTP" "-DCURL_STATICLIB" "-DENABLE_IPV6" "-DHAVE_ASSERT_H" "-DOS="unknown"" "-DHAVE_ZLIB_H" "-DHAVE_LIBZ" "-DHAVE_GETADDRINFO" "-DUSE_THREADS_WIN32" "-DHAVE_IOCTLSOCKET_FIONBIO" "-DUSE_WINSOCK" "-DUSE_WINDOWS_SSPI" "-DUSE_SCHANNEL" "-o" "C:\Users\mike\AppData\Local\Temp\cargo-install2DTZOi\release\build\curl-sys-f61f6f8e7db9a41f\out\build\curl/lib\asyn-thread.o" "-c" "curl/lib/asyn-thread.c"
    cargo:warning=gcc: fatal error: no input files
    cargo:warning=compilation terminated.
    exit code: 1
    
    --- stderr
    fatal: Not a git repository (or any of the parent directories): .git
    thread 'main' panicked at '
    
    Internal error occurred: Command "gcc.exe" "-O3" "-ffunction-sections" "-fdata-sections" "-m64" "-I" "curl/lib" "-I" "curl/include" "-DBUILDING_LIBCURL" "-DCURL_DISABLE_CRYPTO_AUTH" "-DCURL_DISABLE_DICT" "-DCURL_DISABLE_FTP" "-DCURL_DISABLE_GOPHER" "-DCURL_DISABLE_IMAP" "-DCURL_DISABLE_LDAP" "-DCURL_DISABLE_LDAPS" "-DCURL_DISABLE_NTLM" "-DCURL_DISABLE_POP3" "-DCURL_DISABLE_RTSP" "-DCURL_DISABLE_SMB" "-DCURL_DISABLE_SMTP" "-DCURL_DISABLE_TELNET" "-DCURL_DISABLE_TFTP" "-DCURL_STATICLIB" "-DENABLE_IPV6" "-DHAVE_ASSERT_H" "-DOS="unknown"" "-DHAVE_ZLIB_H" "-DHAVE_LIBZ" "-DHAVE_GETADDRINFO" "-DUSE_THREADS_WIN32" "-DHAVE_IOCTLSOCKET_FIONBIO" "-DUSE_WINSOCK" "-DUSE_WINDOWS_SSPI" "-DUSE_SCHANNEL" "-o" "C:\Users\mike\AppData\Local\Temp\cargo-install2DTZOi\release\build\curl-sys-f61f6f8e7db9a41f\out\build\curl/lib\asyn-thread.o" "-c" "curl/lib/asyn-thread.c" with args "gcc.exe" did not execute successfully (status code exit code: 1).
    
    ', C:\Users\mike.cargo\registry\src\github.com-1ecc6299db9ec823\cc-1.0.25\src\lib.rs:2260:5
    note: Run with RUST_BACKTRACE=1 for a backtrace.
    
    warning: build failed, waiting for other jobs to finish...
    error: failed to compile cargo-generate v0.2.0, intermediate artifacts can be found at C:\Users\mike\AppData\Local\Temp\cargo-install2DTZOi
    
    Caused by:
    build failed
    `
    
    opened by mlisanke 13
  • Initializing a project with a submodule fails if directory exists

    Initializing a project with a submodule fails if directory exists

    Describe the bug

    Suppose the template to generate from is in a repository b that has a git submodule a as a dependency.

    So the repository b looks like the following (assumingahas a filefoo`).

    ├── b
    │   └── a
    │       └── foo
    

    Now suppose we wish to initialize a project using cargo generate in /root where

    /root
        └── a
            └── somefile
    

    that is, root has a non-empty subdirectory called a.

    This fails with the error.

    Caused by:
        'a' exists and is not an empty directory; class=Invalid (3); code=Exists (-4)
    

    To Reproduce Steps to reproduce the behavior:

    1. cargo generate <WHAT DID YOU RUN>
    2. output it generated..
    3. See error

    Expected behavior

    cargo generate succeeds and offers the usual options.

    Desktop (please complete the following information):

    • OS: Linux
    • Version: v0.5.0-453-g51deb01
    • Build tools: gcc
    • cargo generate --version: 0.17.4

    ** Root cause **

    The root cause of this is the following issue in libgit2 https://github.com/libgit2/libgit2/issues/5830 . Essentially during the cloning of the submodule there is an incorrect check which checks in the current working directory whether the directory a exists even though that is not relevant.

    It is possible to work around the issue in cargo-generate by modifying the clone_with_submodules function to change the working directory

        pub fn clone_with_submodules(self, dest_path: &Path) -> Result<Repository> {                                                                                                                 
            self.clone(dest_path).and_then(|repo| {
                // set the working directory to the root of the newly created repository
                // this works around the issue https://github.com/libgit2/libgit2/issues/5830
                // in libgit2                                                                                                                                                  
                std::env::set_current_dir(dest_path)?;                                                                                                                                               
                for mut sub in repo.submodules()? {                                                                                                                                                  
                    sub.update(true, None)?;                                                                                                                                                         
                }                                                                                                                                                                                    
                                                                                                                                                                                                     
                Ok(repo)                                                                                                                                                                             
            })                                                                                                                                                                                       
        }
    

    Seeing that the libgit2 has not resolved the issue in more than a year, would it be acceptable to this project to work around the issue here? I'm more than happy to contribute a PR.

    Type: Bug 
    opened by abizjak 0
  • Update `derive` attributes for clap and add a test for the CLI

    Update `derive` attributes for clap and add a test for the CLI

    Hello there. A little PR to unleash the power of the new Clap API. I added testing for the CLI (see this) I also replaced #[clap(...)] by #[command(...)] or #[arg(...)] to follow the reference from the v4.0

    opened by yozhgoor 0
  • support for ssh private keys protected with passphrase

    support for ssh private keys protected with passphrase

    Describe the bug I want to start a project:

    cargo generate --git https://github.com/rustwasm/wasm-pack-template.git
    

    And I get:

    Error: Please check if the Git user / repository exists.
    
    Caused by:
        Failed to retrieve list of SSH authentication methods: Failed getting response; class=Ssh (23); code=Auth (-16)
    

    Desktop (please complete the following information):

    • OS: [MacOS]
    • Version: [Mac Os Big Sur version 11.4]
    • rustc --version: rustc 1.65.0 (897e37553 2022-11-02)
    • cargo generate --version: cargo generate-generate 0.17.3

    Additional context it is fine in my Windows PC, but i guess it may be the problem of my .git config.

    # Personal account, - the default config
    Host github.com-personal
       HostName github.com
       User git
       IdentityFile ~/.ssh/id_rsa
       
    # Work account
    Host github.com-organization
       HostName github.com
       User git
       IdentityFile ~/.ssh/id_ed25519
    

    And I want to know how to fix it?

    Type: Enhancement 
    opened by rakuten-JO 2
  • `cargo generate` command does nothing, maybe related to `zlib1.dll`?

    `cargo generate` command does nothing, maybe related to `zlib1.dll`?

    Describe the bug When I ran a cargo generate command on Windows PowerShell, it exited immediately with no console or file output. Similarly, cargo help generate or cargo generate --version also terminated without any output.

    make sure you

    • [x] I'm on the latest rust version rustup update
    • [x] I'm on the latest cargo-generate version cargo install cargo-generate

    To Reproduce Steps to reproduce the behavior:

    1. cargo generate --git https://github.com/esp-rs/esp-idf-template cargo
    2. output it generated.. : nothing
    3. See error

    Expected behavior I expected it asks project name, settings, etc. and create a directory containing a new Rust project.

    Screenshots image

    Desktop (please complete the following information):

    • OS: Windows 11 Home
    • Version: 21H2
    • Build tools: msvc
    • Shell: powerShell
    • rustc --version: rustc 1.65.0 (897e37553 2022-11-02)
    • cargo generate --version: Nothing was displayed. Version was v0.17.3.

    Additional context For your information, when I checked DLL dependencies of cargo-generate.exe binary with Dependencies (Windows equivalent of ldd), zlib1.dll, which cargo-generate.exe depends, was not found in the system. Double-clicking the exe file on the Explorer showed an error that zlib1.dll was not found.

    As a workaround, building zlib and putting the resultant DLL along with cargo-generate.exe as zlib1.dll fixes the problem. However, it seems weird.

    Type: Bug 
    opened by tana 0
Releases(v0.17.4)
cargo-lambda is a Cargo subcommand to help you work with AWS Lambda.

cargo-lambda cargo-lambda is a Cargo subcommand to help you work with AWS Lambda. The new subcommand creates a basic Rust package from a well defined

null 184 Jan 5, 2023
A cargo subcommand that extends cargo's capabilities when it comes to code generation.

cargo-px Cargo Power eXtensions Check out the announcement post to learn more about cargo-px and the problems it solves with respect to code generatio

Luca Palmieri 33 May 7, 2023
Generate a THIRDPARTY file with all licenses in a cargo project.

cargo-bundle-licenses Bundle all third-party licenses into a single file. NOTE This tools is not a lawyer and no guarantee of correctness can be made

Seth 58 Jan 7, 2023
Make ELF formatted apps configurable

elfredo `elfredo` is a library that allows you to patch executables after they were compiled. It utilize an extra embedded section to store data/confi

Asaf Fisher 7 Sep 5, 2021
Make any NixOS system netbootable with 10s cycle times.

nix-netboot-serve Dynamically generate netboot images for arbitrary NixOS system closures, profiles, or configurations with 10s iteration times. Usage

Determinate Systems 152 Dec 24, 2022
A lite tool to make systemd work in any container(Windows Subsystem for Linux 2, Docker, Podman, etc.)

Angea Naming from hydrangea(アジサイ) A lite tool to make systemd work in any container(Windows Subsystem for Linux 2, Docker, Podman, etc.) WSL1 is not s

いんしさくら 16 Dec 5, 2022
Make the github cli even better with fuzzy finding

github-repo-clone (grc) Github Repo Clone is a command line utility written in rust that leverages the power of fuzzy finding with the github cli Usag

Jared Moulton 2 Jul 9, 2022
Rust macro to make recursive function run on the heap (i.e. no stack overflow).

Decurse Example #[decurse::decurse] // ?? Slap this on your recursive function and stop worrying about stack overflow! fn factorial(x: u32) -> u32 {

Wisha W. 18 Dec 28, 2022
Make friends while searching.

searchbuddy Make friends while searching! Searchbuddy is a browser extension that lets you chat with people that are searching for what you're searchi

Joseph Gerber 14 May 23, 2022
Thin wrapper around [`tokio::process`] to make it streamable

This library provide ProcessExt to create your own custom process

null 4 Jun 25, 2022
Bolt is a desktop application that is designed to make the process of developing and testing APIs easier and more efficient.

Bolt ⚡ Bolt is a desktop application that is designed to make the process of developing and testing APIs easier and more efficient. Quick start ??‍??

0xHiro 6 Mar 26, 2023
Render cargo dependency tree in online

Cargo Tree Online Check out rendered page Render cargo dependency tree in online. Usage trunk serve Copy and paste the content of Cargo.lock file to

Kangwook Lee (이강욱) 2 Sep 23, 2021
Rust+Cargo lightweight hello world with the most minimum binary size possible.

Lightweight Cargo Hello World Rust+Cargo lightweight hello world with the most minimum binary size possible. requirements 1: Rustup (Rustc, Cargo) Ins

Raymond 1 Dec 13, 2021
Plugin to request a relaunch when uploading a Skyline plugin through cargo skyline

restart-plugin A skyline plugin for allowing cargo-skyline (or other tools) to restart your game without you having to touch your controller. Install

null 1 Nov 21, 2021
Convenience wrapper for cargo buildscript input/output

A convenience wrapper for cargo buildscript input/output. Why? The cargo buildscript API is (necessarily) stringly-typed.

Christopher Durham 6 Sep 25, 2022
A cargo subcommand that displays the assembly generated for Rust source code

cargo-show-asm A cargo subcommand that displays the assembly generated for Rust source code.

null 193 Dec 29, 2022
Cargo subcommand for optimizing binaries with PGO and BOLT.

cargo-pgo Cargo subcommand that makes it easier to use PGO and BOLT to optimize Rust binaries. Installation $ cargo install cargo-pgo You will also ne

Jakub Beránek 229 Dec 28, 2022
Mommy's here to support you when running cargo~

cargo-mommy Mommy's here to support you when running cargo~ ❤️ Installation Install cargo-mommy like you would any other cargo extension~ > cargo inst

Aria Beingessner 198 Jan 5, 2023
Load and resolve Cargo configuration.

cargo-config2 Load and resolve Cargo configuration. This library is intended to accurately emulate the actual behavior of Cargo configuration, for exa

Taiki Endo 6 Jan 10, 2023