zoukankan      html  css  js  c++  java
  • Binary Release vs Source Release 二进制发布版本 vs 源代码版本

    A source release (源代码版本)will be compiled on your own machine while a binary release(二进制发布版本) must match your operating system.

    source releases are more common on linux systems because linux systems can dramatically vary in cpu, installed library versions, kernelversions and nearly every linux system has a compiler installed.

    binary releases are common on ms-windows systems. most windows machines do not have a compiler installed.

    Other Answer:

    1-Binary releases contain computer readable version of the application, meaning it is compiled. Source releases contain human readable version of the application, meaning it has to be compiled before it can be used.

    2-The source release is the raw, uncompiled code. You could read it yourself. To use it, it must be compiled on your machine. Binary means the code was compiled into a machine language format that the computer can read, then execute. No human can understand the binary file unless its been dissected, or opened with some program that let's you read the executable as code.

  • 相关阅读:
    正则
    cookie、sesion
    POJ-1509
    HDU-3374
    ZOJ-3822
    HDU-5492
    在什么情况下Java比C++快?
    HDU-5451
    SPOJ-913
    莫比乌斯反演入门
  • 原文地址:https://www.cnblogs.com/frankcui/p/12383524.html
Copyright © 2011-2022 走看看