summaryrefslogtreecommitdiff
path: root/libexpat/libexpat/buildfile
blob: 65aacc476e6a09ead2921f55e84b6a4b332e80b6 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# file      : libexpat/buildfile
# license   : MIT; see accompanying COPYING file

# xmltok_{impl,nc}.c files are included into xmltok.c, so exclude them from
# the compilation.
#
lib{expat}: h{*} c{* -xmltok_impl -xmltok_ns}
lib{expat}: c{xmltok_impl xmltok_ns}: include = false

tclass = $c.target.class

windows = ($tclass == 'windows')

# Symbol exporting on Windows is done via the .def file.
#
libs{expat}: def{libexpat}: include = $windows
def{libexpat}: file{libexpat.def.orig}
{{
  # Remove the 'LIBRARY' line from the .def file to make it acceptable for the
  # MinGW linker.
  #
  sed -e 's/^\s*LIBRARY\s*$//' $path($<) >$path($>)
}}

# Build options.
#
c.poptions += -DHAVE_EXPAT_CONFIG_H
c.poptions =+ "-I$src_base"

if ($c.class == 'gcc')
{
  # Note that it's unlikely that the code is strict aliasing-safe, given that
  # the -fno-strict-aliasing option is added in the later library versions.
  # Let's also add this option for good measure.
  #
  c.coptions += -fexceptions -fno-strict-aliasing

  # Disable warnings that pop up with -Wall -Wextra.
  #
  # Note that -Wno-implicit-fallthrough is only supported starting from GCC 7
  # and Clang 3.9. However, we don't check for the compiler version since the
  # earlier compiler versions do not complain about unknown -Wno-* options,
  # unless some other diagnostics is issued.
  #
  # Also note that these warnings can be build2-specific due to the
  # intermediate translation unit pre-processing phase, which wipes the `fall
  # through` comments from the macro definitions.
  #
  c.coptions += -Wno-implicit-fallthrough
}

switch $tclass
{
  case 'linux' | 'bsd'
  {
    # Make sure all symbols are resolvable.
    #
    c.loptions += -Wl,--no-undefined
  }
}

# Export options.
#
lib{expat}:  cc.export.poptions  = "-I$src_base"
liba{expat}: cc.export.poptions += -DXML_STATIC

# See bootstrap.build for details.
#
if $version.pre_release
  lib{expat}: bin.lib.version = @"-$version.project_id"
else
  lib{expat}: bin.lib.version = @"-$abi_version_major" linux@"$abi_version"

# Install the bare minimum of headers (note: not recreating subdirectories).
#
h{*}: install = false

for h: expat expat_external expat_config
  h{$h}@./: install = include/