Differences between revisions 5 and 6
Revision 5 as of 2010-12-05 18:37:32
Size: 6305
Comment:
Revision 6 as of 2010-12-05 19:40:42
Size: 6442
Comment:
Deletions are marked like this. Additions are marked like this.
Line 21: Line 21:

[[https://wiki.linaro.org/CrossBuilding| Linaro CrossBuilding]] wiki page sheds a lot of light into current state of cross-compiling.

Summary

This specification describes the way we would like to package i686-w64-mingw32 and x86_64-w64-mingw32 toolchains.

Rationale

While Multiarch/Spec provides starting ideas it is not clear, what is the correct procedure to package mingw cross-compilation environment. Currently such environments are implemented in Fedora by Mingw SIG, openSUSE derives from that effort in OBS project. Additionally there is documentation created by mingw.org.

Multiarch/Spec covers installation of shared libraries, but doesn't discuss -dev packages.

Fedora MinGW SIG packaging guidelines deal with installing any cross-compiled packages, but it is not x86_64 aware.

Futher discussion of multiarch in debian is also of interest.

Relocation HOWTO is also of interest. A guide how to create relocatable MinGW toolchain.

Linaro CrossBuilding wiki page sheds a lot of light into current state of cross-compiling.

Use Cases

  • Bob is a maintainer of upstream project. He get a lot of request to create native Windows install files. Bob uses mingw-w64 toolchain in debian to cross-compile his app and create nsis installer for it.
  • Wine packaging uses mingw-w64 toolchain in Debian to compile wine-gecko.

Scope

The scope of this spec covers:

  • cross-compilers to x86 and x86_64 Windows platforms, i.e. binutils, gcc, mingw-w64 runtime and headers
  • Packaging and cross-compilation guidelines to x86 and x86_64 Windows platforms

Design

  • Biarch is not ready - two single-arch toolchains
  • Co-installable multiple gcc versions
  • No sysroot, because single mingw include dir is not x86_64 aware
  • Where to install cross-compiled packages
  • Naming scheme for the packages.

Filesystem layout

Diagram below is a modified version from Fedora MinGW SIG under license Attribution-Share Alike 3.0 Unported.

 [root]
   |
   +- usr
       |
       +- bin
       |   |
       |   +- i686-w64-mingw32-cpp
       |   +- i686-w64-mingw32-gcc
       |   +- i686-w64-mingw32-g++
       |   +- i686-w64-mingw32-strip
       |   +- i686-w64-mingw32-ld
       |   +- ... etc..
       |   +- x86_64-w64-mingw32-cpp
       |   +- x86_64-w64-mingw32-gcc
       |   +- x86_64-w64-mingw32-g++
       |   +- x86_64-w64-mingw32-strip
       |   +- x86_64-w64-mingw32-ld
       |   +- ... etc..
       |
       +- lib
       |    |
       |    +- gcc - (cross-compiler)
       |         |
       |         +-i686-w64-mingw32
       |         +-x86_64-w64-mingw32
       |
       +- i686-w64-mingw32  - root of x86 toolchain and binaries
       |    |
       |    +- bin  - Cross compiler toolchain  
       |    |   |
       |    |   +- cpp
       |    |   +- gcc
       |    |   +- g++
       |    |   +- strip
       |    |   +- ld
       |    |   +- ... etc ...
       |    |
       |    +- lib  - Cross compiler toolchain support libraries / files
       |    |
       |    +- include  - Cross compiler toolchain support headers / files
       |    |
       |    +- sys-root  - root for cross compiled binaries
       |        |
       |        +- mingw
       |             |
       |             +- bin     - cross-compiled binaries & runtime DLL parts
       |             +- doc     - documentation
       |             +- include - include files for cross compiled libs
       |             +- lib     - cross-compiled static libraries & linktime DLL parts
       |             |   |
       |             |   +- pkgconfig  - pkg-config definitions for libraries
       |             |
       |             +- share
       |             |
       |             +- man
       |
       +- x86_64-w64-mingw32  - root of x86_64 toolchain and binaries (same layout as for x86)
       |
       +- i686-gnu-linux - native triplet
            |
            +- i686-w64-mingw32 - cross-triplet with libopcodes and libbfd
            |  |
            |  +-include
            |  +-lib
            |
            |
            +- x86_64-w64-mingw32 - cross-triplet with libopcodes and libbfd
               |
               +-include
               +-lib

Rationale

This should be the description of why this spec is being defined.

Scope and Use Cases

While not always required, but in many cases they bring much better clarity to the scope and scale of the specification than could be obtained by talking in abstract terms.

Implementation Plan

This section is usually broken down into subsections, such as the packages being affected, data and system migration where necessary, user interface requirements and pictures (photographs of drawings on paper work well).

Implementation

To implement a specification, the developer should observe the use cases carefully, and follow the design specified. He should make note of places in which he has strayed from the design section, adding rationale describing why this happened. This is important so that next iterations of this specification (and new specifications that touch upon this subject) can use the specification as a reference.

The implementation is very dependent on the type of feature to be implemented. Refer to the team leader for further suggestions and guidance on this topic.

Outstanding Issues

The specification process requires experienced people to drive it. More documentation on the process should be produced.

The drafting of a specification requires english skills and a very good understanding of the problem. It must also describe things to an extent that someone else could implement. This is a difficult set of conditions to ensure throughout all the specifications added.

There is a lot of difficulty in gardening obsolete, unwanted and abandoned specifications in the Wiki.

BoF agenda and discussion

Possible meetins where this specification will be discussed.


CategorySpec