PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Saturday, September 10, 2022

[FIXED] What is the difference between cross-platform and multi-platform?

 September 10, 2022     cross-platform, multiplatform     No comments   

Issue

Can someone clearly tell the difference between the terms "cross platform" and "multi platform"


Solution

Cross Platform is where the host development architecture is different than the target execution platform. In short, the target application will not execute on the host development system.

Multi Platform is where a different executable target can be built that will also execute on the host.

Example 1 - You can cross develop from 64 bit linux to 64 Bit Windows using Wine.

Example 2 - You can compile an application for 32 bit Linux using multilib that will execute on 64 bit Linux using the native Linux compiler and using the -m32 switch to build the 32 bit application.

Example 3 - You can target 32 bit Windows applications from Linux 64 if you install Wine32 in addition to Wine and generate both the targets from the same source base if you are using the right toolkits.



Answered By - Oliver bailey
Answer Checked By - Mary Flores (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing