mirror of
https://github.com/systemd/systemd.git
synced 2024-12-21 13:34:21 +03:00
0e44a351ea
If the editor that invokes mkosi.clangd is a flatpak, let's make sure that mkosi is run on the host and not in the flatpak sandbox since it won't be installed there.
28 lines
789 B
Bash
Executable File
28 lines
789 B
Bash
Executable File
#!/bin/bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
if command -v flatpak-spawn >/dev/null; then
|
|
SPAWN=(flatpak-spawn --host)
|
|
else
|
|
SPAWN=()
|
|
fi
|
|
|
|
MKOSI_CONFIG="$("${SPAWN[@]}" --host mkosi --json summary | jq -r .Images[-1])"
|
|
DISTRIBUTION="$(jq -r .Distribution <<< "$MKOSI_CONFIG")"
|
|
RELEASE="$(jq -r .Release <<< "$MKOSI_CONFIG")"
|
|
ARCH="$(jq -r .Architecture <<< "$MKOSI_CONFIG")"
|
|
|
|
exec "${SPAWN[@]}" mkosi \
|
|
--incremental=strict \
|
|
--build-sources-ephemeral=no \
|
|
--format=none \
|
|
build \
|
|
clangd \
|
|
--compile-commands-dir=/work/build \
|
|
--path-mappings="\
|
|
$(pwd)=/work/src,\
|
|
$(pwd)/build/mkosi.builddir/$DISTRIBUTION~$RELEASE~$ARCH/=/work/build,\
|
|
$(pwd)/build/mkosi.cache/$DISTRIBUTION~$RELEASE~$ARCH~build.cache/usr/include/=/usr/include" \
|
|
"$@"
|
|
|