Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/meson.build

    r10fc93c r5fc8244  
    11#
    2 # Copyright (c) 2023 Jiri Svoboda
    32# Copyright (c) 2005 Martin Decky
    43# Copyright (c) 2007 Jakub Jermar
     
    4241        root_path / 'abi' / 'arch' / UARCH / 'include',
    4342        root_path / 'abi' / 'include',
    44         root_path / 'common' / 'include',
    4543]
    4644
     
    4846
    4947allow_shared = true
     48
     49# FIXME: symlinks from uspace to kernel will break in future Meson version
     50#        we should instead move the duplicated library parts into a shared location.
    5051
    5152uspace_lib_devel_install_script_text += 'mkdir -p "${DESTDIR}include/libc"'
     
    5859
    5960src += files(
    60         'common/adt/checksum.c',
    61         'common/adt/circ_buf.c',
    62         'common/adt/list.c',
    63         'common/adt/hash_table.c',
    64         'common/adt/odict.c',
    65         'common/printf/printf_core.c',
    66         'common/stdc/ctype.c',
    67         'common/stdc/mem.c',
    68         'common/stdc/bsearch.c',
    69         'common/stdc/qsort.c',
    70         'common/stdc/calloc.c',
    71         'common/gsort.c',
    72         'common/str.c',
    73         'common/str_error.c',
    74         'common/strtol.c',
    75 
    7661        'generic/libc.c',
    77         'generic/adt/prodcons.c',
    7862        'generic/as.c',
    7963        'generic/ddi.c',
    8064        'generic/perm.c',
    8165        'generic/capa.c',
     66        'generic/clipboard.c',
    8267        'generic/config.c',
    8368        'generic/context.c',
     69        'generic/corecfg.c',
     70        'generic/ctype.c',
    8471        'generic/device/clock_dev.c',
    8572        'generic/device/hw_res.c',
     
    9380        'generic/event.c',
    9481        'generic/errno.c',
     82        'generic/gsort.c',
    9583        'generic/inttypes.c',
     84        'generic/ipc_test.c',
    9685        'generic/loc.c',
     86        'generic/mem.c',
     87        'generic/str.c',
    9788        'generic/string.c',
     89        'generic/str_error.c',
     90        'generic/strtol.c',
    9891        'generic/l18n/langs.c',
    9992        'generic/pcb.c',
     
    10396        'generic/imath.c',
    10497        'generic/io/asprintf.c',
     98        'generic/io/input.c',
    10599        'generic/io/io.c',
     100        'generic/io/chargrid.c',
     101        'generic/io/output.c',
    106102        'generic/io/printf.c',
    107103        'generic/io/log.c',
     
    112108        'generic/io/vprintf.c',
    113109        'generic/io/vsnprintf.c',
     110        'generic/io/printf_core.c',
     111        'generic/io/con_srv.c',
     112        'generic/io/console.c',
    114113        'generic/io/table.c',
    115114        'generic/irq.c',
     
    138137        'generic/loader.c',
    139138        'generic/getopt.c',
     139        'generic/adt/checksum.c',
     140        'generic/adt/circ_buf.c',
     141        'generic/adt/list.c',
     142        'generic/adt/hash_table.c',
     143        'generic/adt/odict.c',
     144        'generic/adt/prodcons.c',
    140145        'generic/time.c',
    141146        'generic/tmpfile.c',
     
    153158        'generic/stats.c',
    154159        'generic/assert.c',
     160        'generic/bsearch.c',
     161        'generic/qsort.c',
    155162        'generic/ubsan.c',
    156163        'generic/uuid.c',
     
    179186        'test/inttypes.c',
    180187        'test/io/table.c',
    181         'test/loc.c',
    182188        'test/main.c',
    183189        'test/mem.c',
Note: See TracChangeset for help on using the changeset viewer.