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