src/Pure/Admin/build_polyml.scala
author wenzelm
Fri, 11 Nov 2016 12:14:03 +0100
changeset 64491 6a1a1bbfcb93
parent 64490 abc34a149690
child 64492 98215fa4f8d1
permissions -rw-r--r--
copy libgmp on Linux;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/Admin/build_polyml.scala
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
     3
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
     4
Build Poly/ML from sources.
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
     5
*/
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
     6
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
     7
package isabelle
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
     8
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
     9
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    10
object Build_PolyML
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    11
{
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    12
  sealed case class Platform_Info(
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    13
    options: List[String] = Nil,
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    14
    options_multilib: List[String] = Nil,
64487
b843bcdd40f0 more precise environment (for Windows);
wenzelm
parents: 64486
diff changeset
    15
    setup: String = "",
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    16
    copy_files: List[String] = Nil)
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    17
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    18
  private val platform_info = Map(
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    19
    "x86-linux" ->
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    20
      Platform_Info(
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    21
        options_multilib =
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    22
          List("--build=i386", "CFLAGS=-m32 -O3", "CXXFLAGS=-m32 -O3", "CCASFLAGS=-m32")),
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    23
    "x86_64-linux" -> Platform_Info(),
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    24
    "x86-darwin" ->
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    25
      Platform_Info(
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    26
        options =
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    27
          List("--build=i686-darwin", "CFLAGS=-arch i686 -O3 -I../libffi/include",
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    28
            "CXXFLAGS=-arch i686 -O3 -I../libffi/include", "CCASFLAGS=-arch i686 -O3",
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    29
            "LDFLAGS=-segprot POLY rwx rwx")),
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    30
    "x86_64-darwin" ->
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    31
      Platform_Info(
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    32
        options =
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    33
          List("--build=x86_64-darwin", "CFLAGS=-arch x86_64 -O3 -I../libffi/include",
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    34
            "CXXFLAGS=-arch x86_64 -O3 -I../libffi/include", "CCASFLAGS=-arch x86_64",
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    35
            "LDFLAGS=-segprot POLY rwx rwx")),
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    36
    "x86-windows" ->
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    37
      Platform_Info(
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    38
        options =
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    39
          List("--host=i686-w32-mingw32", "CPPFLAGS=-I/mingw32/include", "--disable-windows-gui"),
64487
b843bcdd40f0 more precise environment (for Windows);
wenzelm
parents: 64486
diff changeset
    40
        setup = "PATH=/usr/bin:/bin:/mingw32/bin",
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    41
        copy_files =
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    42
          List("/mingw32/bin/libgcc_s_dw2-1.dll",
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    43
            "/mingw32/bin/libgmp-10.dll",
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    44
            "/mingw32/bin/libstdc++-6.dll")),
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    45
    "x86_64-windows" ->
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    46
      Platform_Info(
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    47
        options =
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    48
          List("--host=x86_64-w64-mingw32", "CPPFLAGS=-I/mingw64/include", "--disable-windows-gui"),
64487
b843bcdd40f0 more precise environment (for Windows);
wenzelm
parents: 64486
diff changeset
    49
        setup = "PATH=/usr/bin:/bin:/mingw64/bin",
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    50
        copy_files =
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    51
          List("/mingw64/bin/libgcc_s_seh-1.dll",
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    52
            "/mingw64/bin/libgmp-10.dll",
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    53
            "/mingw64/bin/libstdc++-6.dll")))
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    54
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    55
  lazy val default_platform = Isabelle_System.getenv_strict("ISABELLE_PLATFORM32")
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    56
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    57
  def build_polyml(
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
    58
    root: Path,
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    59
    progress: Progress = Ignore_Progress,
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    60
    platform: String = default_platform,
64485
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    61
    options: List[String] = Nil,
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    62
    other_bash: String = "")
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    63
  {
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
    64
    if (!((root + Path.explode("configure")).is_file && (root + Path.explode("PolyML")).is_dir))
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
    65
      error("Bad Poly/ML root directory: " + root)
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    66
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    67
    val info =
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    68
      platform_info.get(platform) getOrElse
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    69
        error("Bad platform identifier: " + quote(platform))
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    70
64491
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
    71
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
    72
    /* configure and make */
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
    73
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    74
    val multilib =
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    75
      platform == "x86-linux" && Isabelle_System.getenv("ISABELLE_PLATFORM64") == "x86_64-linux"
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    76
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    77
    val configure_options =
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    78
      (if (multilib) info.options_multilib else info.options) :::
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    79
        List("--enable-intinf-as-int") ::: options
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    80
64485
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    81
    val script =
64487
b843bcdd40f0 more precise environment (for Windows);
wenzelm
parents: 64486
diff changeset
    82
      info.setup + "\n" +
64485
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    83
      """
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    84
        [ -f Makefile ] && make distclean
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    85
        {
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    86
          ./configure --prefix="$PWD/target" """ + Bash.strings(configure_options) + """
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    87
          rm -rf target
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    88
          make compiler && make compiler && make install
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    89
        } || { echo "Build failed" >&2; exit 2; }
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    90
      """
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    91
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    92
    Isabelle_System.bash(
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    93
      if (other_bash == "") script else Bash.string(other_bash) + " -c " + Bash.string(script),
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
    94
      cwd = root.file, env = null,
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    95
      progress_stdout = progress.echo(_),
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    96
      progress_stderr = progress.echo(_)).check
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    97
64491
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
    98
    val lib_files =
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
    99
      if (platform.endsWith("linux")) {
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   100
        val libs = Isabelle_System.bash("ldd target/bin/poly", cwd = root.file).check.out_lines
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   101
        val Pattern = """\s*libgmp.*=>\s*(\S+).*""".r
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   102
        for (Pattern(lib) <- libs) yield lib
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   103
      }
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   104
      else Nil
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   105
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   106
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   107
    /* target */
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
   108
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
   109
    val target = Path.explode(platform)
64488
bc77e19aad44 no backup of generated stuff;
wenzelm
parents: 64487
diff changeset
   110
    Isabelle_System.rm_tree(target)
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   111
    Isabelle_System.mkdirs(target)
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   112
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   113
    for {
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
   114
      d <- List("target/bin", "target/lib")
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
   115
      dir = root + Path.explode(d)
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   116
      entry <- File.read_dir(dir)
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   117
    } File.move(dir + Path.explode(entry), target)
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   118
64491
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   119
    for (file <- "~~/Admin/polyml/polyi" :: info.copy_files ::: lib_files)
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   120
      File.copy(Path.explode(file), target)
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   121
  }
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   122
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   123
64490
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   124
  /** command line entry point **/
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   125
64490
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   126
  def main(args: Array[String])
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   127
  {
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   128
    Command_Line.tool0 {
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   129
      var other_bash = ""
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   130
      var platform = default_platform
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   131
64490
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   132
      val getopts = Getopts("""
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
   133
Usage: isabelle build_polyml [OPTIONS] ROOT [CONFIGURE_OPTIONS]
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   134
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   135
  Options are:
64485
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
   136
    -b EXE       other bash executable (notably for msys on Windows)
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
   137
    -p PLATFORM  platform identifier and target directory (default: """ + default_platform + """)
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   138
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
   139
  Build Poly/ML in its source ROOT directory of its sources, with additional
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
   140
  CONFIGURE_OPTIONS (e.g. --with-gmp).
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   141
""",
64490
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   142
        "b:" -> (arg => other_bash = arg),
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   143
        "p:" -> (arg => platform = arg))
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   144
64490
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   145
      val more_args = getopts(args)
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   146
      val (root, options) =
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   147
        more_args match {
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   148
          case root :: options => (Path.explode(root), options)
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   149
          case Nil => getopts.usage()
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   150
        }
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   151
      build_polyml(root, progress = new Console_Progress, platform = platform, options = options,
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   152
          other_bash = other_bash)
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   153
    }
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   154
  }
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   155
}