You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/gyp/CHANGELOG.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
6
7
7
## [Unreleased]
8
8
9
+
## [0.5.0] - 2020-09-30
10
+
11
+
### Added
12
+
- Extended compile_commands_json generator to consider more file extensions than
13
+
just `c` and `cc`. `cpp` and `cxx` are now supported.
14
+
- Source files with duplicate basenames are now supported.
15
+
16
+
### Removed
17
+
- The `--no-duplicate-basename-check` option was removed.
18
+
- The `msvs_enable_marmasm` configuration option was removed in favor of
19
+
auto-inclusion of the "marmasm" sections for Windows on ARM.
20
+
9
21
## [0.4.0] - 2020-07-14
10
22
11
23
### Added
@@ -34,7 +46,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
34
46
This is the first release of this project, based on https://chromium.googlesource.com/external/gyp
35
47
with changes made over the years in Node.js and node-gyp.
Copy file name to clipboardExpand all lines: tools/gyp/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,3 +2,6 @@ GYP can Generate Your Projects.
2
2
===================================
3
3
4
4
Documents are available at [gyp.gsrc.io](https://gyp.gsrc.io), or you can check out ```md-pages``` branch to read those documents offline.
5
+
6
+
__gyp-next__ is [released](https://github.com/nodejs/gyp-next/releases) to the [__Python Packaging Index__](https://pypi.org/project/gyp-next) (PyPI) and can be installed with the command:
Copy file name to clipboardExpand all lines: tools/gyp/pylib/gyp/common.py
+15-9Lines changed: 15 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -352,10 +352,14 @@ class Writer(object):
352
352
"""Wrapper around file which only covers the target if it differs."""
353
353
354
354
def__init__(self):
355
-
# On Cygwin remove the "dir" argument because `C:` prefixed paths are treated as relative,
356
-
# consequently ending up with current dir "/cygdrive/c/..." being prefixed to those, which was
357
-
# obviously a non-existent path, for example: "/cygdrive/c/<some folder>/C:\<my win style abs path>".
358
-
# See https://docs.python.org/2/library/tempfile.html#tempfile.mkstemp for more details
355
+
# On Cygwin remove the "dir" argument
356
+
# `C:` prefixed paths are treated as relative,
357
+
# consequently ending up with current dir "/cygdrive/c/..."
358
+
# being prefixed to those, which was
359
+
# obviously a non-existent path,
360
+
# for example: "/cygdrive/c/<some folder>/C:\<my win style abs path>".
0 commit comments