Changeset dc5c303 in mainline for uspace/lib/c/meson.build


Ignore:
Timestamp:
2023-12-28T13:59:23Z (14 months ago)
Author:
GitHub <noreply@…>
Children:
6b66de6b
Parents:
42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
git-committer:
GitHub <noreply@…> (2023-12-28 13:59:23)
Message:

Merge branch 'master' into topic/packet-capture

File:
1 edited

Legend:

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

    r42c2e65 rdc5c303  
    11#
     2# Copyright (c) 2023 Jiri Svoboda
    23# Copyright (c) 2005 Martin Decky
    34# Copyright (c) 2007 Jakub Jermar
     
    4142        root_path / 'abi' / 'arch' / UARCH / 'include',
    4243        root_path / 'abi' / 'include',
     44        root_path / 'common' / 'include',
    4345]
    4446
     
    4648
    4749allow_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.
    5150
    5251uspace_lib_devel_install_script_text += 'mkdir -p "${DESTDIR}include/libc"'
     
    5958
    6059src += 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
    6176        'generic/libc.c',
     77        'generic/adt/prodcons.c',
    6278        'generic/as.c',
    6379        'generic/ddi.c',
    6480        'generic/perm.c',
    6581        'generic/capa.c',
    66         'generic/clipboard.c',
    6782        'generic/config.c',
    6883        'generic/context.c',
    69         'generic/corecfg.c',
    70         'generic/ctype.c',
    7184        'generic/device/clock_dev.c',
    7285        'generic/device/hw_res.c',
     
    8093        'generic/event.c',
    8194        'generic/errno.c',
    82         'generic/gsort.c',
    8395        'generic/inttypes.c',
    84         'generic/ipc_test.c',
    8596        'generic/loc.c',
    86         'generic/mem.c',
    87         'generic/str.c',
    8897        'generic/string.c',
    89         'generic/str_error.c',
    90         'generic/strtol.c',
    9198        'generic/l18n/langs.c',
    9299        'generic/pcb.c',
     
    96103        'generic/imath.c',
    97104        'generic/io/asprintf.c',
    98         'generic/io/input.c',
    99105        'generic/io/io.c',
    100         'generic/io/chargrid.c',
    101         'generic/io/output.c',
    102106        'generic/io/printf.c',
    103107        'generic/io/log.c',
     
    108112        'generic/io/vprintf.c',
    109113        'generic/io/vsnprintf.c',
    110         'generic/io/printf_core.c',
    111         'generic/io/con_srv.c',
    112         'generic/io/console.c',
    113114        'generic/io/table.c',
    114115        'generic/irq.c',
     
    137138        'generic/loader.c',
    138139        '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',
    145140        'generic/time.c',
    146141        'generic/tmpfile.c',
     
    158153        'generic/stats.c',
    159154        'generic/assert.c',
    160         'generic/bsearch.c',
    161         'generic/qsort.c',
    162155        'generic/ubsan.c',
    163156        'generic/uuid.c',
     
    186179        'test/inttypes.c',
    187180        'test/io/table.c',
     181        'test/loc.c',
    188182        'test/main.c',
    189183        'test/mem.c',
Note: See TracChangeset for help on using the changeset viewer.