-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Using install-app-deps on ARM #2092
Comments
Tried to add Edit: I found |
Will be fixed 22 September. |
Cool, thank you! |
Any news on this? |
Sorry for the long delay. I've written simple JS script which basically passing the following flags to const isArm = os.arch().startsWith('arm')
// Flag for install-app-deps:
isArm ? ' --arch all' : ' --arch x64'
// Flag for build:
isArm ? ' --armv7l' : ' --x64' Of course this is not generic solution as I needed something for my particular usecase. Somehow I managed to build the app for Raspberry, but building process for my project is messy overall, and I didn't have time to investigate much further (you know, tight deadlines as usual). Due to dependency on |
Any updates on this? Still observed in 19.47.1 running on armv71 |
Bump. |
I'm trying to build an app with some native dependencies on Raspberry Pi 3. While running
install-app-deps
it correctly detects target arch (default: "arm"
), but it's not listed in available architectures. I know thatelectron-builder build
supports--armv7l
flag, but is it possible to retarget native dependencies to Electron's Node?The text was updated successfully, but these errors were encountered: