diff options
| author | Alex Newman <posix4e@gmail.com> | 2015-06-30 20:37:11 -0700 |
|---|---|---|
| committer | Alex Newman <posix4e@gmail.com> | 2015-07-01 19:09:14 -0700 |
| commit | 0b7c4f57f6ba59dabe4db2808fe45e8bd8bbce22 (patch) | |
| tree | 478355371ea4647da904962c0561350b029ae29c /src/etc | |
| parent | d2cf9f9632746701f72ded3a50de2c5d8e05b1b5 (diff) | |
Add netbsd amd64 support
Diffstat (limited to 'src/etc')
| -rw-r--r-- | src/etc/snapshot.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/etc/snapshot.py b/src/etc/snapshot.py index 0349ccf9b66..6d62a45c703 100644 --- a/src/etc/snapshot.py +++ b/src/etc/snapshot.py @@ -41,13 +41,14 @@ download_dir_base = "dl" download_unpack_base = os.path.join(download_dir_base, "unpack") snapshot_files = { + "bitrig": ["bin/rustc"], + "dragonfly": ["bin/rustc"], + "freebsd": ["bin/rustc"], "linux": ["bin/rustc"], "macos": ["bin/rustc"], - "winnt": ["bin/rustc.exe"], - "freebsd": ["bin/rustc"], - "dragonfly": ["bin/rustc"], - "bitrig": ["bin/rustc"], + "netbsd": ["bin/rustc"], "openbsd": ["bin/rustc"], + "winnt": ["bin/rustc.exe"], } winnt_runtime_deps_32 = ["libgcc_s_dw2-1.dll", "libstdc++-6.dll"] @@ -103,6 +104,8 @@ def get_kernel(triple): return "dragonfly" if os_name == "bitrig": return "bitrig" + if os_name == "netbsd": + return "netbsd" if os_name == "openbsd": return "openbsd" return "linux" |
