config/binutils.in
author Bernhard Walle <bernhard@bwalle.de>
Sun May 11 13:00:36 2014 +0200 (2014-05-11)
changeset 3318 579bc9107f99
parent 3120 f32c0f8ffaa3
permissions -rw-r--r--
complibs/ppl: Fix build of ppl 0.11.2 with gcc 4.9

From: Roberto Bagnara <bagnara@cs.unipr.it>
Date: Tue, 29 Apr 2014 19:51:43 +0000 (+0200)
Subject: Added missing inclusions. Use std::ptrdiff_t.
X-Git-Url: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl%2Fppl.git;a=commitdiff;h=61d4e14dfd9f1121e9b4521dead5728b2424dd7c

Added missing inclusions. Use std::ptrdiff_t.
(Thanks to Paulo Cesar Pereira de Andrade.)

Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
Message-Id: <5632a171e7c1dc4c0fb5.1399806148@euler.fritz.box>
Patchwork-Id: 347777
     1 # Binary utilities menu
     2 
     3 menu "Binary utilities"
     4 
     5 choice
     6     bool
     7     prompt "Binary format:"
     8 
     9 config ARCH_BINFMT_ELF
    10     bool
    11     prompt "ELF"
    12     depends on ARCH_USE_MMU || BARE_METAL
    13     help
    14       This will make your system build ELF executables,
    15       suitable for architectures with an MMU.
    16 
    17 config ARCH_BINFMT_FLAT
    18     bool
    19     prompt "Flat"
    20     depends on ! ARCH_USE_MMU
    21     help
    22       This will build flat binaries, suitable for
    23       MMU-less architectures.
    24 
    25 config ARCH_BINFMT_FDPIC
    26     bool
    27     prompt "FD_PIC ELF"
    28     depends on ! ARCH_USE_MMU
    29     help
    30       This will build FD_PIC ELF binaries, suitable for
    31       MMU-less architectures that still require to use
    32       shared libraries (FIXME).
    33 
    34 endchoice
    35 
    36 config BINUTILS
    37     string
    38 
    39 source "config.gen/binutils.in"
    40 source "config.gen/binutils.in.2"
    41 
    42 endmenu