lfn
serial
ticket/834-toolchain-update
topic/msim-upgrade
topic/simplify-dev-export
Last change
on this file since d63c842 was d63c842, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 6 years ago |
more unification
|
-
Property mode
set to
100755
|
File size:
637 bytes
|
Rev | Line | |
---|
[5fd05862] | 1 | #!/bin/sh
|
---|
| 2 |
|
---|
| 3 | export CONFIG_DEVEL_FILES=$1
|
---|
| 4 |
|
---|
| 5 | (
|
---|
| 6 | # Install generated map files into the 'debug' subdirectory.
|
---|
| 7 |
|
---|
| 8 | echo "######## Installing library map files ########"
|
---|
| 9 |
|
---|
| 10 | # TODO: add configuration option to install debug files
|
---|
| 11 |
|
---|
| 12 | if false; then
|
---|
| 13 | cd ${MESON_BUILD_ROOT}/uspace
|
---|
| 14 | find -name '*.map' -a -path './lib/*' | sed 's:^\./::' | xargs --verbose -I'@' install -C -D -m644 -T '@' "${MESON_INSTALL_DESTDIR_PREFIX}debug/"'@'
|
---|
| 15 | fi
|
---|
| 16 |
|
---|
| 17 | # Install library headers that are mixed in with source files (no separate 'include' subdir).
|
---|
| 18 | # The properly separated headers are installed by the meson script.
|
---|
| 19 |
|
---|
| 20 | ) > ${MESON_BUILD_ROOT}/install_custom.log 2>&1
|
---|
Note:
See
TracBrowser
for help on using the repository browser.