Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: MSYS2 enviroment uses the gcc/clang free compilers, not the msvc ones, here the rust target is added for interoperability #5440

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build-and-tests.yml
Expand Up @@ -100,6 +100,12 @@ jobs:
- host: windows-latest
target: aarch64-pc-windows-msvc
build: npm run build:napi -- --release --target aarch64-pc-windows-msvc
- host: windows-latest
target: x86_64-pc-windows-gnu
build: >-
set -e &&
rustup target add x86_64-pc-windows-gnu &&
npm run build:napi -- --release --target x86_64-pc-windows-gnu

# MacOS
- host: macos-latest
Expand Down
3 changes: 3 additions & 0 deletions npm/win32-x64-gnu/README.md
@@ -0,0 +1,3 @@
# `@rollup/rollup-win32-x64-gnu`

This is the **x86_64-pc-windows-gnu** binary for `rollup`
19 changes: 19 additions & 0 deletions npm/win32-x64-gnu/package.json
@@ -0,0 +1,19 @@
{
"name": "@rollup/rollup-win32-x64-gnu",
"version": "0.0.0",
"os": [
"win32"
],
"cpu": [
"x64"
],
"files": [
"rollup.win32-x64-gnu.node"
],
"description": "Native bindings for Rollup",
"author": "Lukas Taegert-Atkinson",
"homepage": "https://rollupjs.org/",
"license": "MIT",
"repository": "rollup/rollup",
"main": "./rollup.win32-x64-gnu.node"
}
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -27,6 +27,7 @@
"riscv64gc-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-pc-windows-gnu",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl"
]
Expand Down