Orgad Shaneh
Orgad Shaneh
Good catch, thanks! Should be Ok now, not sure if the code is well positioned though. What do you say?
@vvainola How do you use it in VS?
> I narrowed the issue down to the actual execute call > > https://github.com/ccache/ccache/blob/a39ed5824d8f4343e33b80575a9ba0bf0c73e89f/src/ccache.cpp#L717 > > so it seems to have nothing to do with changes in this PR except...
> I don't have an MSVC to test with. Did you check if this is related to the confusion about stdout vs stderr? They updated the documentation to match the...
Good catch @jrosdahl! Proposed PR #1170.
Why? Do you have rejections on #992?
Unit tests can be enabled with the other PR that enables them on Windows.
This can be closed now.
With 1.1.3 and TS, this code: ```typescript import axios from 'axios'; const axiosClient = axios.create(); ``` is transpiled to: ```javascript const axios_1 = require("axios"); const axiosClient = axios_1.default.create(); ``` and...