Changes in uspace/lib/c/meson.build [10fc93c:5fc8244] in mainline
- File:
-
- 1 edited
-
uspace/lib/c/meson.build (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/meson.build
r10fc93c r5fc8244 1 1 # 2 # Copyright (c) 2023 Jiri Svoboda3 2 # Copyright (c) 2005 Martin Decky 4 3 # Copyright (c) 2007 Jakub Jermar … … 42 41 root_path / 'abi' / 'arch' / UARCH / 'include', 43 42 root_path / 'abi' / 'include', 44 root_path / 'common' / 'include',45 43 ] 46 44 … … 48 46 49 47 allow_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. 50 51 51 52 uspace_lib_devel_install_script_text += 'mkdir -p "${DESTDIR}include/libc"' … … 58 59 59 60 src += 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 76 61 'generic/libc.c', 77 'generic/adt/prodcons.c',78 62 'generic/as.c', 79 63 'generic/ddi.c', 80 64 'generic/perm.c', 81 65 'generic/capa.c', 66 'generic/clipboard.c', 82 67 'generic/config.c', 83 68 'generic/context.c', 69 'generic/corecfg.c', 70 'generic/ctype.c', 84 71 'generic/device/clock_dev.c', 85 72 'generic/device/hw_res.c', … … 93 80 'generic/event.c', 94 81 'generic/errno.c', 82 'generic/gsort.c', 95 83 'generic/inttypes.c', 84 'generic/ipc_test.c', 96 85 'generic/loc.c', 86 'generic/mem.c', 87 'generic/str.c', 97 88 'generic/string.c', 89 'generic/str_error.c', 90 'generic/strtol.c', 98 91 'generic/l18n/langs.c', 99 92 'generic/pcb.c', … … 103 96 'generic/imath.c', 104 97 'generic/io/asprintf.c', 98 'generic/io/input.c', 105 99 'generic/io/io.c', 100 'generic/io/chargrid.c', 101 'generic/io/output.c', 106 102 'generic/io/printf.c', 107 103 'generic/io/log.c', … … 112 108 'generic/io/vprintf.c', 113 109 'generic/io/vsnprintf.c', 110 'generic/io/printf_core.c', 111 'generic/io/con_srv.c', 112 'generic/io/console.c', 114 113 'generic/io/table.c', 115 114 'generic/irq.c', … … 138 137 'generic/loader.c', 139 138 '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', 140 145 'generic/time.c', 141 146 'generic/tmpfile.c', … … 153 158 'generic/stats.c', 154 159 'generic/assert.c', 160 'generic/bsearch.c', 161 'generic/qsort.c', 155 162 'generic/ubsan.c', 156 163 'generic/uuid.c', … … 179 186 'test/inttypes.c', 180 187 'test/io/table.c', 181 'test/loc.c',182 188 'test/main.c', 183 189 'test/mem.c',
Note:
See TracChangeset
for help on using the changeset viewer.
