src/Pure/Admin/build_polyml.scala
author wenzelm
Fri, 11 Nov 2016 15:24:56 +0100
changeset 64493 a2eebcc8bb69
parent 64492 98215fa4f8d1
child 64494 979520c83f30
permissions -rw-r--r--
clarified platform selection;
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
  def build_polyml(
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
    56
    root: Path,
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    57
    progress: Progress = Ignore_Progress,
64493
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
    58
    arch_64: Boolean = false,
64485
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    59
    options: List[String] = Nil,
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    60
    other_bash: String = "")
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    61
  {
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
    62
    if (!((root + Path.explode("configure")).is_file && (root + Path.explode("PolyML")).is_dir))
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
    63
      error("Bad Poly/ML root directory: " + root)
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    64
64493
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
    65
    val platform =
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
    66
      (if (arch_64) "x86_64" else "x86") +
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
    67
      (if (Platform.is_windows) "-windows" else if (Platform.is_macos) "-darwin" else "-linux")
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
    68
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    69
    val info =
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    70
      platform_info.get(platform) getOrElse
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    71
        error("Bad platform identifier: " + quote(platform))
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    72
64493
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
    73
    if (Platform.is_windows && other_bash == "")
64492
98215fa4f8d1 more robust Windows platform;
wenzelm
parents: 64491
diff changeset
    74
      error("Windows requires other bash (for msys)")
98215fa4f8d1 more robust Windows platform;
wenzelm
parents: 64491
diff changeset
    75
64491
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
    76
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
    77
    /* configure and make */
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
    78
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    79
    val configure_options =
64493
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
    80
      (if (!arch_64 && Isabelle_System.getenv("ISABELLE_PLATFORM64") == "x86_64-linux")
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
    81
        info.options_multilib
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
    82
       else info.options) ::: List("--enable-intinf-as-int") ::: options
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
    83
64485
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    84
    val script =
64487
b843bcdd40f0 more precise environment (for Windows);
wenzelm
parents: 64486
diff changeset
    85
      info.setup + "\n" +
64485
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    86
      """
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    87
        [ -f Makefile ] && make distclean
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    88
        {
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    89
          ./configure --prefix="$PWD/target" """ + Bash.strings(configure_options) + """
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    90
          rm -rf target
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    91
          make compiler && make compiler && make install
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    92
        } || { echo "Build failed" >&2; exit 2; }
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    93
      """
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    94
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    95
    Isabelle_System.bash(
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
    96
      if (other_bash == "") script else Bash.string(other_bash) + " -c " + Bash.string(script),
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
    97
      cwd = root.file, env = null,
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    98
      progress_stdout = progress.echo(_),
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
    99
      progress_stderr = progress.echo(_)).check
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
   100
64491
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   101
    val lib_files =
64493
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
   102
      if (Platform.is_linux) {
64491
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   103
        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
   104
        val Pattern = """\s*libgmp.*=>\s*(\S+).*""".r
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   105
        for (Pattern(lib) <- libs) yield lib
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   106
      }
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   107
      else Nil
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   108
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   109
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   110
    /* target */
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
   111
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
   112
    val target = Path.explode(platform)
64488
bc77e19aad44 no backup of generated stuff;
wenzelm
parents: 64487
diff changeset
   113
    Isabelle_System.rm_tree(target)
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   114
    Isabelle_System.mkdirs(target)
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   115
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   116
    for {
64484
784e28e4dc57 proper options;
wenzelm
parents: 64483
diff changeset
   117
      d <- List("target/bin", "target/lib")
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
   118
      dir = root + Path.explode(d)
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   119
      entry <- File.read_dir(dir)
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   120
    } File.move(dir + Path.explode(entry), target)
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   121
64491
6a1a1bbfcb93 copy libgmp on Linux;
wenzelm
parents: 64490
diff changeset
   122
    for (file <- "~~/Admin/polyml/polyi" :: info.copy_files ::: lib_files)
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   123
      File.copy(Path.explode(file), target)
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   124
  }
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   125
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   126
64490
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   127
  /** command line entry point **/
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   128
64490
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   129
  def main(args: Array[String])
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   130
  {
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   131
    Command_Line.tool0 {
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   132
      var other_bash = ""
64493
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
   133
      var arch_64 = false
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   134
64490
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   135
      val getopts = Getopts("""
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
   136
Usage: isabelle build_polyml [OPTIONS] ROOT [CONFIGURE_OPTIONS]
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   137
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   138
  Options are:
64485
e996c0a5eca9 support other bash executable (notably for msys on Windows);
wenzelm
parents: 64484
diff changeset
   139
    -b EXE       other bash executable (notably for msys on Windows)
64493
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
   140
    -m ARCH      processor architecture (32=x86, 64=x86_64, default: x86)
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   141
64489
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
   142
  Build Poly/ML in its source ROOT directory of its sources, with additional
db1bc2732554 clarified command-line;
wenzelm
parents: 64488
diff changeset
   143
  CONFIGURE_OPTIONS (e.g. --with-gmp).
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
        "b:" -> (arg => other_bash = arg),
64493
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
   146
        "m:" ->
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
   147
          {
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
   148
            case "32" | "x86" => arch_64 = false
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
   149
            case "64" | "x86_64" => arch_64 = true
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
   150
            case bad => error("Bad processor architecture: " + quote(bad))
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
   151
          })
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   152
64490
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   153
      val more_args = getopts(args)
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   154
      val (root, options) =
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   155
        more_args match {
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   156
          case root :: options => (Path.explode(root), options)
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   157
          case Nil => getopts.usage()
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   158
        }
64493
a2eebcc8bb69 clarified platform selection;
wenzelm
parents: 64492
diff changeset
   159
      build_polyml(root, progress = new Console_Progress, arch_64 = arch_64, options = options,
64490
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   160
          other_bash = other_bash)
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   161
    }
abc34a149690 prefer raw Admin tool, without Isabelle settings environment;
wenzelm
parents: 64489
diff changeset
   162
  }
64483
bba1d341bdf6 build_polyml in Scala;
wenzelm
parents:
diff changeset
   163
}