aboutsummaryrefslogtreecommitdiff
path: root/tools/depends/target/openssl/16-kodi.conf
blob: eccb609a27993c85b5101ee45531a08691f6fdba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#### Kodi dependency build configs for Apple Platforms
#
# Provide our system specific configs.
# Allows us to pass through our CFLAGS, and also adds a tvos target
#
my %targets = (
    "kodi-darwin64-x86_64" => {
        inherit_from     => [ "darwin-common", asm("x86_64_asm") ],
        cflags           => add("\$(CFLAGS)"),
        lib_cppflags     => add("-DL_ENDIAN"),
        bn_ops           => "SIXTY_FOUR_BIT_LONG",
        perlasm_scheme   => "macosx",
    },
    "kodi-darwin64-arm64" => {
        inherit_from     => [ "darwin-common", asm("aarch64_asm") ],
        cflags           => add("\$(CFLAGS)"),
        lib_cppflags     => add("-DL_ENDIAN"),
        bn_ops           => "SIXTY_FOUR_BIT_LONG",
        perlasm_scheme   => "ios64",
    },
    "kodi-iphoneos-arm64" => {
        inherit_from     => [ "ios-common", asm("aarch64_asm") ],
        cflags           => add("\$(CFLAGS)"),
        bn_ops           => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
        perlasm_scheme   => "ios64",
    },
    "kodi-appletvos-arm64" => {
        inherit_from     => [ "ios-common", asm("aarch64_asm") ],
        cflags           => add("\$(CFLAGS)"),
        defines          => [ "HAVE_FORK=0" ],
        bn_ops           => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
        perlasm_scheme   => "ios64",
        sys_id           => "tvOS",
    },
);