config/companion_libs/gmp.in
author Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed Apr 07 09:20:05 2010 +0200 (2010-04-07)
changeset 1887 5d872df743fe
parent 1615 50b25816f5bb
child 1912 bcc0d5943bfa
permissions -rw-r--r--
Re-enable the FD_PIC ELF configuration option

Blackfin uses FD_PIC ELF format to provide shared libraries on a
non-MMU architecture.
     1 # GMP options
     2 
     3 choice
     4     bool
     5     prompt "GMP version"
     6 # Don't remove next line
     7 # CT_INSERT_VERSION_BELOW
     8 
     9 config GMP_V_5_0_1
    10     bool
    11     prompt "5.0.1"
    12 
    13 config GMP_V_4_3_2
    14     bool
    15     prompt "4.3.2"
    16 
    17 config GMP_V_4_3_1
    18     bool
    19     prompt "4.3.1"
    20 
    21 config GMP_V_4_3_0
    22     bool
    23     prompt "4.3.0"
    24 
    25 config GMP_V_4_2_4
    26     bool
    27     prompt "4.2.4 (OBSOLETE)"
    28     depends on OBSOLETE
    29 
    30 config GMP_V_4_2_2
    31     bool
    32     prompt "4.2.2 (OBSOLETE)"
    33     depends on OBSOLETE
    34 
    35 endchoice
    36 
    37 config GMP_VERSION
    38     string
    39 # Don't remove next line
    40 # CT_INSERT_VERSION_STRING_BELOW
    41     default "5.0.1" if GMP_V_5_0_1
    42     default "4.3.2" if GMP_V_4_3_2
    43     default "4.3.1" if GMP_V_4_3_1
    44     default "4.3.0" if GMP_V_4_3_0
    45     default "4.2.4" if GMP_V_4_2_4
    46     default "4.2.2" if GMP_V_4_2_2