Different architectures for different platforms
See original GitHub issueFor example I want to create nsis installer for Windovs --ia32 --x64 and Linux deb --x64; Perhaps there is a way to specify in the configuration area to build? Something like this:
{
"appId": "com.electron.app",
"compression": "maximum",
"platforms": {
"win": ["ia32", "x64"],
"linux": "x64"
}
}
In this case there is no need to specify the architecture of the platform and the command line. Instead of this
build -wl --x64 --ia32
Suffice it to perform
build
Issue Analytics
- State:
- Created 7 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
Four Architecture Choices for Application Development ... - IBM
Microservices are an architectural style that structures the application as a collection of services. Each service can be written in a different ......
Read more >How to choose the right software architecture: The top 5 patterns
This is a distilled reference guide to the top 5 patterns in software architecture. Learn their strengths and weaknesses to help choose the...
Read more >10 Best Software Architecture Patterns You Must Know About
This article covers different types of software architecture patterns, their importance, and comparative analysis to help you choose the ...
Read more >Platform Architecture and Data Architecture Are Different but ...
Data architects are indispensable. They own an MDA's big picture across interdependent platforms. They design architectural structures, and they ...
Read more >3 Proven Architecture Patterns for Integrating Digital ...
There are various ways in which a digital platform and its underlying solution architecture can be defined. Consequently, there are a number of...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
To build x64 Deb & ia32/x64 NSIS, the final syntax looks something like:
Then maybe it should be done as follows:
The idea is to be able specify architecture to individually for each platform and each target