Rename project from vesperprofiled to pawletprofiled (PawletOS fork)

This checkout is PawletOS's fork (git.oxmc.me/PawletOS/profiled), so its
own identity should read PawletOS, not VesperOS: binary/package name,
AIDL package+interface (me.oxmc.vesperos.profile -> os.pawlet.profiled),
D-Bus service/object/error names, C++ namespace (vesperos::profile ->
pawletos::profile), sepolicy types, data paths (/data/system/vesperos ->
/data/system/pawletos, /etc/vesperprofiled -> /etc/pawletprofiled), the
vendored OpenSSL static-lib module names, and the ZTE protocol string.

Also drops generated build output (obj-x86_64-linux-gnu/, debian/.debhelper,
debian staging dir, debhelper log/substvars files) that had been committed
by mistake, and adds a .gitignore so they don't come back.

The stock/upstream vesperprofiled at git.oxmc.me/VesperOS/vesperprofiled
is untouched -- this commit only goes to the pawletos remote.
This commit is contained in:
2026-07-25 00:50:46 -07:00
parent 3007839721
commit a86ad3298e
168 changed files with 737 additions and 6648 deletions
+13
View File
@@ -0,0 +1,13 @@
# CMake build output
obj-*/
build/
# debhelper generated packaging output
debian/.debhelper/
debian/*.debhelper.log
debian/*.substvars
debian/files
debian/debhelper-build-stamp
debian/pawletprofiled/
debian/pawletprofiled/
debian/*.postrm.debhelper
+19 -19
View File
@@ -1,17 +1,17 @@
// vendor/oxmc/vesperprofiled/Android.bp
// vendor/oxmc/pawletprofiled/Android.bp
// ─────────────────────────────────────────────────────────────────────────
// Drop this entire directory at vendor/oxmc/vesperprofiled/ and add
// "vesperprofiled" to PRODUCT_PACKAGES in your device makefile.
// Drop this entire directory at vendor/oxmc/pawletprofiled/ and add
// "pawletprofiled" to PRODUCT_PACKAGES in your device makefile.
//
// m vesperprofiled — build the daemon
// m me.oxmc.vesperos.profile-V1-java — build Java stubs for system apps
// m pawletprofiled — build the daemon
// m os.pawlet.profiled-V1-java — build Java stubs for system apps
// ─────────────────────────────────────────────────────────────────────────
// ── AIDL interface ────────────────────────────────────────────────────────
aidl_interface {
name: "me.oxmc.vesperos.profile",
srcs: ["aidl/me/oxmc/vesperos/profile/IVesperProfileService.aidl"],
name: "os.pawlet.profiled",
srcs: ["aidl/os/pawlet/profiled/IPawletProfileService.aidl"],
stability: "vintf",
vendor_available: false,
backend: {
@@ -35,7 +35,7 @@ aidl_interface {
// links a private static copy instead of touching the platform's crypto
// libs. third_party/openssl-android/Android.bp is picked up automatically
// by Soong's normal recursive discovery — nothing to reference here beyond
// the module names ("libssl_vesper_static" / "libcrypto_vesper_static")
// the module names ("libssl_pawlet_static" / "libcrypto_pawlet_static")
// used in static_libs below.
// ── Native daemon ─────────────────────────────────────────────────────────
@@ -43,17 +43,17 @@ aidl_interface {
// This file is the Android/Soong build only — the Linux/D-Bus build lives
// in CMakeLists.txt and is entirely separate. Accordingly the source list
// below is the Android-specific set: main_android.cpp (Binder entry point)
// and VesperProfileBinderService.cpp instead of main.cpp/VesperProfileService.cpp
// and PawletProfileBinderService.cpp instead of main.cpp/PawletProfileService.cpp
// (D-Bus), and no ZTE client (it watches NetworkManager over D-Bus, which
// doesn't exist on Android — separate follow-up work, see main_android.cpp's
// header comment).
cc_binary {
name: "vesperprofiled",
name: "pawletprofiled",
srcs: [
"src/main_android.cpp",
"src/VesperProfileBinderService.cpp",
"src/PawletProfileBinderService.cpp",
"src/ProfileParser.cpp",
"src/ProfileStore.cpp",
"src/SignatureVerifier.cpp",
@@ -81,13 +81,13 @@ cc_binary {
"libbinder_ndk",
"libbase",
"liblog",
"me.oxmc.vesperos.profile-V1-ndk",
"os.pawlet.profiled-V1-ndk",
],
static_libs: [
"libyaml",
"libssl_vesper_static",
"libcrypto_vesper_static",
"libssl_pawlet_static",
"libcrypto_pawlet_static",
],
cflags: [
@@ -97,16 +97,16 @@ cc_binary {
"-std=c++17",
],
init_rc: ["vesperprofiled.rc"],
vintf_fragments: ["vesperprofiled.xml"],
init_rc: ["pawletprofiled.rc"],
vintf_fragments: ["pawletprofiled.xml"],
required: ["vesperprofiled_sepolicy"],
required: ["pawletprofiled_sepolicy"],
}
// ── SELinux policy shim ───────────────────────────────────────────────────
prebuilt_etc {
name: "vesperprofiled_sepolicy",
src: "sepolicy/vesperprofiled.te",
name: "pawletprofiled_sepolicy",
src: "sepolicy/pawletprofiled.te",
sub_dir: "selinux",
}
+13 -13
View File
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.18)
project(vesperprofiled VERSION 1.0.0 LANGUAGES CXX)
project(pawletprofiled VERSION 1.0.0 LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
@@ -24,7 +24,7 @@ pkg_check_modules(SYSTEMD REQUIRED libsystemd)
# ── Sources ────────────────────────────────────────────────────────────────
set(SOURCES
src/main.cpp
src/VesperProfileService.cpp
src/PawletProfileService.cpp
src/ProfileParser.cpp
src/ProfileStore.cpp
src/SignatureVerifier.cpp
@@ -51,9 +51,9 @@ set(SOURCES
src/zte/ConnectivityWatcher.cpp
)
add_executable(vesperprofiled ${SOURCES})
add_executable(pawletprofiled ${SOURCES})
target_include_directories(vesperprofiled PRIVATE
target_include_directories(pawletprofiled PRIVATE
src/
${OPENSSL_INCLUDE_DIRS}
${LIBYAML_INCLUDE_DIRS}
@@ -62,7 +62,7 @@ target_include_directories(vesperprofiled PRIVATE
${CURL_INCLUDE_DIRS}
)
target_link_libraries(vesperprofiled PRIVATE
target_link_libraries(pawletprofiled PRIVATE
${OPENSSL_LIBRARIES}
${LIBYAML_LIBRARIES}
${DBUS_LIBRARIES}
@@ -71,7 +71,7 @@ target_link_libraries(vesperprofiled PRIVATE
pthread
)
target_compile_options(vesperprofiled PRIVATE
target_compile_options(pawletprofiled PRIVATE
-Wall -Wextra -Werror
${OPENSSL_CFLAGS_OTHER}
${LIBYAML_CFLAGS_OTHER}
@@ -83,22 +83,22 @@ target_compile_options(vesperprofiled PRIVATE
# ── Install ────────────────────────────────────────────────────────────────
include(GNUInstallDirs)
install(TARGETS vesperprofiled
install(TARGETS pawletprofiled
RUNTIME DESTINATION ${CMAKE_INSTALL_SBINDIR}
)
install(FILES systemd/vesperprofiled.service
install(FILES systemd/pawletprofiled.service
DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/systemd/system
)
install(FILES dbus/me.oxmc.vesperos.ProfileService.conf
install(FILES dbus/os.pawlet.ProfiledService.conf
DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/dbus-1/system.d
)
install(FILES apparmor/vesperprofiled
install(FILES apparmor/pawletprofiled
DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/apparmor.d
)
install(FILES zte.conf.example
DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/vesperprofiled
DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/pawletprofiled
RENAME zte.conf.example
)
# Note: profile.schema.yml is NOT installed here — it is owned by the
# vesperprofiled-config-schema package and installed at
# /usr/share/vesperprofiled/schema/profile.schema.yml
# pawletprofiled-config-schema package and installed at
# /usr/share/pawletprofiled/schema/profile.schema.yml
+51 -51
View File
@@ -1,18 +1,18 @@
# vesperprofiled
# pawletprofiled
VesperOS unified device management daemon.
PawletOS unified device management daemon.
One binary. Two subsystems. Ships on every VesperOS device.
One binary. Two subsystems. Ships on every PawletOS device.
---
## Subsystems
### Profile Service
D-Bus system service at `me.oxmc.vesperos.ProfileService`.
D-Bus system service at `os.pawlet.ProfiledService`.
Parses, verifies, persists, and applies `.vconfig` profiles.
The allowed payload types are controlled by the separately-installed
`vesperprofiled-config-schema` package — OEMs can restrict the
`pawletprofiled-config-schema` package — OEMs can restrict the
configuration surface without touching the daemon binary.
### ZTE Client
@@ -29,19 +29,19 @@ enrolls on the first successful connection later.
## Package layout
```
vesperprofiled/
pawletprofiled/
├── Android.bp AOSP Soong build
├── CMakeLists.txt Linux CMake build
├── vesperprofiled.rc Android init script
├── vesperprofiled.xml Android VINTF fragment
├── pawletprofiled.rc Android init script
├── pawletprofiled.xml Android VINTF fragment
├── zte.conf.example ZTE client config
├── aidl/me/oxmc/vesperos/profile/
│ └── IVesperProfileService.aidl Binder interface (Android)
├── aidl/os/pawlet/profiled/
│ └── IPawletProfileService.aidl Binder interface (Android)
├── src/
│ ├── main.cpp Entry point
│ ├── VesperProfileService.h/.cpp D-Bus service (Linux)
│ ├── PawletProfileService.h/.cpp D-Bus service (Linux)
│ ├── ProfileParser.h/.cpp YAML parser (libyaml)
│ ├── ProfileStore.h/.cpp Disk persistence + password hashing
│ ├── SignatureVerifier.h/.cpp CMS/PKCS#7 verification (OpenSSL)
@@ -54,9 +54,9 @@ vesperprofiled/
│ ├── ZTELookupClient.h/.cpp ZTE server HTTPS client (libcurl)
│ └── ConnectivityWatcher.h/.cpp NM D-Bus connectivity watcher
├── systemd/vesperprofiled.service Systemd unit
├── dbus/me.oxmc.vesperos.ProfileService.conf D-Bus policy
├── apparmor/vesperprofiled AppArmor MAC profile
├── systemd/pawletprofiled.service Systemd unit
├── dbus/os.pawlet.ProfiledService.conf D-Bus policy
├── apparmor/pawletprofiled AppArmor MAC profile
├── sepolicy/ Android SELinux policy
└── debian/ Debian Trixie packaging
```
@@ -68,7 +68,7 @@ vesperprofiled/
### Runtime
| Package | Used for |
|---|---|
| `vesperprofiled-config-schema` | Schema defining allowed payload types |
| `pawletprofiled-config-schema` | Schema defining allowed payload types |
| `libssl3` | CMS signature verification, PBKDF2 |
| `libyaml-0-2` | YAML parsing |
| `libdbus-1-3` | D-Bus system service |
@@ -99,11 +99,11 @@ sudo apt install -y \
cmake libssl-dev libyaml-dev libdbus-1-dev \
libsystemd-dev libcurl4-openssl-dev pkg-config
# Build .deb (includes vesperprofiled-config-schema as a dep)
# Build .deb (includes pawletprofiled-config-schema as a dep)
dpkg-buildpackage -us -uc -b
sudo apt install \
../vesperprofiled-config-schema_1.0.0-1_all.deb \
../vesperprofiled_1.0.0-1_amd64.deb
../pawletprofiled-config-schema_1.0.0-1_all.deb \
../pawletprofiled_1.0.0-1_amd64.deb
# Or build without packaging
cmake -B build -DCMAKE_BUILD_TYPE=Release
@@ -116,16 +116,16 @@ sudo cmake --install build
## Building — Android (AOSP)
```bash
cp -r vesperprofiled/ $AOSP_ROOT/vendor/oxmc/vesperprofiled/
cp -r pawletprofiled/ $AOSP_ROOT/vendor/oxmc/pawletprofiled/
# Add to device makefile
echo 'PRODUCT_PACKAGES += vesperprofiled' \
>> device/oxmc/vesperos/vesperos.mk
echo 'BOARD_SEPOLICY_DIRS += vendor/oxmc/vesperprofiled/sepolicy' \
>> device/oxmc/vesperos/BoardConfig.mk
echo 'PRODUCT_PACKAGES += pawletprofiled' \
>> device/oxmc/pawletos/pawletos.mk
echo 'BOARD_SEPOLICY_DIRS += vendor/oxmc/pawletprofiled/sepolicy' \
>> device/oxmc/pawletos/BoardConfig.mk
source build/envsetup.sh && lunch vesperos_arm64-userdebug
m vesperprofiled
source build/envsetup.sh && lunch pawletos_arm64-userdebug
m pawletprofiled
```
---
@@ -134,25 +134,25 @@ m vesperprofiled
```bash
# Service status
systemctl status vesperprofiled
systemctl status pawletprofiled
# D-Bus connectivity
dbus-send --system --print-reply \
--dest=me.oxmc.vesperos.ProfileService \
/me/oxmc/vesperos/ProfileService \
me.oxmc.vesperos.IProfileService.IsDeviceManaged
--dest=os.pawlet.ProfiledService \
/os/pawlet/ProfiledService \
os.pawlet.IProfiledService.IsDeviceManaged
# List installed profiles
dbus-send --system --print-reply \
--dest=me.oxmc.vesperos.ProfileService \
/me/oxmc/vesperos/ProfileService \
me.oxmc.vesperos.IProfileService.ListProfiles
--dest=os.pawlet.ProfiledService \
/os/pawlet/ProfiledService \
os.pawlet.IProfiledService.ListProfiles
# ZTE enrollment state
cat /var/lib/vesperprofiled/zte_state.json
cat /var/lib/pawletprofiled/zte_state.json
# Live logs
journalctl -u vesperprofiled -f
journalctl -u pawletprofiled -f
```
---
@@ -167,9 +167,9 @@ with open(sys.argv[1], 'rb') as f:
data = f.read()
bus = dbus.SystemBus()
obj = bus.get_object('me.oxmc.vesperos.ProfileService',
'/me/oxmc/vesperos/ProfileService')
svc = dbus.Interface(obj, 'me.oxmc.vesperos.IProfileService')
obj = bus.get_object('os.pawlet.ProfiledService',
'/os/pawlet/ProfiledService')
svc = dbus.Interface(obj, 'os.pawlet.IProfiledService')
uuid = svc.InstallProfile(dbus.ByteArray(data))
print('Installed profile UUID:', uuid)
```
@@ -184,25 +184,25 @@ must be CMS/PKCS#7 signed. Unsigned profiles install with a trust warning.
```bash
# Generate a development signing key and CA
openssl req -x509 -newkey rsa:4096 -days 3650 -nodes \
-keyout /etc/vesperprofiled/signing_key.pem \
-out /etc/vesperprofiled/profile_ca.pem \
-subj "/CN=VesperOS Profile Signing/O=oxmc"
-keyout /etc/pawletprofiled/signing_key.pem \
-out /etc/pawletprofiled/profile_ca.pem \
-subj "/CN=PawletOS Profile Signing/O=oxmc"
# Sign a profile
openssl cms -sign \
-in my.vconfig \
-out my.signed.vconfig \
-signer /etc/vesperprofiled/profile_ca.pem \
-inkey /etc/vesperprofiled/signing_key.pem \
-signer /etc/pawletprofiled/profile_ca.pem \
-inkey /etc/pawletprofiled/signing_key.pem \
-outform DER -nodetach
```
The CA at `/etc/vesperprofiled/profile_ca.pem` is trusted automatically.
The CA at `/etc/pawletprofiled/profile_ca.pem` is trusted automatically.
For a system-wide trusted badge, also install it as a system CA:
```bash
cp /etc/vesperprofiled/profile_ca.pem \
/usr/local/share/ca-certificates/vesperos-profile-ca.crt
cp /etc/pawletprofiled/profile_ca.pem \
/usr/local/share/ca-certificates/pawletos-profile-ca.crt
update-ca-certificates
```
@@ -210,7 +210,7 @@ update-ca-certificates
## Preinstalled profiles
Drop signed `.vconfig` files into `/etc/vesperprofiled/preinstalled/`
Drop signed `.vconfig` files into `/etc/pawletprofiled/preinstalled/`
before first boot. The daemon applies them at startup,
**before** `cloud-init-local.service` starts (enforced via
`Before=cloud-init-local.service` in the systemd unit).
@@ -223,9 +223,9 @@ tries to reach its datasource.
## Zero-Touch Enrollment
ZTE configuration lives at `/etc/vesperprofiled/zte.conf` (copy from
ZTE configuration lives at `/etc/pawletprofiled/zte.conf` (copy from
`zte.conf.example`). The key setting is `server_url`, which points to
your `vesper-zte-server` instance.
your `pawlet-zte-server` instance.
```ini
server_url=https://zte.yourdomain.com
@@ -249,7 +249,7 @@ Hardware identity priority used for the ZTE lookup:
|---|---|
| `ProfileParser.cpp` used `android-base/logging.h` and `LOG()` | Replaced with `syslog()` throughout |
| `debian/rules` had postinst `install -d` lines leaked after `override_dh_installsystemd` | Removed stray lines |
| `sepolicy/vesperprofiled.te` had typo `vesperprofrofiled` | Fixed |
| `apparmor/vesperprofiled` used `abstractions/openssl` (doesn't exist on Debian) | Replaced with explicit `/etc/ssl/certs/` and network socket rules |
| `sepolicy/pawletprofiled.te` had typo `vesperprofrofiled` | Fixed |
| `apparmor/pawletprofiled` used `abstractions/openssl` (doesn't exist on Debian) | Replaced with explicit `/etc/ssl/certs/` and network socket rules |
| `ZTELookupClient` called `curl_global_init` but never `curl_global_cleanup` | Added to destructor |
| `debian/control` missing `Depends: vesperprofiled-config-schema` | Added |
| `debian/control` missing `Depends: pawletprofiled-config-schema` | Added |
@@ -1,10 +1,10 @@
package me.oxmc.vesperos.profile;
package os.pawlet.profiled;
// IVesperProfileService — Binder interface exposed by vesperprofiled.
// IPawletProfileService — Binder interface exposed by pawletprofiled.
// Clients (system apps, Settings, installer UI) talk to the daemon via this.
// NDK backend; link against libvesperprofiled-ndk.
// NDK backend; link against libpawletprofiled-ndk.
@VintfStability
interface IVesperProfileService {
interface IPawletProfileService {
// ── Profile lifecycle ─────────────────────────────────────────────────
@@ -1,10 +1,10 @@
# /etc/apparmor.d/vesperprofiled
# AppArmor MAC profile for the vesperprofiled daemon.
# Installed by the vesperprofiled Debian package.
# /etc/apparmor.d/pawletprofiled
# AppArmor MAC profile for the pawletprofiled daemon.
# Installed by the pawletprofiled Debian package.
#include <tunables/global>
/usr/sbin/vesperprofiled {
/usr/sbin/pawletprofiled {
#include <abstractions/base>
#include <abstractions/nameservice>
@@ -12,15 +12,15 @@
#include <abstractions/dbus-strict>
# Own binary
/usr/sbin/vesperprofiled mr,
/usr/sbin/pawletprofiled mr,
# ── Profile store ─────────────────────────────────────────────────────────
/var/lib/vesperprofiled/ rw,
/var/lib/vesperprofiled/** rw,
/var/lib/pawletprofiled/ rw,
/var/lib/pawletprofiled/** rw,
# ── Config directories (profile drop-ins written here) ───────────────────
/etc/vesperprofiled/ rw,
/etc/vesperprofiled/** rw,
/etc/pawletprofiled/ rw,
/etc/pawletprofiled/** rw,
/etc/NetworkManager/conf.d/ rw,
/etc/NetworkManager/conf.d/** rw,
/etc/NetworkManager/system-connections/ rw,
@@ -46,16 +46,16 @@
/etc/profile.d/** rw,
/etc/dconf/db/local.d/ rw,
/etc/dconf/db/local.d/** rw,
/etc/ssl/private/vesperos/ rw,
/etc/ssl/private/vesperos/** rw,
/usr/local/share/ca-certificates/vesperos/ rw,
/usr/local/share/ca-certificates/vesperos/** rw,
/etc/ssl/private/pawletos/ rw,
/etc/ssl/private/pawletos/** rw,
/usr/local/share/ca-certificates/pawletos/ rw,
/usr/local/share/ca-certificates/pawletos/** rw,
/var/lib/gnome-initial-setup/ rw,
/var/lib/gnome-initial-setup/** rw,
# ── Schema (read only — owned by vesperprofiled-config-schema) ────────────
/usr/share/vesperprofiled/schema/ r,
/usr/share/vesperprofiled/schema/* r,
# ── Schema (read only — owned by pawletprofiled-config-schema) ────────────
/usr/share/pawletprofiled/schema/ r,
/usr/share/pawletprofiled/schema/* r,
# ── TLS / certificate paths (explicit — no abstractions/openssl on Debian) ─
/etc/ssl/certs/ r,
@@ -64,12 +64,12 @@
/usr/lib/ssl/openssl.cnf r,
/usr/share/ca-certificates/ r,
/usr/share/ca-certificates/** r,
/etc/vesperprofiled/profile_ca.pem r,
/etc/pawletprofiled/profile_ca.pem r,
# ── D-Bus service registration ────────────────────────────────────────────
dbus (send, receive, bind)
bus=system
name="me.oxmc.vesperos.ProfileService",
name="os.pawlet.ProfiledService",
dbus (send)
bus=system
interface="org.freedesktop.DBus"
@@ -118,8 +118,8 @@
/dev/log w,
# ── Lock file (ZTE enrollment serialisation) ──────────────────────────────
/run/vesperprofiled/ rw,
/run/vesperprofiled/** rw,
/run/pawletprofiled/ rw,
/run/pawletprofiled/** rw,
# ── Deny sensitive paths ──────────────────────────────────────────────────
deny /home/** rw,
-130
View File
@@ -1,130 +0,0 @@
# /etc/apparmor.d/vesperprofiled
# AppArmor MAC profile for the vesperprofiled daemon.
# Installed by the vesperprofiled Debian package.
#include <tunables/global>
/usr/sbin/vesperprofiled {
#include <abstractions/base>
#include <abstractions/nameservice>
# D-Bus (system bus access)
#include <abstractions/dbus-strict>
# Own binary
/usr/sbin/vesperprofiled mr,
# ── Profile store ─────────────────────────────────────────────────────────
/var/lib/vesperprofiled/ rw,
/var/lib/vesperprofiled/** rw,
# ── Config directories (profile drop-ins written here) ───────────────────
/etc/vesperprofiled/ rw,
/etc/vesperprofiled/** rw,
/etc/NetworkManager/conf.d/ rw,
/etc/NetworkManager/conf.d/** rw,
/etc/NetworkManager/system-connections/ rw,
/etc/NetworkManager/system-connections/** rw,
/etc/apt/apt.conf.d/ rw,
/etc/apt/apt.conf.d/** rw,
/etc/cloud/cloud.cfg.d/ rw,
/etc/cloud/cloud.cfg.d/** rw,
/etc/systemd/timesyncd.conf.d/ rw,
/etc/systemd/timesyncd.conf.d/** rw,
/etc/systemd/resolved.conf.d/ rw,
/etc/systemd/resolved.conf.d/** rw,
/etc/security/pwquality.conf.d/ rw,
/etc/security/pwquality.conf.d/** rw,
/etc/security/faillock.conf.d/ rw,
/etc/security/faillock.conf.d/** rw,
/etc/nftables.d/ rw,
/etc/nftables.d/** rw,
/etc/ldap/ rw,
/etc/ldap/** rw,
/etc/nslcd.conf rw,
/etc/profile.d/ rw,
/etc/profile.d/** rw,
/etc/dconf/db/local.d/ rw,
/etc/dconf/db/local.d/** rw,
/etc/ssl/private/vesperos/ rw,
/etc/ssl/private/vesperos/** rw,
/usr/local/share/ca-certificates/vesperos/ rw,
/usr/local/share/ca-certificates/vesperos/** rw,
/var/lib/gnome-initial-setup/ rw,
/var/lib/gnome-initial-setup/** rw,
# ── Schema (read only — owned by vesperprofiled-config-schema) ────────────
/usr/share/vesperprofiled/schema/ r,
/usr/share/vesperprofiled/schema/* r,
# ── TLS / certificate paths (explicit — no abstractions/openssl on Debian) ─
/etc/ssl/certs/ r,
/etc/ssl/certs/** r,
/etc/ssl/openssl.cnf r,
/usr/lib/ssl/openssl.cnf r,
/usr/share/ca-certificates/ r,
/usr/share/ca-certificates/** r,
/etc/vesperprofiled/profile_ca.pem r,
# ── D-Bus service registration ────────────────────────────────────────────
dbus (send, receive, bind)
bus=system
name="me.oxmc.vesperos.ProfileService",
dbus (send)
bus=system
interface="org.freedesktop.DBus"
member="RequestName",
dbus (send)
bus=system
interface="org.freedesktop.NetworkManager",
dbus (receive)
bus=system
interface="org.freedesktop.NetworkManager",
# ── Executables called by payload handlers ────────────────────────────────
/usr/sbin/update-ca-certificates Px,
/usr/bin/dconf Px,
/usr/bin/gsettings Px,
/sbin/nft Px,
/usr/sbin/nslcd Px,
/usr/bin/pk12util Px,
/bin/systemctl Px,
/usr/bin/cloud-init Px,
# nmcli is no longer used (WiFi/Ethernet use keyfiles directly),
# but keep read access for diagnostics
/usr/bin/nmcli ix,
# ── Network (ZTE HTTPS lookups via libcurl) ───────────────────────────────
network inet stream,
network inet6 stream,
network inet dgram, # DNS resolution
# ── /proc and system info ─────────────────────────────────────────────────
@{PROC}/@{pid}/status r,
@{PROC}/sys/kernel/hostname r,
/sys/class/dmi/id/ r,
/sys/class/dmi/id/* r,
/sys/class/net/ r,
/sys/class/net/** r,
/sys/firmware/efi/ r,
/sys/firmware/efi/** r,
/sys/class/tpm/ r,
/etc/machine-id r,
/var/lib/dbus/machine-id r,
# ── Logging ───────────────────────────────────────────────────────────────
/run/systemd/journal/socket w,
/run/systemd/notify w,
/dev/log w,
# ── Lock file (ZTE enrollment serialisation) ──────────────────────────────
/run/vesperprofiled/ rw,
/run/vesperprofiled/** rw,
# ── Deny sensitive paths ──────────────────────────────────────────────────
deny /home/** rw,
deny /root/** rw,
deny /boot/** rw,
deny network raw,
deny network packet,
}
-58
View File
@@ -1,58 +0,0 @@
<!DOCTYPE busconfig PUBLIC
"-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<!--
/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf
D-Bus system bus policy for vesperprofiled.
Installed by the debian package postinst.
Grants root the ability to own the service name and allows
local system accounts to call its methods.
-->
<busconfig>
<!-- The daemon itself owns this name -->
<policy user="root">
<allow own="me.oxmc.vesperos.ProfileService"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"/>
<allow receive_sender="me.oxmc.vesperos.ProfileService"/>
</policy>
<!-- Admin group members can call all methods -->
<policy group="sudo">
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"/>
</policy>
<!-- The vesperos installer UI (runs as current user) can install profiles.
InstallProfile requires PolicyKit authorization (see the .policy file). -->
<policy at_console="true">
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="InstallProfile"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="ListProfiles"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="GetProfileInfo"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="IsDeviceManaged"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="IsSupervised"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="GetPayloadsOfType"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="RemoveProfile"/>
</policy>
<!-- Block everyone else by default -->
<policy context="default">
<deny send_destination="me.oxmc.vesperos.ProfileService"/>
</policy>
</busconfig>
+58
View File
@@ -0,0 +1,58 @@
<!DOCTYPE busconfig PUBLIC
"-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<!--
/etc/dbus-1/system.d/os.pawlet.ProfiledService.conf
D-Bus system bus policy for pawletprofiled.
Installed by the debian package postinst.
Grants root the ability to own the service name and allows
local system accounts to call its methods.
-->
<busconfig>
<!-- The daemon itself owns this name -->
<policy user="root">
<allow own="os.pawlet.ProfiledService"/>
<allow send_destination="os.pawlet.ProfiledService"/>
<allow receive_sender="os.pawlet.ProfiledService"/>
</policy>
<!-- Admin group members can call all methods -->
<policy group="sudo">
<allow send_destination="os.pawlet.ProfiledService"
send_interface="os.pawlet.IProfiledService"/>
</policy>
<!-- The pawletos installer UI (runs as current user) can install profiles.
InstallProfile requires PolicyKit authorization (see the .policy file). -->
<policy at_console="true">
<allow send_destination="os.pawlet.ProfiledService"
send_interface="os.pawlet.IProfiledService"
send_member="InstallProfile"/>
<allow send_destination="os.pawlet.ProfiledService"
send_interface="os.pawlet.IProfiledService"
send_member="ListProfiles"/>
<allow send_destination="os.pawlet.ProfiledService"
send_interface="os.pawlet.IProfiledService"
send_member="GetProfileInfo"/>
<allow send_destination="os.pawlet.ProfiledService"
send_interface="os.pawlet.IProfiledService"
send_member="IsDeviceManaged"/>
<allow send_destination="os.pawlet.ProfiledService"
send_interface="os.pawlet.IProfiledService"
send_member="IsSupervised"/>
<allow send_destination="os.pawlet.ProfiledService"
send_interface="os.pawlet.IProfiledService"
send_member="GetPayloadsOfType"/>
<allow send_destination="os.pawlet.ProfiledService"
send_interface="os.pawlet.IProfiledService"
send_member="RemoveProfile"/>
</policy>
<!-- Block everyone else by default -->
<policy context="default">
<deny send_destination="os.pawlet.ProfiledService"/>
</policy>
</busconfig>
@@ -1,22 +0,0 @@
vesperprofiled (1.0.0-1) trixie; urgency=medium
* Initial release for VesperOS 10.0 "Rainier".
* Unified binary: profile daemon + ZTE client in one process.
* Profile service: 55 payload types, CMS/PKCS#7 signature verification,
PBKDF2-SHA256 removal password hashing, D-Bus system service.
* WiFi/Ethernet: NetworkManager keyfile-based (no nmcli exec), full
802.1X EAP support (TLS/PEAP/TTLS/EAP-FAST), WPA3-SAE, proxy.
* ZTE client: DMI UUID/serial, board serial, machine-id, permanent MACs,
EFI GUID, TPM detection. Priority-ordered primary serial derivation.
SHA-256 hardware fingerprint for fuzzy server-side matching.
* ZTE deferred enrollment: watches NetworkManager StateChanged and
PropertiesChanged D-Bus signals; checks current state at startup.
* Preinstalled profile support: applies profiles from
/etc/vesperprofiled/preinstalled/ before cloud-init runs.
* first-boot payload: suppresses GNOME Initial Setup and cloud-init
wizard modules; writes cloud-init drop-in before cloud-init starts.
* systemd ordering: Before=cloud-init-local.service ensures preinstalled
profiles and ZTE drops are in place before cloud-init runs.
* AppArmor profile included.
-- oxmc <packages@oxmc.me> Sun, 19 Apr 2026 00:00:00 +0000
@@ -1,17 +0,0 @@
# Automatically added by dh_installsystemd/13.14.1ubuntu5
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
# The following line should be removed in trixie or trixie+1
deb-systemd-helper unmask 'vesperprofiled.service' >/dev/null || true
# was-enabled defaults to true, so new installations run enable.
if deb-systemd-helper --quiet was-enabled 'vesperprofiled.service'; then
# Enables the unit on first installation, creates new
# symlinks on upgrades if the unit file has changed.
deb-systemd-helper enable 'vesperprofiled.service' >/dev/null || true
else
# Update the statefile to add new symlinks (if any), which need to be
# cleaned up on purge. Also remove old symlinks.
deb-systemd-helper update-state 'vesperprofiled.service' >/dev/null || true
fi
fi
# End automatically added section
@@ -1,5 +0,0 @@
# Automatically added by dh_installsystemd/13.14.1ubuntu5
if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = upgrade ] && [ -d /run/systemd/system ] ; then
deb-systemd-invoke stop 'vesperprofiled.service' >/dev/null || true
fi
# End automatically added section
-1
View File
@@ -1 +0,0 @@
3a272b0b159fbe1f2432ddef9ebc077884e5069b
@@ -1,13 +0,0 @@
Package: vesperprofiled-dbgsym
Package-Type: ddeb
Source: vesperprofiled
Version: 1.0.0-1
Auto-Built-Package: debug-symbols
Architecture: amd64
Maintainer: oxmc <packages@oxmc.me>
Installed-Size: 955
Depends: vesperprofiled (= 1.0.0-1)
Section: debug
Priority: optional
Description: debug symbols for vesperprofiled
Build-Ids: 3a272b0b159fbe1f2432ddef9ebc077884e5069b
@@ -1 +0,0 @@
5ef0e80bb06ea08211fa57c6228a7a02 usr/lib/debug/.build-id/3a/272b0b159fbe1f2432ddef9ebc077884e5069b.debug
@@ -1 +0,0 @@
vesperprofiled
+3 -3
View File
@@ -1,6 +1,6 @@
vesperprofiled (1.0.0-1) trixie; urgency=medium
pawletprofiled (1.0.0-1) trixie; urgency=medium
* Initial release for VesperOS 10.0 "Rainier".
* Initial release for PawletOS 10.0 "Rainier".
* Unified binary: profile daemon + ZTE client in one process.
* Profile service: 55 payload types, CMS/PKCS#7 signature verification,
PBKDF2-SHA256 removal password hashing, D-Bus system service.
@@ -12,7 +12,7 @@ vesperprofiled (1.0.0-1) trixie; urgency=medium
* ZTE deferred enrollment: watches NetworkManager StateChanged and
PropertiesChanged D-Bus signals; checks current state at startup.
* Preinstalled profile support: applies profiles from
/etc/vesperprofiled/preinstalled/ before cloud-init runs.
/etc/pawletprofiled/preinstalled/ before cloud-init runs.
* first-boot payload: suppresses GNOME Initial Setup and cloud-init
wizard modules; writes cloud-init drop-in before cloud-init starts.
* systemd ordering: Before=cloud-init-local.service ensures preinstalled
+11 -11
View File
@@ -1,4 +1,4 @@
Source: vesperprofiled
Source: pawletprofiled
Section: admin
Priority: optional
Maintainer: oxmc <packages@oxmc.me>
@@ -12,15 +12,15 @@ Build-Depends:
libcurl4-openssl-dev,
pkg-config
Standards-Version: 4.7.0
Homepage: https://vesperos.oxmc.me
Vcs-Git: https://git.oxmc.me/vesperos/vesperprofiled.git
Homepage: https://pawletos.oxmc.me
Vcs-Git: https://git.oxmc.me/PawletOS/profiled.git
Package: vesperprofiled
Package: pawletprofiled
Architecture: any
Depends:
${shlibs:Depends},
${misc:Depends},
vesperprofiled-config-schema (>= 1.0.0),
pawletprofiled-config-schema (>= 1.0.0),
libssl3 (>= 3.0),
libyaml-0-2,
libdbus-1-3,
@@ -41,16 +41,16 @@ Recommends:
dconf-cli,
tpm2-tools
Suggests:
vesper-zte-server,
vesperos-ca
Description: VesperOS configuration profile daemon with Zero-Touch Enrollment
vesperprofiled is the unified device management daemon for VesperOS.
pawlet-zte-server,
pawletos-ca
Description: PawletOS configuration profile daemon with Zero-Touch Enrollment
pawletprofiled is the unified device management daemon for PawletOS.
It ships as a single binary containing two subsystems:
.
Profile Service — parses, verifies, and applies .vconfig configuration
profiles. Profiles are YAML files optionally wrapped in a CMS/PKCS#7
signed envelope. Which payload types are accepted is controlled by the
installed vesperprofiled-config-schema package, allowing OEMs to restrict
installed pawletprofiled-config-schema package, allowing OEMs to restrict
the available configuration surface for their platform.
.
ZTE Client — Zero-Touch Enrollment. Collects hardware identity (DMI UUID,
@@ -61,5 +61,5 @@ Description: VesperOS configuration profile daemon with Zero-Touch Enrollment
available at first boot, the ZTE client enrolls on first connectivity.
.
The profile service is exposed as a D-Bus system service at
me.oxmc.vesperos.ProfileService. The ZTE client runs as a background
os.pawlet.ProfiledService. The ZTE client runs as a background
thread in the same process.
-1
View File
@@ -1 +0,0 @@
vesperprofiled
-3
View File
@@ -1,3 +0,0 @@
vesperprofiled-dbgsym_1.0.0-1_amd64.ddeb debug optional automatic=yes
vesperprofiled_1.0.0-1_amd64.buildinfo admin optional
vesperprofiled_1.0.0-1_amd64.deb admin optional
+7 -7
View File
@@ -4,15 +4,15 @@ set -e
case "$1" in
configure)
# Data directories
install -d -m 0700 /var/lib/vesperprofiled
install -d -m 0700 /var/lib/vesperprofiled/profiles
install -d -m 0755 /etc/vesperprofiled
install -d -m 0755 /etc/vesperprofiled/preinstalled
install -d -m 0700 /var/lib/pawletprofiled
install -d -m 0700 /var/lib/pawletprofiled/profiles
install -d -m 0755 /etc/pawletprofiled
install -d -m 0755 /etc/pawletprofiled/preinstalled
# AppArmor
if command -v aa-enabled >/dev/null 2>&1 && aa-enabled >/dev/null 2>&1; then
if command -v apparmor_parser >/dev/null 2>&1; then
apparmor_parser -r /etc/apparmor.d/vesperprofiled || true
apparmor_parser -r /etc/apparmor.d/pawletprofiled || true
fi
fi
@@ -29,8 +29,8 @@ case "$1" in
if command -v systemctl >/dev/null 2>&1 && \
systemctl is-system-running --quiet 2>/dev/null; then
systemctl daemon-reload
systemctl enable vesperprofiled.service
systemctl start vesperprofiled.service || true
systemctl enable pawletprofiled.service
systemctl start pawletprofiled.service || true
fi
;;
esac
+20 -20
View File
@@ -3,27 +3,27 @@ set -e
case "$1" in
purge)
rm -rf /var/lib/vesperprofiled
rm -rf /etc/vesperprofiled
rm -rf /var/lib/pawletprofiled
rm -rf /etc/pawletprofiled
# Remove all managed config drops
rm -f /etc/apt/apt.conf.d/99-vesperos-update
rm -f /etc/apt/apt.conf.d/99-vesperos-proxy
rm -f /etc/NetworkManager/conf.d/vesperos-proxy.conf
rm -f /etc/systemd/timesyncd.conf.d/vesperos.conf
rm -f /etc/systemd/resolved.conf.d/vesperos-dns.conf
rm -f /etc/security/pwquality.conf.d/vesperos.conf
rm -f /etc/security/faillock.conf.d/vesperos.conf
rm -f /etc/nftables.d/vesperos.nft
rm -f /etc/profile.d/vesperos-proxy.sh
rm -f /etc/cloud/cloud.cfg.d/99-vesperos-mdm.cfg
rm -f /etc/cloud/cloud.cfg.d/99-vesperos-firstboot.cfg
rm -f /etc/dconf/db/local.d/00-vesperos-wallpaper
rm -f /etc/dconf/db/local.d/00-vesperos-screensaver
rm -f /etc/dconf/db/local.d/00-vesperos-firstboot
rm -f /etc/dconf/db/local.d/locks/vesperos-wallpaper
rm -f /etc/dconf/db/local.d/locks/vesperos-screensaver
rm -rf /usr/local/share/ca-certificates/vesperos
rm -rf /etc/ssl/private/vesperos
rm -f /etc/apt/apt.conf.d/99-pawletos-update
rm -f /etc/apt/apt.conf.d/99-pawletos-proxy
rm -f /etc/NetworkManager/conf.d/pawletos-proxy.conf
rm -f /etc/systemd/timesyncd.conf.d/pawletos.conf
rm -f /etc/systemd/resolved.conf.d/pawletos-dns.conf
rm -f /etc/security/pwquality.conf.d/pawletos.conf
rm -f /etc/security/faillock.conf.d/pawletos.conf
rm -f /etc/nftables.d/pawletos.nft
rm -f /etc/profile.d/pawletos-proxy.sh
rm -f /etc/cloud/cloud.cfg.d/99-pawletos-mdm.cfg
rm -f /etc/cloud/cloud.cfg.d/99-pawletos-firstboot.cfg
rm -f /etc/dconf/db/local.d/00-pawletos-wallpaper
rm -f /etc/dconf/db/local.d/00-pawletos-screensaver
rm -f /etc/dconf/db/local.d/00-pawletos-firstboot
rm -f /etc/dconf/db/local.d/locks/pawletos-wallpaper
rm -f /etc/dconf/db/local.d/locks/pawletos-screensaver
rm -rf /usr/local/share/ca-certificates/pawletos
rm -rf /etc/ssl/private/pawletos
command -v update-ca-certificates >/dev/null 2>&1 && \
update-ca-certificates --fresh 2>/dev/null || true
command -v dconf >/dev/null 2>&1 && \
+4 -4
View File
@@ -4,12 +4,12 @@ set -e
case "$1" in
remove|upgrade|deconfigure)
if command -v systemctl >/dev/null 2>&1; then
systemctl stop vesperprofiled.service 2>/dev/null || true
systemctl disable vesperprofiled.service 2>/dev/null || true
systemctl stop pawletprofiled.service 2>/dev/null || true
systemctl disable pawletprofiled.service 2>/dev/null || true
fi
if command -v apparmor_parser >/dev/null 2>&1 && \
[ -f /etc/apparmor.d/vesperprofiled ]; then
apparmor_parser -R /etc/apparmor.d/vesperprofiled 2>/dev/null || true
[ -f /etc/apparmor.d/pawletprofiled ]; then
apparmor_parser -R /etc/apparmor.d/pawletprofiled 2>/dev/null || true
fi
;;
esac
+9 -9
View File
@@ -14,15 +14,15 @@ override_dh_auto_configure:
override_dh_auto_install:
dh_auto_install
install -Dm 0644 dbus/me.oxmc.vesperos.ProfileService.conf \
debian/vesperprofiled/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf
install -Dm 0644 apparmor/vesperprofiled \
debian/vesperprofiled/etc/apparmor.d/vesperprofiled
install -d -m 0755 debian/vesperprofiled/etc/vesperprofiled
install -d -m 0755 debian/vesperprofiled/etc/vesperprofiled/preinstalled
install -d -m 0700 debian/vesperprofiled/var/lib/vesperprofiled/profiles
install -Dm 0644 dbus/os.pawlet.ProfiledService.conf \
debian/pawletprofiled/etc/dbus-1/system.d/os.pawlet.ProfiledService.conf
install -Dm 0644 apparmor/pawletprofiled \
debian/pawletprofiled/etc/apparmor.d/pawletprofiled
install -d -m 0755 debian/pawletprofiled/etc/pawletprofiled
install -d -m 0755 debian/pawletprofiled/etc/pawletprofiled/preinstalled
install -d -m 0700 debian/pawletprofiled/var/lib/pawletprofiled/profiles
install -Dm 0640 zte.conf.example \
debian/vesperprofiled/etc/vesperprofiled/zte.conf.example
debian/pawletprofiled/etc/pawletprofiled/zte.conf.example
override_dh_installsystemd:
dh_installsystemd --name=vesperprofiled --no-start
dh_installsystemd --name=pawletprofiled --no-start
-1
View File
@@ -1 +0,0 @@
dh_installsystemd
-12
View File
@@ -1,12 +0,0 @@
# Automatically added by dh_installsystemd/13.14.1ubuntu5
if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then
systemctl --system daemon-reload >/dev/null || true
fi
# End automatically added section
# Automatically added by dh_installsystemd/13.14.1ubuntu5
if [ "$1" = "purge" ]; then
if [ -x "/usr/bin/deb-systemd-helper" ]; then
deb-systemd-helper purge 'vesperprofiled.service' >/dev/null || true
fi
fi
# End automatically added section
-3
View File
@@ -1,3 +0,0 @@
shlibs:Depends=libc6 (>= 2.38), libcurl4t64 (>= 7.16.2), libdbus-1-3 (>= 1.9.14), libgcc-s1 (>= 3.3.1), libssl3t64 (>= 3.0.0), libstdc++6 (>= 11), libsystemd0, libyaml-0-2
misc:Depends=
misc:Pre-Depends=
-3
View File
@@ -1,3 +0,0 @@
/etc/apparmor.d/vesperprofiled
/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf
/etc/vesperprofiled/zte.conf.example
-31
View File
@@ -1,31 +0,0 @@
Package: vesperprofiled
Version: 1.0.0-1
Architecture: amd64
Maintainer: oxmc <packages@oxmc.me>
Installed-Size: 245
Depends: libc6 (>= 2.38), libcurl4t64 (>= 7.16.2), libdbus-1-3 (>= 1.9.14), libgcc-s1 (>= 3.3.1), libssl3t64 (>= 3.0.0), libstdc++6 (>= 11), libsystemd0, libyaml-0-2, vesperprofiled-config-schema (>= 1.0.0), libssl3 (>= 3.0), libcurl4, dbus, network-manager, ca-certificates
Recommends: cloud-init, nftables, network-manager-strongswan, network-manager-l2tp, libnss3-tools, libpam-pwquality, libpam-faillock, unattended-upgrades, dconf-cli, tpm2-tools
Suggests: vesper-zte-server, vesperos-ca
Section: admin
Priority: optional
Homepage: https://vesperos.oxmc.me
Description: VesperOS configuration profile daemon with Zero-Touch Enrollment
vesperprofiled is the unified device management daemon for VesperOS.
It ships as a single binary containing two subsystems:
.
Profile Service — parses, verifies, and applies .vconfig configuration
profiles. Profiles are YAML files optionally wrapped in a CMS/PKCS#7
signed envelope. Which payload types are accepted is controlled by the
installed vesperprofiled-config-schema package, allowing OEMs to restrict
the available configuration surface for their platform.
.
ZTE Client — Zero-Touch Enrollment. Collects hardware identity (DMI UUID,
system/board serial, machine-id, permanent MAC addresses, EFI GUID) and
queries a ZTE lookup server on first internet connection. If the device is
registered, the signed MDM enrollment profile is downloaded and installed
automatically. Deferred enrollment is fully supported: if no network is
available at first boot, the ZTE client enrolls on first connectivity.
.
The profile service is exposed as a D-Bus system service at
me.oxmc.vesperos.ProfileService. The ZTE client runs as a background
thread in the same process.
-3
View File
@@ -1,3 +0,0 @@
af865abb638806188b22085ca4d5fe77 usr/lib/systemd/system/vesperprofiled.service
f1b630bbe5f876dbba858c4b3fd38d5e usr/sbin/vesperprofiled
5af38dfb23cecbc388fed5881748e63b usr/share/doc/vesperprofiled/changelog.Debian.gz
-56
View File
@@ -1,56 +0,0 @@
#!/bin/sh
set -e
case "$1" in
configure)
# Data directories
install -d -m 0700 /var/lib/vesperprofiled
install -d -m 0700 /var/lib/vesperprofiled/profiles
install -d -m 0755 /etc/vesperprofiled
install -d -m 0755 /etc/vesperprofiled/preinstalled
# AppArmor
if command -v aa-enabled >/dev/null 2>&1 && aa-enabled >/dev/null 2>&1; then
if command -v apparmor_parser >/dev/null 2>&1; then
apparmor_parser -r /etc/apparmor.d/vesperprofiled || true
fi
fi
# D-Bus reload
if [ -d /run/dbus ] && command -v dbus-send >/dev/null 2>&1; then
dbus-send --system \
--dest=org.freedesktop.DBus \
--type=method_call \
/org/freedesktop/DBus \
org.freedesktop.DBus.ReloadConfig 2>/dev/null || true
fi
# systemd
if command -v systemctl >/dev/null 2>&1 && \
systemctl is-system-running --quiet 2>/dev/null; then
systemctl daemon-reload
systemctl enable vesperprofiled.service
systemctl start vesperprofiled.service || true
fi
;;
esac
# Automatically added by dh_installsystemd/13.14.1ubuntu5
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
# The following line should be removed in trixie or trixie+1
deb-systemd-helper unmask 'vesperprofiled.service' >/dev/null || true
# was-enabled defaults to true, so new installations run enable.
if deb-systemd-helper --quiet was-enabled 'vesperprofiled.service'; then
# Enables the unit on first installation, creates new
# symlinks on upgrades if the unit file has changed.
deb-systemd-helper enable 'vesperprofiled.service' >/dev/null || true
else
# Update the statefile to add new symlinks (if any), which need to be
# cleaned up on purge. Also remove old symlinks.
deb-systemd-helper update-state 'vesperprofiled.service' >/dev/null || true
fi
fi
# End automatically added section
exit 0
-58
View File
@@ -1,58 +0,0 @@
#!/bin/sh
set -e
case "$1" in
purge)
rm -rf /var/lib/vesperprofiled
rm -rf /etc/vesperprofiled
# Remove all managed config drops
rm -f /etc/apt/apt.conf.d/99-vesperos-update
rm -f /etc/apt/apt.conf.d/99-vesperos-proxy
rm -f /etc/NetworkManager/conf.d/vesperos-proxy.conf
rm -f /etc/systemd/timesyncd.conf.d/vesperos.conf
rm -f /etc/systemd/resolved.conf.d/vesperos-dns.conf
rm -f /etc/security/pwquality.conf.d/vesperos.conf
rm -f /etc/security/faillock.conf.d/vesperos.conf
rm -f /etc/nftables.d/vesperos.nft
rm -f /etc/profile.d/vesperos-proxy.sh
rm -f /etc/cloud/cloud.cfg.d/99-vesperos-mdm.cfg
rm -f /etc/cloud/cloud.cfg.d/99-vesperos-firstboot.cfg
rm -f /etc/dconf/db/local.d/00-vesperos-wallpaper
rm -f /etc/dconf/db/local.d/00-vesperos-screensaver
rm -f /etc/dconf/db/local.d/00-vesperos-firstboot
rm -f /etc/dconf/db/local.d/locks/vesperos-wallpaper
rm -f /etc/dconf/db/local.d/locks/vesperos-screensaver
rm -rf /usr/local/share/ca-certificates/vesperos
rm -rf /etc/ssl/private/vesperos
command -v update-ca-certificates >/dev/null 2>&1 && \
update-ca-certificates --fresh 2>/dev/null || true
command -v dconf >/dev/null 2>&1 && \
dconf update 2>/dev/null || true
dbus-send --system --dest=org.freedesktop.DBus \
--type=method_call /org/freedesktop/DBus \
org.freedesktop.DBus.ReloadConfig 2>/dev/null || true
if command -v systemctl >/dev/null 2>&1; then
systemctl daemon-reload || true
fi
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
if command -v systemctl >/dev/null 2>&1; then
systemctl daemon-reload || true
fi
;;
esac
# Automatically added by dh_installsystemd/13.14.1ubuntu5
if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then
systemctl --system daemon-reload >/dev/null || true
fi
# End automatically added section
# Automatically added by dh_installsystemd/13.14.1ubuntu5
if [ "$1" = "purge" ]; then
if [ -x "/usr/bin/deb-systemd-helper" ]; then
deb-systemd-helper purge 'vesperprofiled.service' >/dev/null || true
fi
fi
# End automatically added section
exit 0
-7
View File
@@ -1,7 +0,0 @@
#!/bin/sh
set -e
# Automatically added by dh_installsystemd/13.14.1ubuntu5
if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = upgrade ] && [ -d /run/systemd/system ] ; then
deb-systemd-invoke stop 'vesperprofiled.service' >/dev/null || true
fi
# End automatically added section
-18
View File
@@ -1,18 +0,0 @@
#!/bin/sh
set -e
case "$1" in
remove|upgrade|deconfigure)
if command -v systemctl >/dev/null 2>&1; then
systemctl stop vesperprofiled.service 2>/dev/null || true
systemctl disable vesperprofiled.service 2>/dev/null || true
fi
if command -v apparmor_parser >/dev/null 2>&1 && \
[ -f /etc/apparmor.d/vesperprofiled ]; then
apparmor_parser -R /etc/apparmor.d/vesperprofiled 2>/dev/null || true
fi
;;
esac
exit 0
@@ -1,58 +0,0 @@
<!DOCTYPE busconfig PUBLIC
"-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<!--
/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf
D-Bus system bus policy for vesperprofiled.
Installed by the debian package postinst.
Grants root the ability to own the service name and allows
local system accounts to call its methods.
-->
<busconfig>
<!-- The daemon itself owns this name -->
<policy user="root">
<allow own="me.oxmc.vesperos.ProfileService"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"/>
<allow receive_sender="me.oxmc.vesperos.ProfileService"/>
</policy>
<!-- Admin group members can call all methods -->
<policy group="sudo">
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"/>
</policy>
<!-- The vesperos installer UI (runs as current user) can install profiles.
InstallProfile requires PolicyKit authorization (see the .policy file). -->
<policy at_console="true">
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="InstallProfile"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="ListProfiles"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="GetProfileInfo"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="IsDeviceManaged"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="IsSupervised"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="GetPayloadsOfType"/>
<allow send_destination="me.oxmc.vesperos.ProfileService"
send_interface="me.oxmc.vesperos.IProfileService"
send_member="RemoveProfile"/>
</policy>
<!-- Block everyone else by default -->
<policy context="default">
<deny send_destination="me.oxmc.vesperos.ProfileService"/>
</policy>
</busconfig>
@@ -1,34 +0,0 @@
# /etc/vesperprofiled/zte.conf
# VesperOS Zero-Touch Enrollment configuration
# ─────────────────────────────────────────────────────────────────────────
# This file is read by vesper-zte on startup.
# Lines beginning with # are comments.
# All settings are optional — defaults are shown.
# ZTE lookup server URL.
# Default: https://zte.vesperos.oxmc.me (oxmc hosted, public)
# Set this to your own server for self-hosted ZTE.
#
# server_url=https://zte.vesperos.oxmc.me
# Disable ZTE entirely on this device.
# Set to "1" to prevent automatic enrollment.
# Can also be set by writing "disabled" to /var/lib/vesperprofiled/zte_state.json
#
# disabled=0
# Maximum number of enrollment retry attempts before giving up.
# 0 = retry indefinitely on every connectivity event.
#
# max_retries=0
# Delay between enrollment retries in seconds.
# The actual delay uses exponential backoff up to this maximum.
#
# retry_max_delay=300
# TLS CA bundle for verifying the ZTE server certificate.
# Override if you use a private CA for your self-hosted ZTE server.
# The server certificate must chain to this CA.
#
# ca_bundle=/etc/ssl/certs/ca-certificates.crt
@@ -1,55 +0,0 @@
[Unit]
Description=VesperOS Profile Daemon (profiles + Zero-Touch Enrollment)
Documentation=https://vesperos.oxmc.me/docs/vesperprofiled
# Must run before cloud-init so preinstalled profiles (WiFi, MDM drop-ins,
# first-boot config) are on disk when cloud-init starts.
Before=cloud-init-local.service cloud-init.service
After=local-fs.target dbus.service systemd-udev-settle.service
# Start after NetworkManager so ZTE can immediately check current
# connectivity state rather than waiting for a StateChanged signal.
After=NetworkManager.service
# But don't hard-require NM — ZTE degrades gracefully if NM isn't present.
Wants=NetworkManager.service
[Service]
Type=notify
NotifyAccess=main
ExecStart=/usr/sbin/vesperprofiled
ExecReload=/bin/kill -HUP $MAINPID
User=root
Group=root
# Restart the whole daemon (profile service + ZTE watcher) on crash.
Restart=on-failure
RestartSec=5s
TimeoutStartSec=60
RuntimeDirectory=vesperprofiled
RuntimeDirectoryMode=0750
StateDirectory=vesperprofiled
StateDirectoryMode=0700
# Writable paths — profile daemon writes config drops, ZTE writes state
ReadWritePaths=/etc /var/lib/vesperprofiled /run/vesperprofiled \
/var/lib/gnome-initial-setup
SystemCallFilter=@system-service @file-system @network-io @process
SystemCallErrorNumber=EPERM
NoNewPrivileges=false
PrivateTmp=true
ProtectKernelLogs=true
ProtectKernelModules=true
ProtectControlGroups=true
StandardOutput=journal
StandardError=journal
SyslogIdentifier=vesperprofiled
[Install]
WantedBy=multi-user.target
WantedBy=cloud-init.target
Binary file not shown.
-699
View File
@@ -1,699 +0,0 @@
# This is the CMakeCache file.
# For build in directory: /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu
# It was generated by CMake: /usr/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/ar
//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
CMAKE_BUILD_TYPE:STRING=Release
//Enable/Disable color output during build.
CMAKE_COLOR_MAKEFILE:BOOL=ON
//CXX compiler
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13
//Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING=-g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3
//Flags used by the CXX compiler during DEBUG builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
//Flags used by the CXX compiler during MINSIZEREL builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the CXX compiler during RELEASE builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Path to a program.
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=-Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now
//Flags used by the linker during DEBUG builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during MINSIZEREL builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during RELEASE builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
//No help, variable specified on the command line.
CMAKE_EXPORT_NO_PACKAGE_REGISTRY:UNINITIALIZED=ON
//No help, variable specified on the command line.
CMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY:UNINITIALIZED=ON
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/pkgRedirects
//No help, variable specified on the command line.
CMAKE_FIND_USE_PACKAGE_REGISTRY:UNINITIALIZED=OFF
//User executables (bin)
CMAKE_INSTALL_BINDIR:PATH=bin
//Read-only architecture-independent data (DATAROOTDIR)
CMAKE_INSTALL_DATADIR:PATH=
//Read-only architecture-independent data root (share)
CMAKE_INSTALL_DATAROOTDIR:PATH=share
//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
CMAKE_INSTALL_DOCDIR:PATH=
//C header files (include)
CMAKE_INSTALL_INCLUDEDIR:PATH=include
//Info documentation (DATAROOTDIR/info)
CMAKE_INSTALL_INFODIR:PATH=
//Object code libraries (lib)
CMAKE_INSTALL_LIBDIR:PATH=lib/x86_64-linux-gnu
//Program executables (libexec)
CMAKE_INSTALL_LIBEXECDIR:PATH=libexec
//Locale-dependent data (DATAROOTDIR/locale)
CMAKE_INSTALL_LOCALEDIR:PATH=
//Modifiable single-machine data (var)
CMAKE_INSTALL_LOCALSTATEDIR:PATH=/var
//Man documentation (DATAROOTDIR/man)
CMAKE_INSTALL_MANDIR:PATH=
//C header files for non-gcc (/usr/include)
CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr
//Run-time variable data (LOCALSTATEDIR/run)
CMAKE_INSTALL_RUNSTATEDIR:PATH=/run
//System admin executables (sbin)
CMAKE_INSTALL_SBINDIR:PATH=sbin
//Modifiable architecture-independent data (com)
CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
//Read-only single-machine data (etc)
CMAKE_INSTALL_SYSCONFDIR:PATH=/etc
//Path to a program.
CMAKE_LINKER:FILEPATH=/usr/bin/ld
//Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake
//Flags used by the linker during the creation of modules during
// all build types.
CMAKE_MODULE_LINKER_FLAGS:STRING=-Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now
//Flags used by the linker during the creation of modules during
// DEBUG builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of modules during
// MINSIZEREL builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of modules during
// RELEASE builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of modules during
// RELWITHDEBINFO builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_NM:FILEPATH=/usr/bin/nm
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=vesperprofiled
//Value Computed by CMake
CMAKE_PROJECT_VERSION:STATIC=1.0.0
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MAJOR:STATIC=1
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MINOR:STATIC=0
//Value Computed by CMake
CMAKE_PROJECT_VERSION_PATCH:STATIC=0
//Value Computed by CMake
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
//Path to a program.
CMAKE_READELF:FILEPATH=/usr/bin/readelf
//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=-Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now
//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of shared libraries
// during MINSIZEREL builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELEASE builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELWITHDEBINFO builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//No help, variable specified on the command line.
CMAKE_SKIP_INSTALL_ALL_DEPENDENCY:UNINITIALIZED=ON
//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO
//Flags used by the linker during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=/usr/bin/strip
//Path to a program.
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=ON
//The directory containing a CMake configuration file for CURL.
CURL_DIR:PATH=CURL_DIR-NOTFOUND
//Path to a file.
CURL_INCLUDE_DIR:PATH=/usr/include/x86_64-linux-gnu
//Path to a library.
CURL_LIBRARY_DEBUG:FILEPATH=CURL_LIBRARY_DEBUG-NOTFOUND
//Path to a library.
CURL_LIBRARY_RELEASE:FILEPATH=/usr/lib/x86_64-linux-gnu/libcurl.so
//No help, variable specified on the command line.
FETCHCONTENT_FULLY_DISCONNECTED:UNINITIALIZED=ON
//Arguments to supply to pkg-config
PKG_CONFIG_ARGN:STRING=
//pkg-config executable
PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config
//Path to a library.
pkgcfg_lib_DBUS_dbus-1:FILEPATH=/usr/lib/x86_64-linux-gnu/libdbus-1.so
//Path to a library.
pkgcfg_lib_LIBYAML_yaml:FILEPATH=/usr/lib/x86_64-linux-gnu/libyaml.so
//Path to a library.
pkgcfg_lib_OPENSSL_crypto:FILEPATH=/usr/lib/x86_64-linux-gnu/libcrypto.so
//Path to a library.
pkgcfg_lib_OPENSSL_ssl:FILEPATH=/usr/lib/x86_64-linux-gnu/libssl.so
//Path to a library.
pkgcfg_lib_PC_CURL_curl:FILEPATH=/usr/lib/x86_64-linux-gnu/libcurl.so
//Path to a library.
pkgcfg_lib_SYSTEMD_systemd:FILEPATH=/usr/lib/x86_64-linux-gnu/libsystemd.so
//Value Computed by CMake
vesperprofiled_BINARY_DIR:STATIC=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu
//Value Computed by CMake
vesperprofiled_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
vesperprofiled_SOURCE_DIR:STATIC=/home/oxmc/VesperOS/packages/vesperprofiled
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: CMAKE_ADDR2LINE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=28
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_DLLTOOL
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/home/oxmc/VesperOS/packages/vesperprofiled
//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
//Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.28
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_TAPI
CMAKE_TAPI-ADVANCED:INTERNAL=1
//uname command
CMAKE_UNAME:INTERNAL=/usr/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CURL_DIR
CURL_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CURL_INCLUDE_DIR
CURL_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CURL_LIBRARY_DEBUG
CURL_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CURL_LIBRARY_RELEASE
CURL_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
DBUS_CFLAGS:INTERNAL=-I/usr/include/dbus-1.0;-I/usr/lib/x86_64-linux-gnu/dbus-1.0/include
DBUS_CFLAGS_I:INTERNAL=
DBUS_CFLAGS_OTHER:INTERNAL=
DBUS_FOUND:INTERNAL=1
DBUS_INCLUDEDIR:INTERNAL=/usr/include
DBUS_INCLUDE_DIRS:INTERNAL=/usr/include/dbus-1.0;/usr/lib/x86_64-linux-gnu/dbus-1.0/include
DBUS_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-ldbus-1
DBUS_LDFLAGS_OTHER:INTERNAL=
DBUS_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
DBUS_LIBRARIES:INTERNAL=dbus-1
DBUS_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu
DBUS_LIBS:INTERNAL=
DBUS_LIBS_L:INTERNAL=
DBUS_LIBS_OTHER:INTERNAL=
DBUS_LIBS_PATHS:INTERNAL=
DBUS_MODULE_NAME:INTERNAL=dbus-1
DBUS_PREFIX:INTERNAL=/usr
DBUS_STATIC_CFLAGS:INTERNAL=-I/usr/include/dbus-1.0;-I/usr/lib/x86_64-linux-gnu/dbus-1.0/include
DBUS_STATIC_CFLAGS_I:INTERNAL=
DBUS_STATIC_CFLAGS_OTHER:INTERNAL=
DBUS_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/dbus-1.0;/usr/lib/x86_64-linux-gnu/dbus-1.0/include
DBUS_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-ldbus-1;-lsystemd
DBUS_STATIC_LDFLAGS_OTHER:INTERNAL=
DBUS_STATIC_LIBDIR:INTERNAL=
DBUS_STATIC_LIBRARIES:INTERNAL=dbus-1;systemd
DBUS_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu
DBUS_STATIC_LIBS:INTERNAL=
DBUS_STATIC_LIBS_L:INTERNAL=
DBUS_STATIC_LIBS_OTHER:INTERNAL=
DBUS_STATIC_LIBS_PATHS:INTERNAL=
DBUS_VERSION:INTERNAL=1.14.10
DBUS_dbus-1_INCLUDEDIR:INTERNAL=
DBUS_dbus-1_LIBDIR:INTERNAL=
DBUS_dbus-1_PREFIX:INTERNAL=
DBUS_dbus-1_VERSION:INTERNAL=
//Details about finding CURL
FIND_PACKAGE_MESSAGE_DETAILS_CURL:INTERNAL=[/usr/lib/x86_64-linux-gnu/libcurl.so][/usr/include/x86_64-linux-gnu][c ][v8.5.0()]
//Details about finding PkgConfig
FIND_PACKAGE_MESSAGE_DETAILS_PkgConfig:INTERNAL=[/usr/bin/pkg-config][v1.8.1()]
LIBYAML_CFLAGS:INTERNAL=-I/usr/include
LIBYAML_CFLAGS_I:INTERNAL=
LIBYAML_CFLAGS_OTHER:INTERNAL=
LIBYAML_FOUND:INTERNAL=1
LIBYAML_INCLUDEDIR:INTERNAL=/usr/include
LIBYAML_INCLUDE_DIRS:INTERNAL=/usr/include
LIBYAML_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lyaml
LIBYAML_LDFLAGS_OTHER:INTERNAL=
LIBYAML_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
LIBYAML_LIBRARIES:INTERNAL=yaml
LIBYAML_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu
LIBYAML_LIBS:INTERNAL=
LIBYAML_LIBS_L:INTERNAL=
LIBYAML_LIBS_OTHER:INTERNAL=
LIBYAML_LIBS_PATHS:INTERNAL=
LIBYAML_MODULE_NAME:INTERNAL=yaml-0.1
LIBYAML_PREFIX:INTERNAL=/usr
LIBYAML_STATIC_CFLAGS:INTERNAL=-I/usr/include
LIBYAML_STATIC_CFLAGS_I:INTERNAL=
LIBYAML_STATIC_CFLAGS_OTHER:INTERNAL=
LIBYAML_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include
LIBYAML_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lyaml
LIBYAML_STATIC_LDFLAGS_OTHER:INTERNAL=
LIBYAML_STATIC_LIBDIR:INTERNAL=
LIBYAML_STATIC_LIBRARIES:INTERNAL=yaml
LIBYAML_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu
LIBYAML_STATIC_LIBS:INTERNAL=
LIBYAML_STATIC_LIBS_L:INTERNAL=
LIBYAML_STATIC_LIBS_OTHER:INTERNAL=
LIBYAML_STATIC_LIBS_PATHS:INTERNAL=
LIBYAML_VERSION:INTERNAL=0.2.5
LIBYAML_yaml-0.1_INCLUDEDIR:INTERNAL=
LIBYAML_yaml-0.1_LIBDIR:INTERNAL=
LIBYAML_yaml-0.1_PREFIX:INTERNAL=
LIBYAML_yaml-0.1_VERSION:INTERNAL=
OPENSSL_CFLAGS:INTERNAL=-I/usr/include
OPENSSL_CFLAGS_I:INTERNAL=
OPENSSL_CFLAGS_OTHER:INTERNAL=
OPENSSL_FOUND:INTERNAL=1
OPENSSL_INCLUDEDIR:INTERNAL=/usr/include
OPENSSL_INCLUDE_DIRS:INTERNAL=/usr/include
OPENSSL_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lssl;-lcrypto
OPENSSL_LDFLAGS_OTHER:INTERNAL=
OPENSSL_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
OPENSSL_LIBRARIES:INTERNAL=ssl;crypto
OPENSSL_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu
OPENSSL_LIBS:INTERNAL=
OPENSSL_LIBS_L:INTERNAL=
OPENSSL_LIBS_OTHER:INTERNAL=
OPENSSL_LIBS_PATHS:INTERNAL=
OPENSSL_MODULE_NAME:INTERNAL=openssl
OPENSSL_PREFIX:INTERNAL=/usr
OPENSSL_STATIC_CFLAGS:INTERNAL=-I/usr/include
OPENSSL_STATIC_CFLAGS_I:INTERNAL=
OPENSSL_STATIC_CFLAGS_OTHER:INTERNAL=
OPENSSL_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include
OPENSSL_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lssl;-L/usr/lib/x86_64-linux-gnu;-ldl;-pthread;-lcrypto;-ldl;-pthread
OPENSSL_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread;-pthread
OPENSSL_STATIC_LIBDIR:INTERNAL=
OPENSSL_STATIC_LIBRARIES:INTERNAL=ssl;dl;crypto;dl
OPENSSL_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu
OPENSSL_STATIC_LIBS:INTERNAL=
OPENSSL_STATIC_LIBS_L:INTERNAL=
OPENSSL_STATIC_LIBS_OTHER:INTERNAL=
OPENSSL_STATIC_LIBS_PATHS:INTERNAL=
OPENSSL_VERSION:INTERNAL=3.0.13
OPENSSL_openssl_INCLUDEDIR:INTERNAL=
OPENSSL_openssl_LIBDIR:INTERNAL=
OPENSSL_openssl_PREFIX:INTERNAL=
OPENSSL_openssl_VERSION:INTERNAL=
PC_CURL_CFLAGS:INTERNAL=-I/usr/include/x86_64-linux-gnu
PC_CURL_CFLAGS_I:INTERNAL=
PC_CURL_CFLAGS_OTHER:INTERNAL=
PC_CURL_FOUND:INTERNAL=1
PC_CURL_INCLUDEDIR:INTERNAL=/usr/include/x86_64-linux-gnu
PC_CURL_INCLUDE_DIRS:INTERNAL=/usr/include/x86_64-linux-gnu
PC_CURL_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lcurl
PC_CURL_LDFLAGS_OTHER:INTERNAL=
PC_CURL_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
PC_CURL_LIBRARIES:INTERNAL=curl
PC_CURL_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu
PC_CURL_LIBS:INTERNAL=
PC_CURL_LIBS_L:INTERNAL=
PC_CURL_LIBS_OTHER:INTERNAL=
PC_CURL_LIBS_PATHS:INTERNAL=
PC_CURL_MODULE_NAME:INTERNAL=libcurl
PC_CURL_PREFIX:INTERNAL=/usr
PC_CURL_STATIC_CFLAGS:INTERNAL=-I/usr/include/x86_64-linux-gnu
PC_CURL_STATIC_CFLAGS_I:INTERNAL=
PC_CURL_STATIC_CFLAGS_OTHER:INTERNAL=
PC_CURL_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/x86_64-linux-gnu
PC_CURL_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lcurl;-lnghttp2;-lidn2;-lrtmp;-lssh;-lssh;-lpsl;-lssl;-lcrypto;-lssl;-lcrypto;-lgssapi_krb5;-llber;-lldap;-llber;-lzstd;-lbrotlidec;-lz
PC_CURL_STATIC_LDFLAGS_OTHER:INTERNAL=
PC_CURL_STATIC_LIBDIR:INTERNAL=
PC_CURL_STATIC_LIBRARIES:INTERNAL=curl;nghttp2;idn2;rtmp;ssh;ssh;psl;ssl;crypto;ssl;crypto;gssapi_krb5;lber;ldap;lber;zstd;brotlidec;z
PC_CURL_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu
PC_CURL_STATIC_LIBS:INTERNAL=
PC_CURL_STATIC_LIBS_L:INTERNAL=
PC_CURL_STATIC_LIBS_OTHER:INTERNAL=
PC_CURL_STATIC_LIBS_PATHS:INTERNAL=
PC_CURL_VERSION:INTERNAL=8.5.0
PC_CURL_libcurl_INCLUDEDIR:INTERNAL=
PC_CURL_libcurl_LIBDIR:INTERNAL=
PC_CURL_libcurl_PREFIX:INTERNAL=
PC_CURL_libcurl_VERSION:INTERNAL=
//ADVANCED property for variable: PKG_CONFIG_ARGN
PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
SYSTEMD_CFLAGS:INTERNAL=-I/usr/include
SYSTEMD_CFLAGS_I:INTERNAL=
SYSTEMD_CFLAGS_OTHER:INTERNAL=
SYSTEMD_FOUND:INTERNAL=1
SYSTEMD_INCLUDEDIR:INTERNAL=/usr/include
SYSTEMD_INCLUDE_DIRS:INTERNAL=/usr/include
SYSTEMD_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lsystemd
SYSTEMD_LDFLAGS_OTHER:INTERNAL=
SYSTEMD_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
SYSTEMD_LIBRARIES:INTERNAL=systemd
SYSTEMD_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu
SYSTEMD_LIBS:INTERNAL=
SYSTEMD_LIBS_L:INTERNAL=
SYSTEMD_LIBS_OTHER:INTERNAL=
SYSTEMD_LIBS_PATHS:INTERNAL=
SYSTEMD_MODULE_NAME:INTERNAL=libsystemd
SYSTEMD_PREFIX:INTERNAL=/usr
SYSTEMD_STATIC_CFLAGS:INTERNAL=-I/usr/include
SYSTEMD_STATIC_CFLAGS_I:INTERNAL=
SYSTEMD_STATIC_CFLAGS_OTHER:INTERNAL=
SYSTEMD_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include
SYSTEMD_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lsystemd
SYSTEMD_STATIC_LDFLAGS_OTHER:INTERNAL=
SYSTEMD_STATIC_LIBDIR:INTERNAL=
SYSTEMD_STATIC_LIBRARIES:INTERNAL=systemd
SYSTEMD_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu
SYSTEMD_STATIC_LIBS:INTERNAL=
SYSTEMD_STATIC_LIBS_L:INTERNAL=
SYSTEMD_STATIC_LIBS_OTHER:INTERNAL=
SYSTEMD_STATIC_LIBS_PATHS:INTERNAL=
SYSTEMD_VERSION:INTERNAL=255
SYSTEMD_libsystemd_INCLUDEDIR:INTERNAL=
SYSTEMD_libsystemd_LIBDIR:INTERNAL=
SYSTEMD_libsystemd_PREFIX:INTERNAL=
SYSTEMD_libsystemd_VERSION:INTERNAL=
//linker supports push/pop state
_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE
//CMAKE_INSTALL_PREFIX during last run
_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr
__pkg_config_arguments_DBUS:INTERNAL=REQUIRED;dbus-1
__pkg_config_arguments_LIBYAML:INTERNAL=REQUIRED;yaml-0.1
__pkg_config_arguments_OPENSSL:INTERNAL=REQUIRED;openssl
__pkg_config_arguments_PC_CURL:INTERNAL=QUIET;libcurl
__pkg_config_arguments_SYSTEMD:INTERNAL=REQUIRED;libsystemd
__pkg_config_checked_DBUS:INTERNAL=1
__pkg_config_checked_LIBYAML:INTERNAL=1
__pkg_config_checked_OPENSSL:INTERNAL=1
__pkg_config_checked_PC_CURL:INTERNAL=1
__pkg_config_checked_SYSTEMD:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_DBUS_dbus-1
pkgcfg_lib_DBUS_dbus-1-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_LIBYAML_yaml
pkgcfg_lib_LIBYAML_yaml-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_OPENSSL_crypto
pkgcfg_lib_OPENSSL_crypto-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_OPENSSL_ssl
pkgcfg_lib_OPENSSL_ssl-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_CURL_curl
pkgcfg_lib_PC_CURL_curl-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_SYSTEMD_systemd
pkgcfg_lib_SYSTEMD_systemd-ADVANCED:INTERNAL=1
prefix_result:INTERNAL=/usr/lib/x86_64-linux-gnu
@@ -1,85 +0,0 @@
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "13.3.0")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23")
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
set(CMAKE_CXX_PLATFORM_ID "Linux")
set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
set(CMAKE_CXX_SIMULATE_VERSION "")
set(CMAKE_AR "/usr/bin/ar")
set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-13")
set(CMAKE_RANLIB "/usr/bin/ranlib")
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-13")
set(CMAKE_LINKER "/usr/bin/ld")
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
set(CMAKE_COMPILER_IS_GNUCXX 1)
set(CMAKE_CXX_COMPILER_LOADED 1)
set(CMAKE_CXX_COMPILER_WORKS TRUE)
set(CMAKE_CXX_ABI_COMPILED TRUE)
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
set(CMAKE_CXX_COMPILER_ID_RUN 1)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m)
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
foreach (lang C OBJC OBJCXX)
if (CMAKE_${lang}_COMPILER_ID_RUN)
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
endforeach()
endif()
endforeach()
set(CMAKE_CXX_LINKER_PREFERENCE 30)
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE)
# Save compiler ABI information.
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
set(CMAKE_CXX_COMPILER_ABI "ELF")
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
if(CMAKE_CXX_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_CXX_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
endif()
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
endif()
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/13;/usr/include/x86_64-linux-gnu/c++/13;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include")
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
@@ -1,15 +0,0 @@
set(CMAKE_HOST_SYSTEM "Linux-6.8.0-110-generic")
set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "6.8.0-110-generic")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
set(CMAKE_SYSTEM "Linux-6.8.0-110-generic")
set(CMAKE_SYSTEM_NAME "Linux")
set(CMAKE_SYSTEM_VERSION "6.8.0-110-generic")
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
set(CMAKE_CROSSCOMPILING "FALSE")
set(CMAKE_SYSTEM_LOADED 1)
@@ -1,869 +0,0 @@
/* This source file must have a .cpp extension so that all C++ compilers
recognize the extension without flags. Borland does not know .cxx for
example. */
#ifndef __cplusplus
# error "A C compiler has been selected for C++."
#endif
#if !defined(__has_include)
/* If the compiler does not have __has_include, pretend the answer is
always no. */
# define __has_include(x) 0
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__COMO__)
# define COMPILER_ID "Comeau"
/* __COMO_VERSION__ = VRR */
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
#elif defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
except that a few beta releases use the old format with V=2021. */
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
/* The third version component from --version is an update index,
but no macro is provided for it. */
# define COMPILER_VERSION_PATCH DEC(0)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
# define COMPILER_ID "IntelLLVM"
#if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
#endif
#if defined(__GNUC__)
# define SIMULATE_ID "GNU"
#endif
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
* VVVV is no smaller than the current year when a version is released.
*/
#if __INTEL_LLVM_COMPILER < 1000000L
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
#else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
#endif
#if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
#endif
#if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
#elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
#endif
#if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
#endif
#if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
#endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_CC)
# define COMPILER_ID "SunPro"
# if __SUNPRO_CC >= 0x5100
/* __SUNPRO_CC = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# endif
#elif defined(__HP_aCC)
# define COMPILER_ID "HP"
/* __HP_aCC = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
#elif defined(__DECCXX)
# define COMPILER_ID "Compaq"
/* __DECCXX_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__open_xl__) && defined(__clang__)
# define COMPILER_ID "IBMClang"
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
#elif defined(__ibmxl__) && defined(__clang__)
# define COMPILER_ID "XLClang"
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
# define COMPILER_ID "XL"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__NVCOMPILER)
# define COMPILER_ID "NVHPC"
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
# if defined(__NVCOMPILER_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
# endif
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(__clang__) && defined(__cray__)
# define COMPILER_ID "CrayClang"
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__CLANG_FUJITSU)
# define COMPILER_ID "FujitsuClang"
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(__FUJITSU)
# define COMPILER_ID "Fujitsu"
# if defined(__FCC_version__)
# define COMPILER_VERSION __FCC_version__
# elif defined(__FCC_major__)
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# endif
# if defined(__fcc_version)
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
# elif defined(__FCC_VERSION)
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
# endif
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
/* __GHS_VERSION_NUMBER = VVVVRP */
# ifdef __GHS_VERSION_NUMBER
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
# endif
#elif defined(__TASKING__)
# define COMPILER_ID "Tasking"
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
#elif defined(__ORANGEC__)
# define COMPILER_ID "OrangeC"
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
# define COMPILER_ID "ARMClang"
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
# define COMPILER_ID "LCC"
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
# if defined(__LCC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
# endif
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
# define SIMULATE_ID "GNU"
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
# endif
#elif defined(__GNUC__) || defined(__GNUG__)
# define COMPILER_ID "GNU"
# if defined(__GNUC__)
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# else
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(_ADI_COMPILER)
# define COMPILER_ID "ADSP"
#if defined(__VERSIONNUM__)
/* __VERSIONNUM__ = 0xVVRRPPTT */
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__) && defined(__ICCARM__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__MSYS__)
# define PLATFORM_ID "MSYS"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# elif defined(__VXWORKS__)
# define PLATFORM_ID "VxWorks"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#elif defined(__INTEGRITY)
# if defined(INT_178B)
# define PLATFORM_ID "Integrity178"
# else /* regular Integrity */
# define PLATFORM_ID "Integrity"
# endif
# elif defined(_ADI_COMPILER)
# define PLATFORM_ID "ADSP"
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_ARM64EC)
# define ARCHITECTURE_ID "ARM64EC"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__ICCRH850__)
# define ARCHITECTURE_ID "RH850"
# elif defined(__ICCRL78__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__ICCRISCV__)
# define ARCHITECTURE_ID "RISCV"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__ICCV850__)
# define ARCHITECTURE_ID "V850"
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# elif defined(__ICCSTM8__)
# define ARCHITECTURE_ID "STM8"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__ghs__)
# if defined(__PPC64__)
# define ARCHITECTURE_ID "PPC64"
# elif defined(__ppc__)
# define ARCHITECTURE_ID "PPC"
# elif defined(__ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__x86_64__)
# define ARCHITECTURE_ID "x64"
# elif defined(__i386__)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__TI_COMPILER_VERSION__)
# if defined(__TI_ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__MSP430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__TMS320C28XX__)
# define ARCHITECTURE_ID "TMS320C28x"
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
# define ARCHITECTURE_ID "TMS320C6x"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
# elif defined(__ADSPSHARC__)
# define ARCHITECTURE_ID "SHARC"
# elif defined(__ADSPBLACKFIN__)
# define ARCHITECTURE_ID "Blackfin"
#elif defined(__TASKING__)
# if defined(__CTC__) || defined(__CPTC__)
# define ARCHITECTURE_ID "TriCore"
# elif defined(__CMCS__)
# define ARCHITECTURE_ID "MCS"
# elif defined(__CARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__CARC__)
# define ARCHITECTURE_ID "ARC"
# elif defined(__C51__)
# define ARCHITECTURE_ID "8051"
# elif defined(__CPCP__)
# define ARCHITECTURE_ID "PCP"
# else
# define ARCHITECTURE_ID ""
# endif
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number. */
#ifdef COMPILER_VERSION
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
/* Construct a string literal encoding the version number components. */
#elif defined(COMPILER_VERSION_MAJOR)
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#elif defined(COMPILER_VERSION_INTERNAL_STR)
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
# if defined(__INTEL_CXX11_MODE__)
# if defined(__cpp_aggregate_nsdmi)
# define CXX_STD 201402L
# else
# define CXX_STD 201103L
# endif
# else
# define CXX_STD 199711L
# endif
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
# define CXX_STD _MSVC_LANG
#else
# define CXX_STD __cplusplus
#endif
const char* info_language_standard_default = "INFO" ":" "standard_default["
#if CXX_STD > 202002L
"23"
#elif CXX_STD > 201703L
"20"
#elif CXX_STD >= 201703L
"17"
#elif CXX_STD >= 201402L
"14"
#elif CXX_STD >= 201103L
"11"
#else
"98"
#endif
"]";
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
defined(__TI_COMPILER_VERSION__)) && \
!defined(__STRICT_ANSI__)
"ON"
#else
"OFF"
#endif
"]";
/*--------------------------------------------------------------------------*/
int main(int argc, char* argv[])
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
require += info_arch[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
require += info_cray[argc];
#endif
require += info_language_standard_default[argc];
require += info_language_extensions_default[argc];
(void)argv;
return require;
}
@@ -1,329 +0,0 @@
---
events:
-
kind: "message-v1"
backtrace:
- "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake:233 (message)"
- "CMakeLists.txt:2 (project)"
message: |
The system is: Linux - 6.8.0-110-generic - x86_64
-
kind: "message-v1"
backtrace:
- "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
- "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
- "/usr/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
- "CMakeLists.txt:2 (project)"
message: |
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/c++
Build flags: -g;-O2;-fno-omit-frame-pointer;-mno-omit-leaf-frame-pointer;-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.;-flto=auto;-ffat-lto-objects;-fstack-protector-strong;-fstack-clash-protection;-Wformat;-Werror=format-security;-fcf-protection;-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1;-Wdate-time;-D_FORTIFY_SOURCE=3
Id flags:
The output was:
0
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
The CXX compiler identification is GNU, found in:
/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CompilerIdCXX/a.out
-
kind: "try_compile-v1"
backtrace:
- "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)"
- "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:2 (project)"
checks:
- "Detecting CXX compiler ABI info"
directories:
source: "/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6"
binary: "/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6"
cmakeVariables:
CMAKE_CXX_FLAGS: "-g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3"
CMAKE_CXX_FLAGS_DEBUG: "-g"
CMAKE_EXE_LINKER_FLAGS: "-Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now"
buildResult:
variable: "CMAKE_CXX_ABI_COMPILED"
cached: true
stdout: |
Change Dir: '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6'
Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_85847/fast
gmake[2]: Entering directory '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6'
/usr/bin/gmake -f CMakeFiles/cmTC_85847.dir/build.make CMakeFiles/cmTC_85847.dir/build
gmake[3]: Entering directory '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6'
Building CXX object CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 -v -o CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1)
COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-ffat-lto-objects' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-v' '-o' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_85847.dir/'
/usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE -D _FORTIFY_SOURCE=3 /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_85847.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -Wformat=1 -Wdate-time -version -fno-omit-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cc28TbsU.s
GNU C++17 (Ubuntu 13.3.0-6ubuntu2~24.04.1) version 13.3.0 (x86_64-linux-gnu)
compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/13"
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/include/c++/13
/usr/include/x86_64-linux-gnu/c++/13
/usr/include/c++/13/backward
/usr/lib/gcc/x86_64-linux-gnu/13/include
/usr/local/include
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
Compiler executable checksum: 7896445e4990772fdae9dc0659a99266
COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-ffat-lto-objects' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-v' '-o' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_85847.dir/'
as -v --gdwarf-5 --64 -o CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc28TbsU.s
GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42
COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-ffat-lto-objects' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-v' '-o' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.'
Linking CXX executable cmTC_85847
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_85847.dir/link.txt --verbose=1
/usr/bin/c++ -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 -Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now -v CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_85847
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1)
COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-flto=auto' '-ffat-lto-objects' '-v' '-o' 'cmTC_85847' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_85847.'
/usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccLftuDB.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -flto=auto -flto=auto --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_85847 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -Bsymbolic-functions -z relro -z now CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o
/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -fresolution=/tmp/ccLftuDB.res -flinker-output=pie CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o
/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -fresolution=/tmp/ccLftuDB.res -flinker-output=pie CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o
LTO parallelism level set to 4
/usr/bin/c++ @/tmp/ccmGlKpl
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1)
COLLECT_GCC_OPTIONS='-c' '-fno-openmp' '-fno-openacc' '-fPIC' '-g' '-O2' '-fcf-protection=full' '-fasynchronous-unwind-tables' '-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-fstack-protector-strong' '-fstack-clash-protection' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-ffat-lto-objects' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-fltrans-output-list=/tmp/ccfE6lTw.ltrans.out' '-fwpa=4' '-fresolution=/tmp/ccLftuDB.res' '-flinker-output=pie' '-shared-libgcc'
/usr/libexec/gcc/x86_64-linux-gnu/13/lto1 -quiet -dumpbase ./cmTC_85847.wpa -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -version -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -ffat-lto-objects -fltrans-output-list=/tmp/ccfE6lTw.ltrans.out -fwpa=4 -fresolution=/tmp/ccLftuDB.res -flinker-output=pie @/tmp/ccsDQWAN
GNU GIMPLE (Ubuntu 13.3.0-6ubuntu2~24.04.1) version 13.3.0 (x86_64-linux-gnu)
compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/../lib/:/lib/../lib/x86_64-linux-gnu/:/lib/../lib/../lib/:/usr/lib/../lib/x86_64-linux-gnu/:/usr/lib/../lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-c' '-fno-openmp' '-fno-openacc' '-fPIC' '-g' '-O2' '-fcf-protection=full' '-fasynchronous-unwind-tables' '-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-fstack-protector-strong' '-fstack-clash-protection' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-ffat-lto-objects' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-fltrans-output-list=/tmp/ccfE6lTw.ltrans.out' '-fwpa=4' '-fresolution=/tmp/ccLftuDB.res' '-flinker-output=pie' '-shared-libgcc' '-dumpdir' './cmTC_85847.wpa.'
make -f /tmp/ccgAyZ2A.mk -j4 all
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1)
COLLECT_GCC_OPTIONS='-c' '-fno-openmp' '-fno-openacc' '-fPIC' '-g' '-O2' '-fcf-protection=full' '-fasynchronous-unwind-tables' '-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-fstack-protector-strong' '-fstack-clash-protection' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-ffat-lto-objects' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-fltrans' '-o' '/tmp/ccfE6lTw.ltrans0.ltrans.o' '-shared-libgcc'
/usr/libexec/gcc/x86_64-linux-gnu/13/lto1 -quiet -dumpbase ./cmTC_85847.ltrans0.ltrans -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -version -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -ffat-lto-objects -fltrans /tmp/ccfE6lTw.ltrans0.o -o /tmp/cclS4XMi.s
GNU GIMPLE (Ubuntu 13.3.0-6ubuntu2~24.04.1) version 13.3.0 (x86_64-linux-gnu)
compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
COLLECT_GCC_OPTIONS='-c' '-fno-openmp' '-fno-openacc' '-fPIC' '-g' '-O2' '-fcf-protection=full' '-fasynchronous-unwind-tables' '-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-fstack-protector-strong' '-fstack-clash-protection' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-ffat-lto-objects' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-fltrans' '-o' '/tmp/ccfE6lTw.ltrans0.ltrans.o' '-shared-libgcc'
as -v --gdwarf-5 --64 -o /tmp/ccfE6lTw.ltrans0.ltrans.o /tmp/cclS4XMi.s
GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42
MAKEFLAGS=w -j4
COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/../lib/:/lib/../lib/x86_64-linux-gnu/:/lib/../lib/../lib/:/usr/lib/../lib/x86_64-linux-gnu/:/usr/lib/../lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-c' '-fno-openmp' '-fno-openacc' '-fPIC' '-g' '-O2' '-fcf-protection=full' '-fasynchronous-unwind-tables' '-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-fstack-protector-strong' '-fstack-clash-protection' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-ffat-lto-objects' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-fltrans' '-o' '/tmp/ccfE6lTw.ltrans0.ltrans.o' '-shared-libgcc' '-dumpdir' './cmTC_85847.ltrans0.ltrans.'
COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-flto=auto' '-ffat-lto-objects' '-v' '-o' 'cmTC_85847' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_85847.'
gmake[3]: Leaving directory '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6'
gmake[2]: Leaving directory '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6'
exitCode: 0
-
kind: "message-v1"
backtrace:
- "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)"
- "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:2 (project)"
message: |
Parsed CXX implicit include dir info: rv=done
found start of include info
found start of implicit include info
add: [/usr/include/c++/13]
add: [/usr/include/x86_64-linux-gnu/c++/13]
add: [/usr/include/c++/13/backward]
add: [/usr/lib/gcc/x86_64-linux-gnu/13/include]
add: [/usr/local/include]
add: [/usr/include/x86_64-linux-gnu]
add: [/usr/include]
end of search list found
collapse include dir [/usr/include/c++/13] ==> [/usr/include/c++/13]
collapse include dir [/usr/include/x86_64-linux-gnu/c++/13] ==> [/usr/include/x86_64-linux-gnu/c++/13]
collapse include dir [/usr/include/c++/13/backward] ==> [/usr/include/c++/13/backward]
collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/13/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/13/include]
collapse include dir [/usr/local/include] ==> [/usr/local/include]
collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
collapse include dir [/usr/include] ==> [/usr/include]
implicit include dirs: [/usr/include/c++/13;/usr/include/x86_64-linux-gnu/c++/13;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include]
-
kind: "message-v1"
backtrace:
- "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)"
- "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:2 (project)"
message: |
Parsed CXX implicit link information:
link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
ignore line: [Change Dir: '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6']
ignore line: []
ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_85847/fast]
ignore line: [gmake[2]: Entering directory '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6']
ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_85847.dir/build.make CMakeFiles/cmTC_85847.dir/build]
ignore line: [gmake[3]: Entering directory '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6']
ignore line: [Building CXX object CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 -v -o CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) ]
ignore line: [COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-ffat-lto-objects' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-v' '-o' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_85847.dir/']
ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE -D _FORTIFY_SOURCE=3 /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_85847.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -Wformat=1 -Wdate-time -version -fno-omit-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cc28TbsU.s]
ignore line: [GNU C++17 (Ubuntu 13.3.0-6ubuntu2~24.04.1) version 13.3.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 13.3.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/13"]
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/include/c++/13]
ignore line: [ /usr/include/x86_64-linux-gnu/c++/13]
ignore line: [ /usr/include/c++/13/backward]
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/13/include]
ignore line: [ /usr/local/include]
ignore line: [ /usr/include/x86_64-linux-gnu]
ignore line: [ /usr/include]
ignore line: [End of search list.]
ignore line: [Compiler executable checksum: 7896445e4990772fdae9dc0659a99266]
ignore line: [COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-ffat-lto-objects' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-v' '-o' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_85847.dir/']
ignore line: [ as -v --gdwarf-5 --64 -o CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc28TbsU.s]
ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42]
ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-ffat-lto-objects' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-v' '-o' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.']
ignore line: [Linking CXX executable cmTC_85847]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_85847.dir/link.txt --verbose=1]
ignore line: [/usr/bin/c++ -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 -Wl -Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl -z relro -Wl -z now -v CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_85847 ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) ]
ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-flto=auto' '-ffat-lto-objects' '-v' '-o' 'cmTC_85847' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_85847.']
link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccLftuDB.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -flto=auto -flto=auto --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_85847 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -Bsymbolic-functions -z relro -z now CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccLftuDB.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-flto=auto] ==> ignore
arg [-flto=auto] ==> ignore
arg [--build-id] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [--hash-style=gnu] ==> ignore
arg [--as-needed] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-znow] ==> ignore
arg [-zrelro] ==> ignore
arg [-o] ==> ignore
arg [cmTC_85847] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/13] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib]
arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
arg [-L/lib/../lib] ==> dir [/lib/../lib]
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..]
arg [-Bsymbolic-functions] ==> ignore
arg [-zrelro] ==> ignore
arg [-znow] ==> ignore
arg [CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o]
collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o]
collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o]
collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13] ==> [/usr/lib/gcc/x86_64-linux-gnu/13]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> [/usr/lib]
collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
collapse library dir [/lib/../lib] ==> [/lib]
collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> [/usr/lib]
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o]
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
implicit fwks: []
...
@@ -1,16 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.28
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/oxmc/VesperOS/packages/vesperprofiled")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
@@ -1,112 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.28
# The generator used is:
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
# The top level Makefile was generated from the following files:
set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt"
"/home/oxmc/VesperOS/packages/vesperprofiled/CMakeLists.txt"
"CMakeFiles/3.28.3/CMakeCXXCompiler.cmake"
"CMakeFiles/3.28.3/CMakeSystem.cmake"
"/usr/share/cmake-3.28/Modules/CMakeCXXCompiler.cmake.in"
"/usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp"
"/usr/share/cmake-3.28/Modules/CMakeCXXInformation.cmake"
"/usr/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake"
"/usr/share/cmake-3.28/Modules/CMakeCompilerIdDetection.cmake"
"/usr/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake"
"/usr/share/cmake-3.28/Modules/CMakeDetermineCompileFeatures.cmake"
"/usr/share/cmake-3.28/Modules/CMakeDetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake"
"/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake"
"/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake"
"/usr/share/cmake-3.28/Modules/CMakeFindBinUtils.cmake"
"/usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake"
"/usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake"
"/usr/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake"
"/usr/share/cmake-3.28/Modules/CMakeParseImplicitIncludeInfo.cmake"
"/usr/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake"
"/usr/share/cmake-3.28/Modules/CMakeParseLibraryArchitecture.cmake"
"/usr/share/cmake-3.28/Modules/CMakeSystem.cmake.in"
"/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake"
"/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake"
"/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake"
"/usr/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake"
"/usr/share/cmake-3.28/Modules/CMakeUnixFindMake.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/ADSP-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/Borland-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/Cray-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/CrayClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/GHS-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/GNU-FindBinUtils.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/GNU.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/IAR-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/Intel-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/MSVC-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/OrangeC-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/PGI-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/PathScale-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/SCO-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/TI-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/Tasking-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/Watcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.28/Modules/FindCURL.cmake"
"/usr/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake"
"/usr/share/cmake-3.28/Modules/FindPackageMessage.cmake"
"/usr/share/cmake-3.28/Modules/FindPkgConfig.cmake"
"/usr/share/cmake-3.28/Modules/GNUInstallDirs.cmake"
"/usr/share/cmake-3.28/Modules/Internal/FeatureTesting.cmake"
"/usr/share/cmake-3.28/Modules/Platform/Linux-Determine-CXX.cmake"
"/usr/share/cmake-3.28/Modules/Platform/Linux-GNU-CXX.cmake"
"/usr/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake"
"/usr/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake"
"/usr/share/cmake-3.28/Modules/Platform/Linux.cmake"
"/usr/share/cmake-3.28/Modules/Platform/UnixPaths.cmake"
"/usr/share/cmake-3.28/Modules/SelectLibraryConfigurations.cmake"
)
# The corresponding makefile is:
set(CMAKE_MAKEFILE_OUTPUTS
"Makefile"
"CMakeFiles/cmake.check_cache"
)
# Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS
"CMakeFiles/3.28.3/CMakeSystem.cmake"
"CMakeFiles/3.28.3/CMakeCXXCompiler.cmake"
"CMakeFiles/3.28.3/CMakeCXXCompiler.cmake"
"CMakeFiles/CMakeDirectoryInformation.cmake"
)
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/vesperprofiled.dir/DependInfo.cmake"
)
-115
View File
@@ -1,115 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.28
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Produce verbose output by default.
VERBOSE = 1
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/oxmc/VesperOS/packages/vesperprofiled
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu
#=============================================================================
# Directory level rules for the build root directory
# The main recursive "all" target.
all: CMakeFiles/vesperprofiled.dir/all
.PHONY : all
# The main recursive "preinstall" target.
preinstall:
.PHONY : preinstall
# The main recursive "clean" target.
clean: CMakeFiles/vesperprofiled.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/vesperprofiled.dir
# All Build rule for target.
CMakeFiles/vesperprofiled.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10 "Built target vesperprofiled"
.PHONY : CMakeFiles/vesperprofiled.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/vesperprofiled.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles 10
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/vesperprofiled.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles 0
.PHONY : CMakeFiles/vesperprofiled.dir/rule
# Convenience name for target.
vesperprofiled: CMakeFiles/vesperprofiled.dir/rule
.PHONY : vesperprofiled
# clean rule for target.
CMakeFiles/vesperprofiled.dir/clean:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/clean
.PHONY : CMakeFiles/vesperprofiled.dir/clean
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system
@@ -1,7 +0,0 @@
/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir
/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/edit_cache.dir
/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/rebuild_cache.dir
/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/list_install_components.dir
/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/install.dir
/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/install/local.dir
/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/install/strip.dir
@@ -1 +0,0 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
@@ -1 +0,0 @@
10
@@ -1,31 +0,0 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
"/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.cpp" "CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o.d"
"/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.cpp" "CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o.d"
"/home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.cpp" "CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o.d"
"/home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.cpp" "CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o.d"
"/home/oxmc/VesperOS/packages/vesperprofiled/src/main.cpp" "CMakeFiles/vesperprofiled.dir/src/main.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/main.cpp.o.d"
"/home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandlers.cpp" "CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o.d"
"/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.cpp" "CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o.d"
"/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.cpp" "CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o.d"
"/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.cpp" "CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o.d"
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
@@ -1,242 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.28
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Produce verbose output by default.
VERBOSE = 1
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/oxmc/VesperOS/packages/vesperprofiled
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu
# Include any dependencies generated for this target.
include CMakeFiles/vesperprofiled.dir/depend.make
# Include any dependencies generated by the compiler for this target.
include CMakeFiles/vesperprofiled.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/vesperprofiled.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/vesperprofiled.dir/flags.make
CMakeFiles/vesperprofiled.dir/src/main.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make
CMakeFiles/vesperprofiled.dir/src/main.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/main.cpp
CMakeFiles/vesperprofiled.dir/src/main.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/vesperprofiled.dir/src/main.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/main.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/main.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/main.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/main.cpp
CMakeFiles/vesperprofiled.dir/src/main.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/main.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/main.cpp > CMakeFiles/vesperprofiled.dir/src/main.cpp.i
CMakeFiles/vesperprofiled.dir/src/main.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/main.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/main.cpp -o CMakeFiles/vesperprofiled.dir/src/main.cpp.s
CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make
CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.cpp
CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.cpp
CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.cpp > CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.i
CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.cpp -o CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.s
CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make
CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.cpp
CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.cpp
CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.cpp > CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.i
CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.cpp -o CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.s
CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make
CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.cpp
CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.cpp
CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.cpp > CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.i
CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.cpp -o CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.s
CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make
CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.cpp
CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.cpp
CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.cpp > CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.i
CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.cpp -o CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.s
CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make
CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandlers.cpp
CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandlers.cpp
CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandlers.cpp > CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.i
CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandlers.cpp -o CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.s
CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make
CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.cpp
CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.cpp
CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.cpp > CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.i
CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.cpp -o CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.s
CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make
CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.cpp
CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.cpp
CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.cpp > CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.i
CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.cpp -o CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.s
CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make
CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.cpp
CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.cpp
CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.cpp > CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.i
CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.cpp -o CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.s
# Object files for target vesperprofiled
vesperprofiled_OBJECTS = \
"CMakeFiles/vesperprofiled.dir/src/main.cpp.o" \
"CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o" \
"CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o" \
"CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o" \
"CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o" \
"CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o" \
"CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o" \
"CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o" \
"CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o"
# External object files for target vesperprofiled
vesperprofiled_EXTERNAL_OBJECTS =
vesperprofiled: CMakeFiles/vesperprofiled.dir/src/main.cpp.o
vesperprofiled: CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o
vesperprofiled: CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o
vesperprofiled: CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o
vesperprofiled: CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o
vesperprofiled: CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o
vesperprofiled: CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o
vesperprofiled: CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o
vesperprofiled: CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o
vesperprofiled: CMakeFiles/vesperprofiled.dir/build.make
vesperprofiled: /usr/lib/x86_64-linux-gnu/libcurl.so
vesperprofiled: CMakeFiles/vesperprofiled.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX executable vesperprofiled"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/vesperprofiled.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/vesperprofiled.dir/build: vesperprofiled
.PHONY : CMakeFiles/vesperprofiled.dir/build
CMakeFiles/vesperprofiled.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/vesperprofiled.dir/cmake_clean.cmake
.PHONY : CMakeFiles/vesperprofiled.dir/clean
CMakeFiles/vesperprofiled.dir/depend:
cd /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/oxmc/VesperOS/packages/vesperprofiled /home/oxmc/VesperOS/packages/vesperprofiled /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/DependInfo.cmake "--color=$(COLOR)"
.PHONY : CMakeFiles/vesperprofiled.dir/depend
@@ -1,27 +0,0 @@
file(REMOVE_RECURSE
"CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o"
"CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o.d"
"CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o"
"CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o.d"
"CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o"
"CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o.d"
"CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o"
"CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o.d"
"CMakeFiles/vesperprofiled.dir/src/main.cpp.o"
"CMakeFiles/vesperprofiled.dir/src/main.cpp.o.d"
"CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o"
"CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o.d"
"CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o"
"CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o.d"
"CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o"
"CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o.d"
"CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o"
"CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o.d"
"vesperprofiled"
"vesperprofiled.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/vesperprofiled.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()
@@ -1,2 +0,0 @@
# Empty compiler generated dependencies file for vesperprofiled.
# This may be replaced when dependencies are built.
@@ -1,2 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for compiler generated dependencies management for vesperprofiled.
@@ -1,2 +0,0 @@
# Empty dependencies file for vesperprofiled.
# This may be replaced when dependencies are built.
@@ -1,10 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.28
# compile CXX with /usr/bin/c++
CXX_DEFINES =
CXX_INCLUDES = -I/home/oxmc/VesperOS/packages/vesperprofiled/src -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include
CXX_FLAGS = -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 -O2 -DNDEBUG -std=c++17 -Wall -Wextra -Werror
@@ -1 +0,0 @@
/usr/bin/c++ -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 -O2 -DNDEBUG -Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now CMakeFiles/vesperprofiled.dir/src/main.cpp.o CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o -o vesperprofiled -lssl -lcrypto -lyaml -ldbus-1 -lsystemd /usr/lib/x86_64-linux-gnu/libcurl.so -lpthread
@@ -1,11 +0,0 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2
CMAKE_PROGRESS_3 = 3
CMAKE_PROGRESS_4 = 4
CMAKE_PROGRESS_5 = 5
CMAKE_PROGRESS_6 = 6
CMAKE_PROGRESS_7 = 7
CMAKE_PROGRESS_8 = 8
CMAKE_PROGRESS_9 = 9
CMAKE_PROGRESS_10 = 10
@@ -1,186 +0,0 @@
CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o: \
/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.cpp \
/usr/include/stdc-predef.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.h \
/usr/include/c++/13/cstdint \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \
/usr/include/features.h /usr/include/features-time64.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/bits/timesize.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/long-double.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \
/usr/include/c++/13/pstl/pstl_config.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/x86_64-linux-gnu/bits/time64.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
/usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \
/usr/include/c++/13/bits/stringfwd.h \
/usr/include/c++/13/bits/memoryfwd.h \
/usr/include/c++/13/bits/char_traits.h \
/usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \
/usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
/usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \
/usr/include/x86_64-linux-gnu/bits/wchar2.h \
/usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \
/usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \
/usr/include/c++/13/bits/exception.h \
/usr/include/c++/13/bits/functexcept.h \
/usr/include/c++/13/bits/exception_defines.h \
/usr/include/c++/13/bits/move.h \
/usr/include/c++/13/bits/cpp_type_traits.h \
/usr/include/c++/13/bits/localefwd.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \
/usr/include/c++/13/clocale /usr/include/locale.h \
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \
/usr/include/c++/13/cctype /usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/include/x86_64-linux-gnu/bits/endianness.h \
/usr/include/c++/13/bits/ostream_insert.h \
/usr/include/c++/13/bits/cxxabi_forced.h \
/usr/include/c++/13/bits/stl_iterator_base_funcs.h \
/usr/include/c++/13/bits/concept_check.h \
/usr/include/c++/13/debug/assertions.h \
/usr/include/c++/13/bits/stl_iterator_base_types.h \
/usr/include/c++/13/bits/stl_iterator.h \
/usr/include/c++/13/ext/type_traits.h \
/usr/include/c++/13/bits/ptr_traits.h \
/usr/include/c++/13/bits/stl_function.h \
/usr/include/c++/13/backward/binders.h \
/usr/include/c++/13/ext/numeric_traits.h \
/usr/include/c++/13/bits/stl_algobase.h \
/usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \
/usr/include/c++/13/debug/debug.h \
/usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \
/usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \
/usr/include/c++/13/bits/range_access.h \
/usr/include/c++/13/initializer_list \
/usr/include/c++/13/bits/basic_string.h \
/usr/include/c++/13/ext/alloc_traits.h \
/usr/include/c++/13/bits/alloc_traits.h \
/usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \
/usr/include/c++/13/bits/functional_hash.h \
/usr/include/c++/13/bits/hash_bytes.h \
/usr/include/c++/13/bits/string_view.tcc \
/usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/bits/select-decl.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
/usr/include/c++/13/bits/charconv.h \
/usr/include/c++/13/bits/basic_string.tcc \
/usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \
/usr/include/c++/13/bits/uses_allocator.h \
/usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \
/usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \
/usr/include/c++/13/bits/stl_vector.h \
/usr/include/c++/13/bits/stl_bvector.h \
/usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \
/usr/include/c++/13/bits/stl_tree.h \
/usr/include/c++/13/ext/aligned_buffer.h \
/usr/include/c++/13/bits/node_handle.h \
/usr/include/c++/13/bits/stl_map.h \
/usr/include/c++/13/bits/stl_multimap.h \
/usr/include/c++/13/bits/erase_if.h /usr/include/yaml.h \
/usr/include/c++/13/stdlib.h /usr/include/string.h \
/usr/include/strings.h \
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
/usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-path.h \
/usr/include/x86_64-linux-gnu/bits/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-decl.h \
/usr/include/c++/13/cstring /usr/include/c++/13/sstream \
/usr/include/c++/13/istream /usr/include/c++/13/ios \
/usr/include/c++/13/exception /usr/include/c++/13/bits/exception_ptr.h \
/usr/include/c++/13/bits/cxxabi_init_exception.h \
/usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \
/usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \
/usr/include/pthread.h /usr/include/sched.h \
/usr/include/x86_64-linux-gnu/bits/sched.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
/usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/timex.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \
/usr/include/x86_64-linux-gnu/sys/single_threaded.h \
/usr/include/c++/13/bits/locale_classes.h \
/usr/include/c++/13/bits/locale_classes.tcc \
/usr/include/c++/13/system_error \
/usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \
/usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \
/usr/include/c++/13/bits/streambuf.tcc \
/usr/include/c++/13/bits/basic_ios.h \
/usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \
/usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \
/usr/include/c++/13/bits/streambuf_iterator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \
/usr/include/c++/13/bits/locale_facets.tcc \
/usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \
/usr/include/c++/13/bits/ostream.tcc \
/usr/include/c++/13/bits/istream.tcc \
/usr/include/c++/13/bits/sstream.tcc
@@ -1,247 +0,0 @@
CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o: \
/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.cpp \
/usr/include/stdc-predef.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.h \
/usr/include/c++/13/cstdint \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \
/usr/include/features.h /usr/include/features-time64.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/bits/timesize.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/long-double.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \
/usr/include/c++/13/pstl/pstl_config.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/x86_64-linux-gnu/bits/time64.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
/usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \
/usr/include/c++/13/bits/stringfwd.h \
/usr/include/c++/13/bits/memoryfwd.h \
/usr/include/c++/13/bits/char_traits.h \
/usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \
/usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
/usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \
/usr/include/x86_64-linux-gnu/bits/wchar2.h \
/usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \
/usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \
/usr/include/c++/13/bits/exception.h \
/usr/include/c++/13/bits/functexcept.h \
/usr/include/c++/13/bits/exception_defines.h \
/usr/include/c++/13/bits/move.h \
/usr/include/c++/13/bits/cpp_type_traits.h \
/usr/include/c++/13/bits/localefwd.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \
/usr/include/c++/13/clocale /usr/include/locale.h \
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \
/usr/include/c++/13/cctype /usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/include/x86_64-linux-gnu/bits/endianness.h \
/usr/include/c++/13/bits/ostream_insert.h \
/usr/include/c++/13/bits/cxxabi_forced.h \
/usr/include/c++/13/bits/stl_iterator_base_funcs.h \
/usr/include/c++/13/bits/concept_check.h \
/usr/include/c++/13/debug/assertions.h \
/usr/include/c++/13/bits/stl_iterator_base_types.h \
/usr/include/c++/13/bits/stl_iterator.h \
/usr/include/c++/13/ext/type_traits.h \
/usr/include/c++/13/bits/ptr_traits.h \
/usr/include/c++/13/bits/stl_function.h \
/usr/include/c++/13/backward/binders.h \
/usr/include/c++/13/ext/numeric_traits.h \
/usr/include/c++/13/bits/stl_algobase.h \
/usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \
/usr/include/c++/13/debug/debug.h \
/usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \
/usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \
/usr/include/c++/13/bits/range_access.h \
/usr/include/c++/13/initializer_list \
/usr/include/c++/13/bits/basic_string.h \
/usr/include/c++/13/ext/alloc_traits.h \
/usr/include/c++/13/bits/alloc_traits.h \
/usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \
/usr/include/c++/13/bits/functional_hash.h \
/usr/include/c++/13/bits/hash_bytes.h \
/usr/include/c++/13/bits/string_view.tcc \
/usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/bits/select-decl.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
/usr/include/c++/13/bits/charconv.h \
/usr/include/c++/13/bits/basic_string.tcc \
/usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \
/usr/include/c++/13/bits/uses_allocator.h \
/usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \
/usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \
/usr/include/c++/13/bits/stl_vector.h \
/usr/include/c++/13/bits/stl_bvector.h \
/usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \
/usr/include/c++/13/bits/stl_tree.h \
/usr/include/c++/13/ext/aligned_buffer.h \
/usr/include/c++/13/bits/node_handle.h \
/usr/include/c++/13/bits/stl_map.h \
/usr/include/c++/13/bits/stl_multimap.h \
/usr/include/c++/13/bits/erase_if.h /usr/include/openssl/evp.h \
/usr/include/openssl/macros.h \
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
/usr/include/openssl/opensslv.h /usr/include/openssl/types.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
/usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
/usr/include/x86_64-linux-gnu/bits/uio_lim.h \
/usr/include/openssl/e_os2.h /usr/include/openssl/safestack.h \
/usr/include/openssl/stack.h /usr/include/openssl/core.h \
/usr/include/openssl/core_dispatch.h /usr/include/openssl/symhacks.h \
/usr/include/openssl/bio.h /usr/include/openssl/crypto.h \
/usr/include/c++/13/stdlib.h /usr/include/time.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/timex.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
/usr/include/openssl/cryptoerr.h /usr/include/openssl/cryptoerr_legacy.h \
/usr/include/pthread.h /usr/include/sched.h \
/usr/include/x86_64-linux-gnu/bits/sched.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
/usr/include/openssl/bioerr.h /usr/include/openssl/evperr.h \
/usr/include/openssl/params.h /usr/include/openssl/bn.h \
/usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \
/usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \
/usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \
/usr/include/openssl/rand.h /usr/include/openssl/randerr.h \
/usr/include/c++/13/algorithm /usr/include/c++/13/bits/stl_algo.h \
/usr/include/c++/13/bits/algorithmfwd.h \
/usr/include/c++/13/bits/stl_heap.h \
/usr/include/c++/13/bits/uniform_int_dist.h \
/usr/include/c++/13/bits/stl_tempbuf.h \
/usr/include/c++/13/pstl/glue_algorithm_defs.h \
/usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/cstring \
/usr/include/string.h /usr/include/strings.h \
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
/usr/include/c++/13/ctime /usr/include/dirent.h \
/usr/include/x86_64-linux-gnu/bits/dirent.h \
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h \
/usr/include/c++/13/fstream /usr/include/c++/13/istream \
/usr/include/c++/13/ios /usr/include/c++/13/exception \
/usr/include/c++/13/bits/exception_ptr.h \
/usr/include/c++/13/bits/cxxabi_init_exception.h \
/usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \
/usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \
/usr/include/x86_64-linux-gnu/sys/single_threaded.h \
/usr/include/c++/13/bits/locale_classes.h \
/usr/include/c++/13/bits/locale_classes.tcc \
/usr/include/c++/13/system_error \
/usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \
/usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \
/usr/include/c++/13/bits/streambuf.tcc \
/usr/include/c++/13/bits/basic_ios.h \
/usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \
/usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \
/usr/include/c++/13/bits/streambuf_iterator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \
/usr/include/c++/13/bits/locale_facets.tcc \
/usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \
/usr/include/c++/13/bits/ostream.tcc \
/usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/bits/codecvt.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \
/usr/include/c++/13/bits/fstream.tcc /usr/include/c++/13/sstream \
/usr/include/c++/13/bits/sstream.tcc \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/bits/struct_stat.h \
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
/usr/include/linux/stddef.h \
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h \
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
/usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-path.h \
/usr/include/x86_64-linux-gnu/bits/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-decl.h /usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/x86_64-linux-gnu/bits/unistd-decl.h \
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
/usr/include/linux/close_range.h
@@ -1,224 +0,0 @@
CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o: \
/home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.cpp \
/usr/include/stdc-predef.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.h \
/usr/include/c++/13/cstdint \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \
/usr/include/features.h /usr/include/features-time64.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/bits/timesize.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/long-double.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \
/usr/include/c++/13/pstl/pstl_config.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/x86_64-linux-gnu/bits/time64.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
/usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \
/usr/include/c++/13/bits/stringfwd.h \
/usr/include/c++/13/bits/memoryfwd.h \
/usr/include/c++/13/bits/char_traits.h \
/usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \
/usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
/usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \
/usr/include/x86_64-linux-gnu/bits/wchar2.h \
/usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \
/usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \
/usr/include/c++/13/bits/exception.h \
/usr/include/c++/13/bits/functexcept.h \
/usr/include/c++/13/bits/exception_defines.h \
/usr/include/c++/13/bits/move.h \
/usr/include/c++/13/bits/cpp_type_traits.h \
/usr/include/c++/13/bits/localefwd.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \
/usr/include/c++/13/clocale /usr/include/locale.h \
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \
/usr/include/c++/13/cctype /usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/include/x86_64-linux-gnu/bits/endianness.h \
/usr/include/c++/13/bits/ostream_insert.h \
/usr/include/c++/13/bits/cxxabi_forced.h \
/usr/include/c++/13/bits/stl_iterator_base_funcs.h \
/usr/include/c++/13/bits/concept_check.h \
/usr/include/c++/13/debug/assertions.h \
/usr/include/c++/13/bits/stl_iterator_base_types.h \
/usr/include/c++/13/bits/stl_iterator.h \
/usr/include/c++/13/ext/type_traits.h \
/usr/include/c++/13/bits/ptr_traits.h \
/usr/include/c++/13/bits/stl_function.h \
/usr/include/c++/13/backward/binders.h \
/usr/include/c++/13/ext/numeric_traits.h \
/usr/include/c++/13/bits/stl_algobase.h \
/usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \
/usr/include/c++/13/debug/debug.h \
/usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \
/usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \
/usr/include/c++/13/bits/range_access.h \
/usr/include/c++/13/initializer_list \
/usr/include/c++/13/bits/basic_string.h \
/usr/include/c++/13/ext/alloc_traits.h \
/usr/include/c++/13/bits/alloc_traits.h \
/usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \
/usr/include/c++/13/bits/functional_hash.h \
/usr/include/c++/13/bits/hash_bytes.h \
/usr/include/c++/13/bits/string_view.tcc \
/usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/bits/select-decl.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
/usr/include/c++/13/bits/charconv.h \
/usr/include/c++/13/bits/basic_string.tcc \
/usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \
/usr/include/c++/13/bits/uses_allocator.h \
/usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \
/usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \
/usr/include/c++/13/bits/stl_vector.h \
/usr/include/c++/13/bits/stl_bvector.h \
/usr/include/c++/13/bits/vector.tcc /usr/include/openssl/cms.h \
/usr/include/openssl/macros.h \
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
/usr/include/openssl/opensslv.h /usr/include/openssl/x509.h \
/usr/include/openssl/e_os2.h /usr/include/openssl/types.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
/usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
/usr/include/x86_64-linux-gnu/bits/uio_lim.h \
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
/usr/include/openssl/symhacks.h /usr/include/openssl/buffer.h \
/usr/include/openssl/crypto.h /usr/include/c++/13/stdlib.h \
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/timex.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
/usr/include/openssl/cryptoerr.h /usr/include/openssl/cryptoerr_legacy.h \
/usr/include/openssl/core.h /usr/include/pthread.h /usr/include/sched.h \
/usr/include/x86_64-linux-gnu/bits/sched.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
/usr/include/openssl/buffererr.h /usr/include/openssl/evp.h \
/usr/include/openssl/core_dispatch.h /usr/include/openssl/bio.h \
/usr/include/openssl/bioerr.h /usr/include/openssl/evperr.h \
/usr/include/openssl/params.h /usr/include/openssl/bn.h \
/usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \
/usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \
/usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \
/usr/include/openssl/ec.h /usr/include/string.h /usr/include/strings.h \
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
/usr/include/openssl/conftypes.h /usr/include/openssl/x509v3.h \
/usr/include/openssl/x509v3err.h /usr/include/openssl/cmserr.h \
/usr/include/openssl/err.h /usr/include/openssl/pem.h \
/usr/include/openssl/pemerr.h /usr/include/c++/13/cstring \
/usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \
/usr/include/c++/13/bits/stl_raw_storage_iter.h \
/usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \
/usr/include/c++/13/bits/shared_ptr.h \
/usr/include/c++/13/bits/shared_ptr_base.h /usr/include/c++/13/typeinfo \
/usr/include/c++/13/bits/allocated_ptr.h \
/usr/include/c++/13/ext/aligned_buffer.h \
/usr/include/c++/13/ext/atomicity.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \
/usr/include/x86_64-linux-gnu/sys/single_threaded.h \
/usr/include/c++/13/ext/concurrence.h /usr/include/c++/13/exception \
/usr/include/c++/13/bits/exception_ptr.h \
/usr/include/c++/13/bits/cxxabi_init_exception.h \
/usr/include/c++/13/bits/nested_exception.h \
/usr/include/c++/13/bits/shared_ptr_atomic.h \
/usr/include/c++/13/bits/atomic_base.h \
/usr/include/c++/13/bits/atomic_lockfree_defines.h \
/usr/include/c++/13/backward/auto_ptr.h \
/usr/include/c++/13/pstl/glue_memory_defs.h \
/usr/include/c++/13/pstl/execution_defs.h \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/bits/struct_stat.h \
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
/usr/include/linux/stddef.h \
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h \
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
/usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-path.h \
/usr/include/x86_64-linux-gnu/bits/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-decl.h
@@ -1,254 +0,0 @@
CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o: \
/home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.cpp \
/usr/include/stdc-predef.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.h \
/usr/include/c++/13/cstdint \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \
/usr/include/features.h /usr/include/features-time64.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/bits/timesize.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/long-double.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \
/usr/include/c++/13/pstl/pstl_config.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/x86_64-linux-gnu/bits/time64.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
/usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \
/usr/include/c++/13/bits/stringfwd.h \
/usr/include/c++/13/bits/memoryfwd.h \
/usr/include/c++/13/bits/char_traits.h \
/usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \
/usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
/usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \
/usr/include/x86_64-linux-gnu/bits/wchar2.h \
/usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \
/usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \
/usr/include/c++/13/bits/exception.h \
/usr/include/c++/13/bits/functexcept.h \
/usr/include/c++/13/bits/exception_defines.h \
/usr/include/c++/13/bits/move.h \
/usr/include/c++/13/bits/cpp_type_traits.h \
/usr/include/c++/13/bits/localefwd.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \
/usr/include/c++/13/clocale /usr/include/locale.h \
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \
/usr/include/c++/13/cctype /usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/include/x86_64-linux-gnu/bits/endianness.h \
/usr/include/c++/13/bits/ostream_insert.h \
/usr/include/c++/13/bits/cxxabi_forced.h \
/usr/include/c++/13/bits/stl_iterator_base_funcs.h \
/usr/include/c++/13/bits/concept_check.h \
/usr/include/c++/13/debug/assertions.h \
/usr/include/c++/13/bits/stl_iterator_base_types.h \
/usr/include/c++/13/bits/stl_iterator.h \
/usr/include/c++/13/ext/type_traits.h \
/usr/include/c++/13/bits/ptr_traits.h \
/usr/include/c++/13/bits/stl_function.h \
/usr/include/c++/13/backward/binders.h \
/usr/include/c++/13/ext/numeric_traits.h \
/usr/include/c++/13/bits/stl_algobase.h \
/usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \
/usr/include/c++/13/debug/debug.h \
/usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \
/usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \
/usr/include/c++/13/bits/range_access.h \
/usr/include/c++/13/initializer_list \
/usr/include/c++/13/bits/basic_string.h \
/usr/include/c++/13/ext/alloc_traits.h \
/usr/include/c++/13/bits/alloc_traits.h \
/usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \
/usr/include/c++/13/bits/functional_hash.h \
/usr/include/c++/13/bits/hash_bytes.h \
/usr/include/c++/13/bits/string_view.tcc \
/usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/bits/select-decl.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
/usr/include/c++/13/bits/charconv.h \
/usr/include/c++/13/bits/basic_string.tcc \
/usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \
/usr/include/c++/13/bits/uses_allocator.h \
/usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \
/usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \
/usr/include/c++/13/bits/stl_vector.h \
/usr/include/c++/13/bits/stl_bvector.h \
/usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \
/usr/include/c++/13/bits/stl_tree.h \
/usr/include/c++/13/ext/aligned_buffer.h \
/usr/include/c++/13/bits/node_handle.h \
/usr/include/c++/13/bits/stl_map.h \
/usr/include/c++/13/bits/stl_multimap.h \
/usr/include/c++/13/bits/erase_if.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.h \
/usr/include/dbus-1.0/dbus/dbus.h \
/usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h \
/usr/include/dbus-1.0/dbus/dbus-macros.h \
/usr/include/dbus-1.0/dbus/dbus-address.h \
/usr/include/dbus-1.0/dbus/dbus-types.h \
/usr/include/dbus-1.0/dbus/dbus-errors.h \
/usr/include/dbus-1.0/dbus/dbus-protocol.h \
/usr/include/dbus-1.0/dbus/dbus-bus.h \
/usr/include/dbus-1.0/dbus/dbus-connection.h \
/usr/include/dbus-1.0/dbus/dbus-memory.h \
/usr/include/dbus-1.0/dbus/dbus-message.h \
/usr/include/dbus-1.0/dbus/dbus-shared.h \
/usr/include/dbus-1.0/dbus/dbus-misc.h \
/usr/include/dbus-1.0/dbus/dbus-pending-call.h \
/usr/include/dbus-1.0/dbus/dbus-server.h \
/usr/include/dbus-1.0/dbus/dbus-signature.h \
/usr/include/dbus-1.0/dbus/dbus-syntax.h \
/usr/include/dbus-1.0/dbus/dbus-threads.h /usr/include/c++/13/mutex \
/usr/include/c++/13/exception /usr/include/c++/13/bits/exception_ptr.h \
/usr/include/c++/13/bits/cxxabi_init_exception.h \
/usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \
/usr/include/c++/13/bits/chrono.h /usr/include/c++/13/ratio \
/usr/include/c++/13/limits /usr/include/c++/13/ctime /usr/include/time.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/timex.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
/usr/include/c++/13/bits/parse_numbers.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \
/usr/include/c++/13/bits/std_mutex.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \
/usr/include/pthread.h /usr/include/sched.h \
/usr/include/x86_64-linux-gnu/bits/sched.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
/usr/include/c++/13/bits/unique_lock.h \
/usr/include/c++/13/ext/atomicity.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \
/usr/include/x86_64-linux-gnu/sys/single_threaded.h \
/usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \
/usr/include/c++/13/unordered_map \
/usr/include/c++/13/bits/unordered_map.h \
/usr/include/c++/13/bits/hashtable.h \
/usr/include/c++/13/bits/hashtable_policy.h \
/usr/include/c++/13/bits/enable_special_members.h \
/usr/include/c++/13/array /usr/include/c++/13/compare \
/usr/include/c++/13/bits/stl_algo.h \
/usr/include/c++/13/bits/algorithmfwd.h \
/usr/include/c++/13/bits/stl_heap.h \
/usr/include/c++/13/bits/uniform_int_dist.h \
/usr/include/c++/13/bits/stl_tempbuf.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandler.h \
/usr/include/c++/13/memory \
/usr/include/c++/13/bits/stl_raw_storage_iter.h \
/usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \
/usr/include/c++/13/bits/shared_ptr.h \
/usr/include/c++/13/bits/shared_ptr_base.h \
/usr/include/c++/13/bits/allocated_ptr.h \
/usr/include/c++/13/ext/concurrence.h \
/usr/include/c++/13/bits/shared_ptr_atomic.h \
/usr/include/c++/13/bits/atomic_base.h \
/usr/include/c++/13/bits/atomic_lockfree_defines.h \
/usr/include/c++/13/backward/auto_ptr.h \
/usr/include/c++/13/pstl/glue_memory_defs.h \
/usr/include/c++/13/pstl/execution_defs.h \
/usr/include/systemd/sd-daemon.h /usr/include/inttypes.h \
/usr/include/x86_64-linux-gnu/sys/socket.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
/usr/include/x86_64-linux-gnu/bits/socket.h \
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
/usr/include/x86_64-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \
/usr/include/linux/stddef.h \
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h \
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
/usr/include/asm-generic/bitsperlong.h \
/usr/include/x86_64-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
/usr/include/x86_64-linux-gnu/bits/socket2.h \
/usr/include/systemd/_sd-common.h /usr/include/syslog.h \
/usr/include/x86_64-linux-gnu/sys/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-path.h \
/usr/include/x86_64-linux-gnu/bits/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-decl.h \
/usr/include/c++/13/cstring /usr/include/string.h /usr/include/strings.h \
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
/usr/include/c++/13/sstream /usr/include/c++/13/istream \
/usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \
/usr/include/c++/13/bits/locale_classes.h \
/usr/include/c++/13/bits/locale_classes.tcc \
/usr/include/c++/13/system_error /usr/include/c++/13/stdexcept \
/usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \
/usr/include/c++/13/bits/basic_ios.h \
/usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \
/usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \
/usr/include/c++/13/bits/streambuf_iterator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \
/usr/include/c++/13/bits/locale_facets.tcc \
/usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \
/usr/include/c++/13/bits/ostream.tcc \
/usr/include/c++/13/bits/istream.tcc \
/usr/include/c++/13/bits/sstream.tcc
@@ -1,304 +0,0 @@
CMakeFiles/vesperprofiled.dir/src/main.cpp.o: \
/home/oxmc/VesperOS/packages/vesperprofiled/src/main.cpp \
/usr/include/stdc-predef.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.h \
/usr/include/c++/13/cstdint \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \
/usr/include/features.h /usr/include/features-time64.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/bits/timesize.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/long-double.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \
/usr/include/c++/13/pstl/pstl_config.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/x86_64-linux-gnu/bits/time64.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
/usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \
/usr/include/c++/13/bits/stringfwd.h \
/usr/include/c++/13/bits/memoryfwd.h \
/usr/include/c++/13/bits/char_traits.h \
/usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \
/usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
/usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \
/usr/include/x86_64-linux-gnu/bits/wchar2.h \
/usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \
/usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \
/usr/include/c++/13/bits/exception.h \
/usr/include/c++/13/bits/functexcept.h \
/usr/include/c++/13/bits/exception_defines.h \
/usr/include/c++/13/bits/move.h \
/usr/include/c++/13/bits/cpp_type_traits.h \
/usr/include/c++/13/bits/localefwd.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \
/usr/include/c++/13/clocale /usr/include/locale.h \
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \
/usr/include/c++/13/cctype /usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/include/x86_64-linux-gnu/bits/endianness.h \
/usr/include/c++/13/bits/ostream_insert.h \
/usr/include/c++/13/bits/cxxabi_forced.h \
/usr/include/c++/13/bits/stl_iterator_base_funcs.h \
/usr/include/c++/13/bits/concept_check.h \
/usr/include/c++/13/debug/assertions.h \
/usr/include/c++/13/bits/stl_iterator_base_types.h \
/usr/include/c++/13/bits/stl_iterator.h \
/usr/include/c++/13/ext/type_traits.h \
/usr/include/c++/13/bits/ptr_traits.h \
/usr/include/c++/13/bits/stl_function.h \
/usr/include/c++/13/backward/binders.h \
/usr/include/c++/13/ext/numeric_traits.h \
/usr/include/c++/13/bits/stl_algobase.h \
/usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \
/usr/include/c++/13/debug/debug.h \
/usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \
/usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \
/usr/include/c++/13/bits/range_access.h \
/usr/include/c++/13/initializer_list \
/usr/include/c++/13/bits/basic_string.h \
/usr/include/c++/13/ext/alloc_traits.h \
/usr/include/c++/13/bits/alloc_traits.h \
/usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \
/usr/include/c++/13/bits/functional_hash.h \
/usr/include/c++/13/bits/hash_bytes.h \
/usr/include/c++/13/bits/string_view.tcc \
/usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/bits/select-decl.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
/usr/include/c++/13/bits/charconv.h \
/usr/include/c++/13/bits/basic_string.tcc \
/usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \
/usr/include/c++/13/bits/uses_allocator.h \
/usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \
/usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \
/usr/include/c++/13/bits/stl_vector.h \
/usr/include/c++/13/bits/stl_bvector.h \
/usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \
/usr/include/c++/13/bits/stl_tree.h \
/usr/include/c++/13/ext/aligned_buffer.h \
/usr/include/c++/13/bits/node_handle.h \
/usr/include/c++/13/bits/stl_map.h \
/usr/include/c++/13/bits/stl_multimap.h \
/usr/include/c++/13/bits/erase_if.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.h \
/usr/include/dbus-1.0/dbus/dbus.h \
/usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h \
/usr/include/dbus-1.0/dbus/dbus-macros.h \
/usr/include/dbus-1.0/dbus/dbus-address.h \
/usr/include/dbus-1.0/dbus/dbus-types.h \
/usr/include/dbus-1.0/dbus/dbus-errors.h \
/usr/include/dbus-1.0/dbus/dbus-protocol.h \
/usr/include/dbus-1.0/dbus/dbus-bus.h \
/usr/include/dbus-1.0/dbus/dbus-connection.h \
/usr/include/dbus-1.0/dbus/dbus-memory.h \
/usr/include/dbus-1.0/dbus/dbus-message.h \
/usr/include/dbus-1.0/dbus/dbus-shared.h \
/usr/include/dbus-1.0/dbus/dbus-misc.h \
/usr/include/dbus-1.0/dbus/dbus-pending-call.h \
/usr/include/dbus-1.0/dbus/dbus-server.h \
/usr/include/dbus-1.0/dbus/dbus-signature.h \
/usr/include/dbus-1.0/dbus/dbus-syntax.h \
/usr/include/dbus-1.0/dbus/dbus-threads.h /usr/include/c++/13/mutex \
/usr/include/c++/13/exception /usr/include/c++/13/bits/exception_ptr.h \
/usr/include/c++/13/bits/cxxabi_init_exception.h \
/usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \
/usr/include/c++/13/bits/chrono.h /usr/include/c++/13/ratio \
/usr/include/c++/13/limits /usr/include/c++/13/ctime /usr/include/time.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/timex.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
/usr/include/c++/13/bits/parse_numbers.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \
/usr/include/c++/13/bits/std_mutex.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \
/usr/include/pthread.h /usr/include/sched.h \
/usr/include/x86_64-linux-gnu/bits/sched.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
/usr/include/c++/13/bits/unique_lock.h \
/usr/include/c++/13/ext/atomicity.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \
/usr/include/x86_64-linux-gnu/sys/single_threaded.h \
/usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \
/usr/include/c++/13/unordered_map \
/usr/include/c++/13/bits/unordered_map.h \
/usr/include/c++/13/bits/hashtable.h \
/usr/include/c++/13/bits/hashtable_policy.h \
/usr/include/c++/13/bits/enable_special_members.h \
/usr/include/c++/13/array /usr/include/c++/13/compare \
/usr/include/c++/13/bits/stl_algo.h \
/usr/include/c++/13/bits/algorithmfwd.h \
/usr/include/c++/13/bits/stl_heap.h \
/usr/include/c++/13/bits/uniform_int_dist.h \
/usr/include/c++/13/bits/stl_tempbuf.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandler.h \
/usr/include/c++/13/memory \
/usr/include/c++/13/bits/stl_raw_storage_iter.h \
/usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \
/usr/include/c++/13/bits/shared_ptr.h \
/usr/include/c++/13/bits/shared_ptr_base.h \
/usr/include/c++/13/bits/allocated_ptr.h \
/usr/include/c++/13/ext/concurrence.h \
/usr/include/c++/13/bits/shared_ptr_atomic.h \
/usr/include/c++/13/bits/atomic_base.h \
/usr/include/c++/13/bits/atomic_lockfree_defines.h \
/usr/include/c++/13/backward/auto_ptr.h \
/usr/include/c++/13/pstl/glue_memory_defs.h \
/usr/include/c++/13/pstl/execution_defs.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.h \
/usr/include/systemd/sd-daemon.h /usr/include/inttypes.h \
/usr/include/x86_64-linux-gnu/sys/socket.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
/usr/include/x86_64-linux-gnu/bits/socket.h \
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
/usr/include/x86_64-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \
/usr/include/linux/stddef.h \
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h \
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
/usr/include/asm-generic/bitsperlong.h \
/usr/include/x86_64-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
/usr/include/x86_64-linux-gnu/bits/socket2.h \
/usr/include/systemd/_sd-common.h /usr/include/c++/13/atomic \
/usr/include/c++/13/csignal /usr/include/signal.h \
/usr/include/x86_64-linux-gnu/bits/signum-generic.h \
/usr/include/x86_64-linux-gnu/bits/signum-arch.h \
/usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \
/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \
/usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \
/usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \
/usr/include/x86_64-linux-gnu/bits/siginfo-consts-arch.h \
/usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \
/usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \
/usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
/usr/include/x86_64-linux-gnu/bits/types/stack_t.h \
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
/usr/include/x86_64-linux-gnu/bits/sigstksz.h /usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/x86_64-linux-gnu/bits/unistd-decl.h \
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
/usr/include/linux/close_range.h \
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
/usr/include/x86_64-linux-gnu/bits/signal_ext.h /usr/include/dirent.h \
/usr/include/x86_64-linux-gnu/bits/dirent.h \
/usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h \
/usr/include/c++/13/fstream /usr/include/c++/13/istream \
/usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \
/usr/include/c++/13/bits/locale_classes.h \
/usr/include/c++/13/bits/locale_classes.tcc \
/usr/include/c++/13/system_error /usr/include/c++/13/stdexcept \
/usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \
/usr/include/c++/13/bits/basic_ios.h \
/usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \
/usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \
/usr/include/c++/13/bits/streambuf_iterator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \
/usr/include/c++/13/bits/locale_facets.tcc \
/usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \
/usr/include/c++/13/bits/ostream.tcc \
/usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/bits/codecvt.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \
/usr/include/c++/13/bits/fstream.tcc /usr/include/c++/13/sstream \
/usr/include/c++/13/bits/sstream.tcc /usr/include/syslog.h \
/usr/include/x86_64-linux-gnu/sys/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-path.h \
/usr/include/x86_64-linux-gnu/bits/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-decl.h \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/bits/struct_stat.h \
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
/usr/include/c++/13/thread /usr/include/c++/13/bits/std_thread.h \
/usr/include/c++/13/bits/this_thread_sleep.h
@@ -1,277 +0,0 @@
CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o: \
/home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandlers.cpp \
/usr/include/stdc-predef.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandler.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/../ProfileParser.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/../SignatureVerifier.h \
/usr/include/c++/13/cstdint \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \
/usr/include/features.h /usr/include/features-time64.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/bits/timesize.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/long-double.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \
/usr/include/c++/13/pstl/pstl_config.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/x86_64-linux-gnu/bits/time64.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
/usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \
/usr/include/c++/13/bits/stringfwd.h \
/usr/include/c++/13/bits/memoryfwd.h \
/usr/include/c++/13/bits/char_traits.h \
/usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \
/usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
/usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \
/usr/include/x86_64-linux-gnu/bits/wchar2.h \
/usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \
/usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \
/usr/include/c++/13/bits/exception.h \
/usr/include/c++/13/bits/functexcept.h \
/usr/include/c++/13/bits/exception_defines.h \
/usr/include/c++/13/bits/move.h \
/usr/include/c++/13/bits/cpp_type_traits.h \
/usr/include/c++/13/bits/localefwd.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \
/usr/include/c++/13/clocale /usr/include/locale.h \
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \
/usr/include/c++/13/cctype /usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/include/x86_64-linux-gnu/bits/endianness.h \
/usr/include/c++/13/bits/ostream_insert.h \
/usr/include/c++/13/bits/cxxabi_forced.h \
/usr/include/c++/13/bits/stl_iterator_base_funcs.h \
/usr/include/c++/13/bits/concept_check.h \
/usr/include/c++/13/debug/assertions.h \
/usr/include/c++/13/bits/stl_iterator_base_types.h \
/usr/include/c++/13/bits/stl_iterator.h \
/usr/include/c++/13/ext/type_traits.h \
/usr/include/c++/13/bits/ptr_traits.h \
/usr/include/c++/13/bits/stl_function.h \
/usr/include/c++/13/backward/binders.h \
/usr/include/c++/13/ext/numeric_traits.h \
/usr/include/c++/13/bits/stl_algobase.h \
/usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \
/usr/include/c++/13/debug/debug.h \
/usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \
/usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \
/usr/include/c++/13/bits/range_access.h \
/usr/include/c++/13/initializer_list \
/usr/include/c++/13/bits/basic_string.h \
/usr/include/c++/13/ext/alloc_traits.h \
/usr/include/c++/13/bits/alloc_traits.h \
/usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \
/usr/include/c++/13/bits/functional_hash.h \
/usr/include/c++/13/bits/hash_bytes.h \
/usr/include/c++/13/bits/string_view.tcc \
/usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/bits/select-decl.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
/usr/include/c++/13/bits/charconv.h \
/usr/include/c++/13/bits/basic_string.tcc \
/usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \
/usr/include/c++/13/bits/uses_allocator.h \
/usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \
/usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \
/usr/include/c++/13/bits/stl_vector.h \
/usr/include/c++/13/bits/stl_bvector.h \
/usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \
/usr/include/c++/13/bits/stl_tree.h \
/usr/include/c++/13/ext/aligned_buffer.h \
/usr/include/c++/13/bits/node_handle.h \
/usr/include/c++/13/bits/stl_map.h \
/usr/include/c++/13/bits/stl_multimap.h \
/usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/functional \
/usr/include/c++/13/bits/std_function.h /usr/include/c++/13/typeinfo \
/usr/include/c++/13/unordered_map \
/usr/include/c++/13/bits/unordered_map.h \
/usr/include/c++/13/bits/hashtable.h \
/usr/include/c++/13/bits/hashtable_policy.h \
/usr/include/c++/13/bits/enable_special_members.h \
/usr/include/c++/13/array /usr/include/c++/13/compare \
/usr/include/c++/13/bits/stl_algo.h \
/usr/include/c++/13/bits/algorithmfwd.h \
/usr/include/c++/13/bits/stl_heap.h \
/usr/include/c++/13/bits/uniform_int_dist.h \
/usr/include/c++/13/bits/stl_tempbuf.h /usr/include/c++/13/memory \
/usr/include/c++/13/bits/stl_raw_storage_iter.h \
/usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \
/usr/include/c++/13/bits/shared_ptr.h \
/usr/include/c++/13/bits/shared_ptr_base.h \
/usr/include/c++/13/bits/allocated_ptr.h \
/usr/include/c++/13/ext/atomicity.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \
/usr/include/pthread.h /usr/include/sched.h \
/usr/include/x86_64-linux-gnu/bits/sched.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
/usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/timex.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \
/usr/include/x86_64-linux-gnu/sys/single_threaded.h \
/usr/include/c++/13/ext/concurrence.h /usr/include/c++/13/exception \
/usr/include/c++/13/bits/exception_ptr.h \
/usr/include/c++/13/bits/cxxabi_init_exception.h \
/usr/include/c++/13/bits/nested_exception.h \
/usr/include/c++/13/bits/shared_ptr_atomic.h \
/usr/include/c++/13/bits/atomic_base.h \
/usr/include/c++/13/bits/atomic_lockfree_defines.h \
/usr/include/c++/13/backward/auto_ptr.h \
/usr/include/c++/13/pstl/glue_memory_defs.h \
/usr/include/c++/13/pstl/execution_defs.h /usr/include/openssl/evp.h \
/usr/include/openssl/macros.h \
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
/usr/include/openssl/opensslv.h /usr/include/openssl/types.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
/usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
/usr/include/x86_64-linux-gnu/bits/uio_lim.h \
/usr/include/openssl/e_os2.h /usr/include/openssl/safestack.h \
/usr/include/openssl/stack.h /usr/include/openssl/core.h \
/usr/include/openssl/core_dispatch.h /usr/include/openssl/symhacks.h \
/usr/include/openssl/bio.h /usr/include/openssl/crypto.h \
/usr/include/c++/13/stdlib.h /usr/include/openssl/cryptoerr.h \
/usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/bioerr.h \
/usr/include/openssl/evperr.h /usr/include/openssl/params.h \
/usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
/usr/include/openssl/objectserr.h /usr/include/dbus-1.0/dbus/dbus.h \
/usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h \
/usr/include/dbus-1.0/dbus/dbus-macros.h \
/usr/include/dbus-1.0/dbus/dbus-address.h \
/usr/include/dbus-1.0/dbus/dbus-types.h \
/usr/include/dbus-1.0/dbus/dbus-errors.h \
/usr/include/dbus-1.0/dbus/dbus-protocol.h \
/usr/include/dbus-1.0/dbus/dbus-bus.h \
/usr/include/dbus-1.0/dbus/dbus-connection.h \
/usr/include/dbus-1.0/dbus/dbus-memory.h \
/usr/include/dbus-1.0/dbus/dbus-message.h \
/usr/include/dbus-1.0/dbus/dbus-shared.h \
/usr/include/dbus-1.0/dbus/dbus-misc.h \
/usr/include/dbus-1.0/dbus/dbus-pending-call.h \
/usr/include/dbus-1.0/dbus/dbus-server.h \
/usr/include/dbus-1.0/dbus/dbus-signature.h \
/usr/include/dbus-1.0/dbus/dbus-syntax.h \
/usr/include/dbus-1.0/dbus/dbus-threads.h /usr/include/syslog.h \
/usr/include/x86_64-linux-gnu/sys/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-path.h \
/usr/include/x86_64-linux-gnu/bits/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-decl.h \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/bits/struct_stat.h \
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
/usr/include/linux/stddef.h \
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h \
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
/usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/x86_64-linux-gnu/bits/unistd-decl.h \
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
/usr/include/linux/close_range.h /usr/include/c++/13/cstring \
/usr/include/string.h /usr/include/strings.h \
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
/usr/include/c++/13/fstream /usr/include/c++/13/istream \
/usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \
/usr/include/c++/13/bits/locale_classes.h \
/usr/include/c++/13/bits/locale_classes.tcc \
/usr/include/c++/13/system_error \
/usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \
/usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \
/usr/include/c++/13/bits/streambuf.tcc \
/usr/include/c++/13/bits/basic_ios.h \
/usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \
/usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \
/usr/include/c++/13/bits/streambuf_iterator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \
/usr/include/c++/13/bits/locale_facets.tcc \
/usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \
/usr/include/c++/13/bits/ostream.tcc \
/usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/bits/codecvt.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \
/usr/include/c++/13/bits/fstream.tcc /usr/include/c++/13/sstream \
/usr/include/c++/13/bits/sstream.tcc
@@ -1,176 +0,0 @@
CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o: \
/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.cpp \
/usr/include/stdc-predef.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.h \
/usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \
/usr/include/features.h /usr/include/features-time64.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/bits/timesize.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/long-double.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \
/usr/include/c++/13/pstl/pstl_config.h \
/usr/include/c++/13/bits/stringfwd.h \
/usr/include/c++/13/bits/memoryfwd.h \
/usr/include/c++/13/bits/char_traits.h \
/usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \
/usr/include/wchar.h \
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
/usr/include/x86_64-linux-gnu/bits/floatn.h \
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
/usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \
/usr/include/x86_64-linux-gnu/bits/wchar2.h \
/usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \
/usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \
/usr/include/c++/13/bits/exception.h \
/usr/include/c++/13/bits/functexcept.h \
/usr/include/c++/13/bits/exception_defines.h \
/usr/include/c++/13/bits/move.h \
/usr/include/c++/13/bits/cpp_type_traits.h \
/usr/include/c++/13/bits/localefwd.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \
/usr/include/c++/13/clocale /usr/include/locale.h \
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \
/usr/include/c++/13/cctype /usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/x86_64-linux-gnu/bits/time64.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/include/x86_64-linux-gnu/bits/endianness.h \
/usr/include/c++/13/bits/ostream_insert.h \
/usr/include/c++/13/bits/cxxabi_forced.h \
/usr/include/c++/13/bits/stl_iterator_base_funcs.h \
/usr/include/c++/13/bits/concept_check.h \
/usr/include/c++/13/debug/assertions.h \
/usr/include/c++/13/bits/stl_iterator_base_types.h \
/usr/include/c++/13/bits/stl_iterator.h \
/usr/include/c++/13/ext/type_traits.h \
/usr/include/c++/13/bits/ptr_traits.h \
/usr/include/c++/13/bits/stl_function.h \
/usr/include/c++/13/backward/binders.h \
/usr/include/c++/13/ext/numeric_traits.h \
/usr/include/c++/13/bits/stl_algobase.h \
/usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \
/usr/include/c++/13/debug/debug.h \
/usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \
/usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \
/usr/include/c++/13/bits/range_access.h \
/usr/include/c++/13/initializer_list \
/usr/include/c++/13/bits/basic_string.h \
/usr/include/c++/13/ext/alloc_traits.h \
/usr/include/c++/13/bits/alloc_traits.h \
/usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \
/usr/include/c++/13/bits/functional_hash.h \
/usr/include/c++/13/bits/hash_bytes.h \
/usr/include/c++/13/bits/string_view.tcc \
/usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/bits/select-decl.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
/usr/include/c++/13/bits/charconv.h \
/usr/include/c++/13/bits/basic_string.tcc \
/usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \
/usr/include/c++/13/bits/uses_allocator.h \
/usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \
/usr/include/c++/13/map /usr/include/c++/13/bits/stl_tree.h \
/usr/include/c++/13/ext/aligned_buffer.h \
/usr/include/c++/13/bits/node_handle.h \
/usr/include/c++/13/bits/stl_map.h \
/usr/include/c++/13/bits/stl_multimap.h \
/usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/cstdint \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
/usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \
/usr/include/c++/13/typeinfo /usr/include/c++/13/unordered_map \
/usr/include/c++/13/bits/unordered_map.h \
/usr/include/c++/13/bits/hashtable.h \
/usr/include/c++/13/bits/hashtable_policy.h \
/usr/include/c++/13/bits/enable_special_members.h \
/usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \
/usr/include/c++/13/bits/stl_vector.h \
/usr/include/c++/13/bits/stl_bvector.h \
/usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/array \
/usr/include/c++/13/compare /usr/include/c++/13/bits/stl_algo.h \
/usr/include/c++/13/bits/algorithmfwd.h \
/usr/include/c++/13/bits/stl_heap.h \
/usr/include/c++/13/bits/uniform_int_dist.h \
/usr/include/c++/13/bits/stl_tempbuf.h /usr/include/dbus-1.0/dbus/dbus.h \
/usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h \
/usr/include/dbus-1.0/dbus/dbus-macros.h \
/usr/include/dbus-1.0/dbus/dbus-address.h \
/usr/include/dbus-1.0/dbus/dbus-types.h \
/usr/include/dbus-1.0/dbus/dbus-errors.h \
/usr/include/dbus-1.0/dbus/dbus-protocol.h \
/usr/include/dbus-1.0/dbus/dbus-bus.h \
/usr/include/dbus-1.0/dbus/dbus-connection.h \
/usr/include/dbus-1.0/dbus/dbus-memory.h \
/usr/include/dbus-1.0/dbus/dbus-message.h \
/usr/include/dbus-1.0/dbus/dbus-shared.h \
/usr/include/dbus-1.0/dbus/dbus-misc.h \
/usr/include/dbus-1.0/dbus/dbus-pending-call.h \
/usr/include/dbus-1.0/dbus/dbus-server.h \
/usr/include/dbus-1.0/dbus/dbus-signature.h \
/usr/include/dbus-1.0/dbus/dbus-syntax.h \
/usr/include/dbus-1.0/dbus/dbus-threads.h /usr/include/c++/13/cstring \
/usr/include/string.h /usr/include/strings.h \
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
/usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-path.h \
/usr/include/x86_64-linux-gnu/bits/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-decl.h
@@ -1,264 +0,0 @@
CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o: \
/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.cpp \
/usr/include/stdc-predef.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.h \
/usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \
/usr/include/features.h /usr/include/features-time64.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/bits/timesize.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/long-double.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \
/usr/include/c++/13/pstl/pstl_config.h \
/usr/include/c++/13/bits/stringfwd.h \
/usr/include/c++/13/bits/memoryfwd.h \
/usr/include/c++/13/bits/char_traits.h \
/usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \
/usr/include/wchar.h \
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
/usr/include/x86_64-linux-gnu/bits/floatn.h \
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
/usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \
/usr/include/x86_64-linux-gnu/bits/wchar2.h \
/usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \
/usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \
/usr/include/c++/13/bits/exception.h \
/usr/include/c++/13/bits/functexcept.h \
/usr/include/c++/13/bits/exception_defines.h \
/usr/include/c++/13/bits/move.h \
/usr/include/c++/13/bits/cpp_type_traits.h \
/usr/include/c++/13/bits/localefwd.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \
/usr/include/c++/13/clocale /usr/include/locale.h \
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \
/usr/include/c++/13/cctype /usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/x86_64-linux-gnu/bits/time64.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/include/x86_64-linux-gnu/bits/endianness.h \
/usr/include/c++/13/bits/ostream_insert.h \
/usr/include/c++/13/bits/cxxabi_forced.h \
/usr/include/c++/13/bits/stl_iterator_base_funcs.h \
/usr/include/c++/13/bits/concept_check.h \
/usr/include/c++/13/debug/assertions.h \
/usr/include/c++/13/bits/stl_iterator_base_types.h \
/usr/include/c++/13/bits/stl_iterator.h \
/usr/include/c++/13/ext/type_traits.h \
/usr/include/c++/13/bits/ptr_traits.h \
/usr/include/c++/13/bits/stl_function.h \
/usr/include/c++/13/backward/binders.h \
/usr/include/c++/13/ext/numeric_traits.h \
/usr/include/c++/13/bits/stl_algobase.h \
/usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \
/usr/include/c++/13/debug/debug.h \
/usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \
/usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \
/usr/include/c++/13/bits/range_access.h \
/usr/include/c++/13/initializer_list \
/usr/include/c++/13/bits/basic_string.h \
/usr/include/c++/13/ext/alloc_traits.h \
/usr/include/c++/13/bits/alloc_traits.h \
/usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \
/usr/include/c++/13/bits/functional_hash.h \
/usr/include/c++/13/bits/hash_bytes.h \
/usr/include/c++/13/bits/string_view.tcc \
/usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/bits/select-decl.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
/usr/include/c++/13/bits/charconv.h \
/usr/include/c++/13/bits/basic_string.tcc \
/usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \
/usr/include/c++/13/bits/uses_allocator.h \
/usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \
/usr/include/c++/13/map /usr/include/c++/13/bits/stl_tree.h \
/usr/include/c++/13/ext/aligned_buffer.h \
/usr/include/c++/13/bits/node_handle.h \
/usr/include/c++/13/bits/stl_map.h \
/usr/include/c++/13/bits/stl_multimap.h \
/usr/include/c++/13/bits/erase_if.h /usr/include/openssl/evp.h \
/usr/include/openssl/macros.h \
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
/usr/include/openssl/opensslv.h /usr/include/openssl/types.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
/usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
/usr/include/x86_64-linux-gnu/bits/uio_lim.h \
/usr/include/openssl/e_os2.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
/usr/include/openssl/core.h /usr/include/openssl/core_dispatch.h \
/usr/include/openssl/symhacks.h /usr/include/openssl/bio.h \
/usr/include/openssl/crypto.h /usr/include/c++/13/stdlib.h \
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/timex.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
/usr/include/openssl/cryptoerr.h /usr/include/openssl/cryptoerr_legacy.h \
/usr/include/pthread.h /usr/include/sched.h \
/usr/include/x86_64-linux-gnu/bits/sched.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
/usr/include/openssl/bioerr.h /usr/include/openssl/evperr.h \
/usr/include/openssl/params.h /usr/include/openssl/bn.h \
/usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \
/usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \
/usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \
/usr/include/openssl/sha.h /usr/include/c++/13/algorithm \
/usr/include/c++/13/bits/stl_algo.h \
/usr/include/c++/13/bits/algorithmfwd.h \
/usr/include/c++/13/bits/stl_heap.h \
/usr/include/c++/13/bits/uniform_int_dist.h \
/usr/include/c++/13/bits/stl_tempbuf.h \
/usr/include/c++/13/pstl/glue_algorithm_defs.h \
/usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/ctime \
/usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h \
/usr/include/c++/13/fstream /usr/include/c++/13/istream \
/usr/include/c++/13/ios /usr/include/c++/13/exception \
/usr/include/c++/13/bits/exception_ptr.h \
/usr/include/c++/13/bits/cxxabi_init_exception.h \
/usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \
/usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \
/usr/include/x86_64-linux-gnu/sys/single_threaded.h \
/usr/include/c++/13/bits/locale_classes.h \
/usr/include/c++/13/bits/locale_classes.tcc \
/usr/include/c++/13/system_error \
/usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \
/usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \
/usr/include/c++/13/bits/streambuf.tcc \
/usr/include/c++/13/bits/basic_ios.h \
/usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \
/usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \
/usr/include/c++/13/bits/streambuf_iterator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \
/usr/include/c++/13/bits/locale_facets.tcc \
/usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \
/usr/include/c++/13/bits/ostream.tcc \
/usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/bits/codecvt.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \
/usr/include/c++/13/bits/fstream.tcc /usr/include/c++/13/iomanip \
/usr/include/c++/13/locale \
/usr/include/c++/13/bits/locale_facets_nonio.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/time_members.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/messages_members.h \
/usr/include/libintl.h /usr/include/c++/13/bits/locale_facets_nonio.tcc \
/usr/include/c++/13/bits/locale_conv.h \
/usr/include/c++/13/bits/quoted_string.h /usr/include/c++/13/sstream \
/usr/include/c++/13/bits/sstream.tcc /usr/include/net/if.h \
/usr/include/x86_64-linux-gnu/sys/socket.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
/usr/include/x86_64-linux-gnu/bits/socket.h \
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
/usr/include/x86_64-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \
/usr/include/linux/stddef.h \
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h \
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
/usr/include/asm-generic/bitsperlong.h \
/usr/include/x86_64-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
/usr/include/x86_64-linux-gnu/bits/socket2.h /usr/include/netinet/in.h \
/usr/include/x86_64-linux-gnu/bits/in.h \
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
/usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \
/usr/include/x86_64-linux-gnu/asm/ioctl.h \
/usr/include/asm-generic/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctl-types.h \
/usr/include/x86_64-linux-gnu/sys/ttydefaults.h \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/bits/struct_stat.h \
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
/usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-path.h \
/usr/include/x86_64-linux-gnu/bits/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-decl.h /usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/x86_64-linux-gnu/bits/unistd-decl.h \
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
/usr/include/linux/close_range.h
@@ -1,310 +0,0 @@
CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o: \
/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.cpp \
/usr/include/stdc-predef.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.h \
/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.h \
/usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \
/usr/include/features.h /usr/include/features-time64.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/bits/timesize.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/long-double.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \
/usr/include/c++/13/pstl/pstl_config.h \
/usr/include/c++/13/bits/stringfwd.h \
/usr/include/c++/13/bits/memoryfwd.h \
/usr/include/c++/13/bits/char_traits.h \
/usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \
/usr/include/wchar.h \
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
/usr/include/x86_64-linux-gnu/bits/floatn.h \
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
/usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \
/usr/include/x86_64-linux-gnu/bits/wchar2.h \
/usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \
/usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \
/usr/include/c++/13/bits/exception.h \
/usr/include/c++/13/bits/functexcept.h \
/usr/include/c++/13/bits/exception_defines.h \
/usr/include/c++/13/bits/move.h \
/usr/include/c++/13/bits/cpp_type_traits.h \
/usr/include/c++/13/bits/localefwd.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \
/usr/include/c++/13/clocale /usr/include/locale.h \
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \
/usr/include/c++/13/cctype /usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/x86_64-linux-gnu/bits/time64.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/include/x86_64-linux-gnu/bits/endianness.h \
/usr/include/c++/13/bits/ostream_insert.h \
/usr/include/c++/13/bits/cxxabi_forced.h \
/usr/include/c++/13/bits/stl_iterator_base_funcs.h \
/usr/include/c++/13/bits/concept_check.h \
/usr/include/c++/13/debug/assertions.h \
/usr/include/c++/13/bits/stl_iterator_base_types.h \
/usr/include/c++/13/bits/stl_iterator.h \
/usr/include/c++/13/ext/type_traits.h \
/usr/include/c++/13/bits/ptr_traits.h \
/usr/include/c++/13/bits/stl_function.h \
/usr/include/c++/13/backward/binders.h \
/usr/include/c++/13/ext/numeric_traits.h \
/usr/include/c++/13/bits/stl_algobase.h \
/usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \
/usr/include/c++/13/debug/debug.h \
/usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \
/usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \
/usr/include/c++/13/bits/range_access.h \
/usr/include/c++/13/initializer_list \
/usr/include/c++/13/bits/basic_string.h \
/usr/include/c++/13/ext/alloc_traits.h \
/usr/include/c++/13/bits/alloc_traits.h \
/usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \
/usr/include/c++/13/bits/functional_hash.h \
/usr/include/c++/13/bits/hash_bytes.h \
/usr/include/c++/13/bits/string_view.tcc \
/usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
/usr/include/x86_64-linux-gnu/bits/select2.h \
/usr/include/x86_64-linux-gnu/bits/select-decl.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \
/usr/include/x86_64-linux-gnu/bits/stdio.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
/usr/include/c++/13/bits/charconv.h \
/usr/include/c++/13/bits/basic_string.tcc \
/usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \
/usr/include/c++/13/bits/uses_allocator.h \
/usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \
/usr/include/c++/13/map /usr/include/c++/13/bits/stl_tree.h \
/usr/include/c++/13/ext/aligned_buffer.h \
/usr/include/c++/13/bits/node_handle.h \
/usr/include/c++/13/bits/stl_map.h \
/usr/include/c++/13/bits/stl_multimap.h \
/usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/cstdint \
/usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
/usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \
/usr/include/c++/13/typeinfo /usr/include/c++/13/unordered_map \
/usr/include/c++/13/bits/unordered_map.h \
/usr/include/c++/13/bits/hashtable.h \
/usr/include/c++/13/bits/hashtable_policy.h \
/usr/include/c++/13/bits/enable_special_members.h \
/usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \
/usr/include/c++/13/bits/stl_vector.h \
/usr/include/c++/13/bits/stl_bvector.h \
/usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/array \
/usr/include/c++/13/compare /usr/include/c++/13/bits/stl_algo.h \
/usr/include/c++/13/bits/algorithmfwd.h \
/usr/include/c++/13/bits/stl_heap.h \
/usr/include/c++/13/bits/uniform_int_dist.h \
/usr/include/c++/13/bits/stl_tempbuf.h /usr/include/openssl/ssl.h \
/usr/include/openssl/macros.h \
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
/usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \
/usr/include/openssl/comp.h /usr/include/openssl/crypto.h \
/usr/include/c++/13/stdlib.h /usr/include/time.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/bits/timex.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
/usr/include/openssl/types.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
/usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
/usr/include/x86_64-linux-gnu/bits/uio_lim.h \
/usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \
/usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \
/usr/include/pthread.h /usr/include/sched.h \
/usr/include/x86_64-linux-gnu/bits/sched.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
/usr/include/openssl/comperr.h /usr/include/openssl/bio.h \
/usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \
/usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \
/usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \
/usr/include/openssl/evperr.h /usr/include/openssl/params.h \
/usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
/usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \
/usr/include/string.h /usr/include/strings.h \
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
/usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \
/usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \
/usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \
/usr/include/openssl/ct.h /usr/include/openssl/cterr.h \
/usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \
/usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \
/usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \
/usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \
/usr/include/openssl/err.h /usr/include/dbus-1.0/dbus/dbus.h \
/usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h \
/usr/include/dbus-1.0/dbus/dbus-macros.h \
/usr/include/dbus-1.0/dbus/dbus-address.h \
/usr/include/dbus-1.0/dbus/dbus-types.h \
/usr/include/dbus-1.0/dbus/dbus-errors.h \
/usr/include/dbus-1.0/dbus/dbus-protocol.h \
/usr/include/dbus-1.0/dbus/dbus-bus.h \
/usr/include/dbus-1.0/dbus/dbus-connection.h \
/usr/include/dbus-1.0/dbus/dbus-memory.h \
/usr/include/dbus-1.0/dbus/dbus-message.h \
/usr/include/dbus-1.0/dbus/dbus-shared.h \
/usr/include/dbus-1.0/dbus/dbus-misc.h \
/usr/include/dbus-1.0/dbus/dbus-pending-call.h \
/usr/include/dbus-1.0/dbus/dbus-server.h \
/usr/include/dbus-1.0/dbus/dbus-signature.h \
/usr/include/dbus-1.0/dbus/dbus-syntax.h \
/usr/include/dbus-1.0/dbus/dbus-threads.h \
/usr/include/x86_64-linux-gnu/curl/curl.h \
/usr/include/x86_64-linux-gnu/curl/curlver.h \
/usr/include/x86_64-linux-gnu/curl/system.h \
/usr/include/x86_64-linux-gnu/sys/socket.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
/usr/include/x86_64-linux-gnu/bits/socket.h \
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
/usr/include/x86_64-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \
/usr/include/linux/stddef.h \
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
/usr/include/asm-generic/posix_types.h \
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
/usr/include/asm-generic/bitsperlong.h \
/usr/include/x86_64-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
/usr/include/x86_64-linux-gnu/bits/socket2.h \
/usr/include/x86_64-linux-gnu/sys/time.h \
/usr/include/x86_64-linux-gnu/curl/easy.h \
/usr/include/x86_64-linux-gnu/curl/multi.h \
/usr/include/x86_64-linux-gnu/curl/curl.h \
/usr/include/x86_64-linux-gnu/curl/urlapi.h \
/usr/include/x86_64-linux-gnu/curl/options.h \
/usr/include/x86_64-linux-gnu/curl/header.h \
/usr/include/x86_64-linux-gnu/curl/websockets.h \
/usr/include/x86_64-linux-gnu/curl/mprintf.h /usr/include/c++/13/ctime \
/usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \
/usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/bits/struct_stat.h \
/usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/c++/13/fstream \
/usr/include/c++/13/istream /usr/include/c++/13/ios \
/usr/include/c++/13/exception /usr/include/c++/13/bits/exception_ptr.h \
/usr/include/c++/13/bits/cxxabi_init_exception.h \
/usr/include/c++/13/bits/nested_exception.h \
/usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \
/usr/include/x86_64-linux-gnu/sys/single_threaded.h \
/usr/include/c++/13/bits/locale_classes.h \
/usr/include/c++/13/bits/locale_classes.tcc \
/usr/include/c++/13/system_error \
/usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \
/usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \
/usr/include/c++/13/bits/streambuf.tcc \
/usr/include/c++/13/bits/basic_ios.h \
/usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \
/usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \
/usr/include/c++/13/bits/streambuf_iterator.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \
/usr/include/c++/13/bits/locale_facets.tcc \
/usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \
/usr/include/c++/13/bits/ostream.tcc \
/usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/bits/codecvt.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \
/usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \
/usr/include/c++/13/bits/fstream.tcc /usr/include/c++/13/sstream \
/usr/include/c++/13/bits/sstream.tcc \
/usr/include/x86_64-linux-gnu/sys/file.h \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
/usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-path.h \
/usr/include/x86_64-linux-gnu/bits/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-decl.h /usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/x86_64-linux-gnu/bits/unistd-decl.h \
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
/usr/include/linux/close_range.h
-449
View File
@@ -1,449 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.28
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Produce verbose output by default.
VERBOSE = 1
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/oxmc/VesperOS/packages/vesperprofiled
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..."
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# The main all target
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu//CMakeFiles/progress.marks
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall/fast
# clear depends
depend:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
#=============================================================================
# Target rules for targets named vesperprofiled
# Build rule for target.
vesperprofiled: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 vesperprofiled
.PHONY : vesperprofiled
# fast build rule for target.
vesperprofiled/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/build
.PHONY : vesperprofiled/fast
src/ProfileParser.o: src/ProfileParser.cpp.o
.PHONY : src/ProfileParser.o
# target to build an object file
src/ProfileParser.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o
.PHONY : src/ProfileParser.cpp.o
src/ProfileParser.i: src/ProfileParser.cpp.i
.PHONY : src/ProfileParser.i
# target to preprocess a source file
src/ProfileParser.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.i
.PHONY : src/ProfileParser.cpp.i
src/ProfileParser.s: src/ProfileParser.cpp.s
.PHONY : src/ProfileParser.s
# target to generate assembly for a file
src/ProfileParser.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.s
.PHONY : src/ProfileParser.cpp.s
src/ProfileStore.o: src/ProfileStore.cpp.o
.PHONY : src/ProfileStore.o
# target to build an object file
src/ProfileStore.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o
.PHONY : src/ProfileStore.cpp.o
src/ProfileStore.i: src/ProfileStore.cpp.i
.PHONY : src/ProfileStore.i
# target to preprocess a source file
src/ProfileStore.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.i
.PHONY : src/ProfileStore.cpp.i
src/ProfileStore.s: src/ProfileStore.cpp.s
.PHONY : src/ProfileStore.s
# target to generate assembly for a file
src/ProfileStore.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.s
.PHONY : src/ProfileStore.cpp.s
src/SignatureVerifier.o: src/SignatureVerifier.cpp.o
.PHONY : src/SignatureVerifier.o
# target to build an object file
src/SignatureVerifier.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o
.PHONY : src/SignatureVerifier.cpp.o
src/SignatureVerifier.i: src/SignatureVerifier.cpp.i
.PHONY : src/SignatureVerifier.i
# target to preprocess a source file
src/SignatureVerifier.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.i
.PHONY : src/SignatureVerifier.cpp.i
src/SignatureVerifier.s: src/SignatureVerifier.cpp.s
.PHONY : src/SignatureVerifier.s
# target to generate assembly for a file
src/SignatureVerifier.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.s
.PHONY : src/SignatureVerifier.cpp.s
src/VesperProfileService.o: src/VesperProfileService.cpp.o
.PHONY : src/VesperProfileService.o
# target to build an object file
src/VesperProfileService.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o
.PHONY : src/VesperProfileService.cpp.o
src/VesperProfileService.i: src/VesperProfileService.cpp.i
.PHONY : src/VesperProfileService.i
# target to preprocess a source file
src/VesperProfileService.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.i
.PHONY : src/VesperProfileService.cpp.i
src/VesperProfileService.s: src/VesperProfileService.cpp.s
.PHONY : src/VesperProfileService.s
# target to generate assembly for a file
src/VesperProfileService.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.s
.PHONY : src/VesperProfileService.cpp.s
src/main.o: src/main.cpp.o
.PHONY : src/main.o
# target to build an object file
src/main.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/main.cpp.o
.PHONY : src/main.cpp.o
src/main.i: src/main.cpp.i
.PHONY : src/main.i
# target to preprocess a source file
src/main.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/main.cpp.i
.PHONY : src/main.cpp.i
src/main.s: src/main.cpp.s
.PHONY : src/main.s
# target to generate assembly for a file
src/main.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/main.cpp.s
.PHONY : src/main.cpp.s
src/payloads/PayloadHandlers.o: src/payloads/PayloadHandlers.cpp.o
.PHONY : src/payloads/PayloadHandlers.o
# target to build an object file
src/payloads/PayloadHandlers.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o
.PHONY : src/payloads/PayloadHandlers.cpp.o
src/payloads/PayloadHandlers.i: src/payloads/PayloadHandlers.cpp.i
.PHONY : src/payloads/PayloadHandlers.i
# target to preprocess a source file
src/payloads/PayloadHandlers.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.i
.PHONY : src/payloads/PayloadHandlers.cpp.i
src/payloads/PayloadHandlers.s: src/payloads/PayloadHandlers.cpp.s
.PHONY : src/payloads/PayloadHandlers.s
# target to generate assembly for a file
src/payloads/PayloadHandlers.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.s
.PHONY : src/payloads/PayloadHandlers.cpp.s
src/zte/ConnectivityWatcher.o: src/zte/ConnectivityWatcher.cpp.o
.PHONY : src/zte/ConnectivityWatcher.o
# target to build an object file
src/zte/ConnectivityWatcher.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o
.PHONY : src/zte/ConnectivityWatcher.cpp.o
src/zte/ConnectivityWatcher.i: src/zte/ConnectivityWatcher.cpp.i
.PHONY : src/zte/ConnectivityWatcher.i
# target to preprocess a source file
src/zte/ConnectivityWatcher.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.i
.PHONY : src/zte/ConnectivityWatcher.cpp.i
src/zte/ConnectivityWatcher.s: src/zte/ConnectivityWatcher.cpp.s
.PHONY : src/zte/ConnectivityWatcher.s
# target to generate assembly for a file
src/zte/ConnectivityWatcher.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.s
.PHONY : src/zte/ConnectivityWatcher.cpp.s
src/zte/DeviceIdentity.o: src/zte/DeviceIdentity.cpp.o
.PHONY : src/zte/DeviceIdentity.o
# target to build an object file
src/zte/DeviceIdentity.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o
.PHONY : src/zte/DeviceIdentity.cpp.o
src/zte/DeviceIdentity.i: src/zte/DeviceIdentity.cpp.i
.PHONY : src/zte/DeviceIdentity.i
# target to preprocess a source file
src/zte/DeviceIdentity.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.i
.PHONY : src/zte/DeviceIdentity.cpp.i
src/zte/DeviceIdentity.s: src/zte/DeviceIdentity.cpp.s
.PHONY : src/zte/DeviceIdentity.s
# target to generate assembly for a file
src/zte/DeviceIdentity.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.s
.PHONY : src/zte/DeviceIdentity.cpp.s
src/zte/ZTELookupClient.o: src/zte/ZTELookupClient.cpp.o
.PHONY : src/zte/ZTELookupClient.o
# target to build an object file
src/zte/ZTELookupClient.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o
.PHONY : src/zte/ZTELookupClient.cpp.o
src/zte/ZTELookupClient.i: src/zte/ZTELookupClient.cpp.i
.PHONY : src/zte/ZTELookupClient.i
# target to preprocess a source file
src/zte/ZTELookupClient.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.i
.PHONY : src/zte/ZTELookupClient.cpp.i
src/zte/ZTELookupClient.s: src/zte/ZTELookupClient.cpp.s
.PHONY : src/zte/ZTELookupClient.s
# target to generate assembly for a file
src/zte/ZTELookupClient.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.s
.PHONY : src/zte/ZTELookupClient.cpp.s
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... edit_cache"
@echo "... install"
@echo "... install/local"
@echo "... install/strip"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... vesperprofiled"
@echo "... src/ProfileParser.o"
@echo "... src/ProfileParser.i"
@echo "... src/ProfileParser.s"
@echo "... src/ProfileStore.o"
@echo "... src/ProfileStore.i"
@echo "... src/ProfileStore.s"
@echo "... src/SignatureVerifier.o"
@echo "... src/SignatureVerifier.i"
@echo "... src/SignatureVerifier.s"
@echo "... src/VesperProfileService.o"
@echo "... src/VesperProfileService.i"
@echo "... src/VesperProfileService.s"
@echo "... src/main.o"
@echo "... src/main.i"
@echo "... src/main.s"
@echo "... src/payloads/PayloadHandlers.o"
@echo "... src/payloads/PayloadHandlers.i"
@echo "... src/payloads/PayloadHandlers.s"
@echo "... src/zte/ConnectivityWatcher.o"
@echo "... src/zte/ConnectivityWatcher.i"
@echo "... src/zte/ConnectivityWatcher.s"
@echo "... src/zte/DeviceIdentity.o"
@echo "... src/zte/DeviceIdentity.i"
@echo "... src/zte/DeviceIdentity.s"
@echo "... src/zte/ZTELookupClient.o"
@echo "... src/zte/ZTELookupClient.i"
@echo "... src/zte/ZTELookupClient.s"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system
-118
View File
@@ -1,118 +0,0 @@
# Install script for directory: /home/oxmc/VesperOS/packages/vesperprofiled
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/usr/bin/objdump")
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/sbin/vesperprofiled" AND
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/sbin/vesperprofiled")
file(RPATH_CHECK
FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/sbin/vesperprofiled"
RPATH "")
endif()
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/sbin" TYPE EXECUTABLE FILES "/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/vesperprofiled")
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/sbin/vesperprofiled" AND
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/sbin/vesperprofiled")
if(CMAKE_INSTALL_DO_STRIP)
execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/sbin/vesperprofiled")
endif()
endif()
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES
"/usr/lib/systemd/system/vesperprofiled.service")
if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION)
message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
endif()
if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION)
message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
endif()
file(INSTALL DESTINATION "/usr/lib/systemd/system" TYPE FILE FILES "/home/oxmc/VesperOS/packages/vesperprofiled/systemd/vesperprofiled.service")
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES
"/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf")
if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION)
message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
endif()
if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION)
message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
endif()
file(INSTALL DESTINATION "/etc/dbus-1/system.d" TYPE FILE FILES "/home/oxmc/VesperOS/packages/vesperprofiled/dbus/me.oxmc.vesperos.ProfileService.conf")
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES
"/etc/apparmor.d/vesperprofiled")
if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION)
message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
endif()
if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION)
message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
endif()
file(INSTALL DESTINATION "/etc/apparmor.d" TYPE FILE FILES "/home/oxmc/VesperOS/packages/vesperprofiled/apparmor/vesperprofiled")
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES
"/etc/vesperprofiled/zte.conf.example")
if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION)
message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
endif()
if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION)
message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
endif()
file(INSTALL DESTINATION "/etc/vesperprofiled" TYPE FILE RENAME "zte.conf.example" FILES "/home/oxmc/VesperOS/packages/vesperprofiled/zte.conf.example")
endif()
if(CMAKE_INSTALL_COMPONENT)
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
@@ -1,5 +0,0 @@
/usr/sbin/vesperprofiled
/usr/lib/systemd/system/vesperprofiled.service
/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf
/etc/apparmor.d/vesperprofiled
/etc/vesperprofiled/zte.conf.example
Binary file not shown.
+9 -9
View File
@@ -1,28 +1,28 @@
# vendor/oxmc/vesperprofiled/vesperprofiled.rc
# vendor/oxmc/pawletprofiled/pawletprofiled.rc
# ─────────────────────────────────────────────────────────────────────────
# Android init language script — starts vesperprofiled at boot.
# Android init language script — starts pawletprofiled at boot.
# Placed in /system/etc/init/ by the build system via init_rc in Android.bp.
# ─────────────────────────────────────────────────────────────────────────
service vesperprofiled /system/bin/vesperprofiled
service pawletprofiled /system/bin/pawletprofiled
class main
user system
group system
# Capabilities needed to write to /data/system/vesperos/ and to
# Capabilities needed to write to /data/system/pawletos/ and to
# call privileged Binder services (DevicePolicyManager, KeyChain, etc.)
capabilities SETUID SETGID
# Restart automatically if the daemon crashes.
restart_period 5
# SELinux domain (matches the type defined in vesperprofiled.te)
seclabel u:r:vesperprofiled:s0
# SELinux domain (matches the type defined in pawletprofiled.te)
seclabel u:r:pawletprofiled:s0
# Only start once the filesystem is decrypted and /data is available.
on_property:vold.decrypt=trigger_restart_framework
# Create the data directory on first boot.
on post-fs-data
mkdir /data/system/vesperos 0700 system system
mkdir /data/system/vesperos/profiles 0700 system system
mkdir /data/system/vesperos/preinstalled 0700 system system
mkdir /data/system/pawletos 0700 system system
mkdir /data/system/pawletos/profiles 0700 system system
mkdir /data/system/pawletos/preinstalled 0700 system system
# content-cache payload's policy override — world-readable by design,
# PawletCacheService (a regular app UID) reads it directly. See
# PayloadHandlers.cpp's ContentCacheHandler and PolicyOverride.kt.
+4 -4
View File
@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
vendor/oxmc/vesperprofiled/vesperprofiled.xml
vendor/oxmc/pawletprofiled/pawletprofiled.xml
VINTF compatibility matrix fragment.
Declares that this device provides the IVesperProfileService AIDL HAL.
Declares that this device provides the IPawletProfileService AIDL HAL.
Installed to /system/etc/vintf/manifest/ by the build system.
-->
<manifest version="1.0" type="device">
<hal format="aidl">
<name>me.oxmc.vesperos.profile</name>
<name>os.pawlet.profiled</name>
<version>1</version>
<fqname>IVesperProfileService/default</fqname>
<fqname>IPawletProfileService/default</fqname>
</hal>
</manifest>
+3 -3
View File
@@ -1,11 +1,11 @@
# vendor/oxmc/vesperprofiled/sepolicy/file_contexts
# vendor/oxmc/pawletprofiled/sepolicy/file_contexts
# ─────────────────────────────────────────────────────────────────────────
# Maps filesystem paths to SELinux security contexts.
# Included automatically when BOARD_SEPOLICY_DIRS points here.
# ─────────────────────────────────────────────────────────────────────────
# Daemon binary
/system/bin/vesperprofiled u:object_r:vesperprofiled_exec:s0
/system/bin/pawletprofiled u:object_r:pawletprofiled_exec:s0
# Profile data directory and all contents
/data/system/vesperos(/.*)? u:object_r:vesperprofiled_data_file:s0
/data/system/pawletos(/.*)? u:object_r:pawletprofiled_data_file:s0
@@ -1,69 +1,69 @@
# vendor/oxmc/vesperprofiled/sepolicy/vesperprofiled.te
# SELinux policy for the vesperprofiled system daemon (Android/AOSP).
# vendor/oxmc/pawletprofiled/sepolicy/pawletprofiled.te
# SELinux policy for the pawletprofiled system daemon (Android/AOSP).
#
# To activate, add to your device's BoardConfig.mk:
# BOARD_SEPOLICY_DIRS += vendor/oxmc/vesperprofiled/sepolicy
# BOARD_SEPOLICY_DIRS += vendor/oxmc/pawletprofiled/sepolicy
# ── Type declarations ──────────────────────────────────────────────────────
type vesperprofiled, domain;
type vesperprofiled_exec, exec_type, file_type, system_file_type;
type vesperprofiled_data_file, file_type, data_file_type;
type vesperprofiled_service, service_manager_type;
type pawletprofiled, domain;
type pawletprofiled_exec, exec_type, file_type, system_file_type;
type pawletprofiled_data_file, file_type, data_file_type;
type pawletprofiled_service, service_manager_type;
# ── Domain transition ──────────────────────────────────────────────────────
init_daemon_domain(vesperprofiled)
init_daemon_domain(pawletprofiled)
# ── Binder IPC ────────────────────────────────────────────────────────────
binder_use(vesperprofiled)
add_service(vesperprofiled, vesperprofiled_service)
binder_use(pawletprofiled)
add_service(pawletprofiled, pawletprofiled_service)
# Allow system apps and shell to call into vesperprofiled via Binder
binder_call(system_app, vesperprofiled)
binder_call(shell, vesperprofiled)
# Allow system apps and shell to call into pawletprofiled via Binder
binder_call(system_app, pawletprofiled)
binder_call(shell, pawletprofiled)
# ── Profile data directory ────────────────────────────────────────────────
allow vesperprofiled vesperprofiled_data_file:dir { create search getattr setattr add_name remove_name };
allow vesperprofiled vesperprofiled_data_file:file { create open read write getattr setattr unlink rename };
allow pawletprofiled pawletprofiled_data_file:dir { create search getattr setattr add_name remove_name };
allow pawletprofiled pawletprofiled_data_file:file { create open read write getattr setattr unlink rename };
# ── System file access (CA certs for signature chain validation) ──────────
allow vesperprofiled system_file:dir { search getattr };
allow vesperprofiled system_file:file { open read getattr };
allow pawletprofiled system_file:dir { search getattr };
allow pawletprofiled system_file:file { open read getattr };
# ── Network (ZTE HTTPS lookups) ───────────────────────────────────────────
allow vesperprofiled self:tcp_socket { create connect read write shutdown };
allow vesperprofiled self:udp_socket { create connect read write };
allow vesperprofiled port:tcp_socket name_connect;
allow pawletprofiled self:tcp_socket { create connect read write shutdown };
allow pawletprofiled self:udp_socket { create connect read write };
allow pawletprofiled port:tcp_socket name_connect;
# ── Logging ───────────────────────────────────────────────────────────────
allow vesperprofiled log_device:chr_file { open read write };
allow pawletprofiled log_device:chr_file { open read write };
# ── System properties (ZTE state and MDM enrollment state) ───────────────
set_prop(vesperprofiled, vesperos_prop)
get_prop(vesperprofiled, vesperos_prop)
set_prop(pawletprofiled, pawletos_prop)
get_prop(pawletprofiled, pawletos_prop)
# ── DevicePolicyManager / KeyStore Binder calls ───────────────────────────
allow vesperprofiled device_policy_service:service_manager { find };
allow vesperprofiled keystore_service:service_manager { find };
binder_call(vesperprofiled, system_server)
binder_call(vesperprofiled, keystore)
allow pawletprofiled device_policy_service:service_manager { find };
allow pawletprofiled keystore_service:service_manager { find };
binder_call(pawletprofiled, system_server)
binder_call(pawletprofiled, keystore)
# ── Process self-permissions ──────────────────────────────────────────────
allow vesperprofiled self:process { fork sigchld };
allow vesperprofiled self:unix_stream_socket { create connect read write };
allow pawletprofiled self:process { fork sigchld };
allow pawletprofiled self:unix_stream_socket { create connect read write };
# ── content-cache payload's policy override file (PawletOS-fork-specific) ──
# Type declared in android_packages_apps_PawletCache/sepolicy/pawlet_cache.te
# (both dirs land in BOARD_SEPOLICY_DIRS) — see ContentCacheHandler and
# PolicyOverride.kt for the read/write contract on this file.
allow vesperprofiled pawletcache_policy_file:dir { create search getattr add_name };
allow vesperprofiled pawletcache_policy_file:file create_file_perms;
allow pawletprofiled pawletcache_policy_file:dir { create search getattr add_name };
allow pawletprofiled pawletcache_policy_file:file create_file_perms;
+3 -3
View File
@@ -1,4 +1,4 @@
# vendor/oxmc/vesperprofiled/sepolicy/property_contexts
# Declares the persist.vesperos.* property namespace.
# vendor/oxmc/pawletprofiled/sepolicy/property_contexts
# Declares the persist.pawletos.* property namespace.
persist.vesperos. u:object_r:vesperos_prop:s0
persist.pawletos. u:object_r:pawletos_prop:s0
+2 -2
View File
@@ -1,6 +1,6 @@
# vendor/oxmc/vesperprofiled/sepolicy/service_contexts
# vendor/oxmc/pawletprofiled/sepolicy/service_contexts
# Maps the Binder service name to its SELinux type.
# This is what allows AServiceManager_addService / getService to work
# under SELinux enforcement.
me.oxmc.vesperos.profile.IVesperProfileService/default u:object_r:vesperprofiled_service:s0
os.pawlet.profiled.IPawletProfileService/default u:object_r:pawletprofiled_service:s0
@@ -1,16 +1,16 @@
#include "VesperProfileBinderService.h"
#include "PawletProfileBinderService.h"
#include "payloads/PayloadHandler.h"
#include <cstring>
#include <sstream>
#include <syslog.h>
namespace vesperos::profile {
namespace pawletos::profile {
using ::ndk::ScopedAStatus;
// Service-specific error codes returned via ScopedAStatus — mirrors
// VesperProfileService's D-Bus error domain (kErrNotFound etc.) one-for-one
// PawletProfileService's D-Bus error domain (kErrNotFound etc.) one-for-one
// so a future shared client-side error mapping stays simple.
namespace {
constexpr int kErrNotFound = 1;
@@ -21,8 +21,8 @@ constexpr int kErrWrongPassword = 5;
constexpr int kErrSigningRequired = 6;
} // namespace
ScopedAStatus VesperProfileBinderService::serviceError(const char* name, const std::string& message) {
syslog(LOG_WARNING, "vesperprofiled: %s: %s", name, message.c_str());
ScopedAStatus PawletProfileBinderService::serviceError(const char* name, const std::string& message) {
syslog(LOG_WARNING, "pawletprofiled: %s: %s", name, message.c_str());
int code = 0;
if (strcmp(name, "NotFound") == 0) code = kErrNotFound;
else if (strcmp(name, "Signature") == 0) code = kErrSignature;
@@ -33,14 +33,14 @@ ScopedAStatus VesperProfileBinderService::serviceError(const char* name, const s
return ScopedAStatus::fromServiceSpecificErrorWithMessage(code, message.c_str());
}
VesperProfileBinderService::VesperProfileBinderService() {
syslog(LOG_INFO, "vesperprofiled: Binder service starting");
PawletProfileBinderService::PawletProfileBinderService() {
syslog(LOG_INFO, "pawletprofiled: Binder service starting");
mStore.load();
}
// ── installProfileDirect (preinstalled profiles, same as D-Bus version) ────
bool VesperProfileBinderService::installProfileDirect(
bool PawletProfileBinderService::installProfileDirect(
const std::vector<uint8_t>& profileData, std::string& outUuid) {
std::lock_guard<std::mutex> lock(mLock);
@@ -103,7 +103,7 @@ bool VesperProfileBinderService::installProfileDirect(
// ── installProfile ──────────────────────────────────────────────────────
ScopedAStatus VesperProfileBinderService::installProfile(
ScopedAStatus PawletProfileBinderService::installProfile(
const std::vector<uint8_t>& in_profileData, std::string* _aidl_return) {
std::lock_guard<std::mutex> lock(mLock);
@@ -147,7 +147,7 @@ ScopedAStatus VesperProfileBinderService::installProfile(
}
applyProfile(profile);
syslog(LOG_INFO, "vesperprofiled: installed profile uuid=%s", profile.uuid.c_str());
syslog(LOG_INFO, "pawletprofiled: installed profile uuid=%s", profile.uuid.c_str());
*_aidl_return = profile.uuid;
return ScopedAStatus::ok();
@@ -155,7 +155,7 @@ ScopedAStatus VesperProfileBinderService::installProfile(
// ── removeProfile ────────────────────────────────────────────────────────
ScopedAStatus VesperProfileBinderService::removeProfile(
ScopedAStatus PawletProfileBinderService::removeProfile(
const std::string& in_uuid, const std::string& in_removalPassword) {
std::lock_guard<std::mutex> lock(mLock);
@@ -175,13 +175,13 @@ ScopedAStatus VesperProfileBinderService::removeProfile(
revertProfile(profile);
mStore.remove(in_uuid);
syslog(LOG_INFO, "vesperprofiled: removed profile uuid=%s", in_uuid.c_str());
syslog(LOG_INFO, "pawletprofiled: removed profile uuid=%s", in_uuid.c_str());
return ScopedAStatus::ok();
}
// ── listProfiles ─────────────────────────────────────────────────────────
ScopedAStatus VesperProfileBinderService::listProfiles(std::vector<std::string>* _aidl_return) {
ScopedAStatus PawletProfileBinderService::listProfiles(std::vector<std::string>* _aidl_return) {
std::lock_guard<std::mutex> lock(mLock);
*_aidl_return = mStore.listUuids();
return ScopedAStatus::ok();
@@ -189,7 +189,7 @@ ScopedAStatus VesperProfileBinderService::listProfiles(std::vector<std::string>*
// ── getProfileInfo ───────────────────────────────────────────────────────
ScopedAStatus VesperProfileBinderService::getProfileInfo(
ScopedAStatus PawletProfileBinderService::getProfileInfo(
const std::string& in_uuid, std::string* _aidl_return) {
std::lock_guard<std::mutex> lock(mLock);
@@ -216,7 +216,7 @@ ScopedAStatus VesperProfileBinderService::getProfileInfo(
// ── isDeviceManaged ──────────────────────────────────────────────────────
ScopedAStatus VesperProfileBinderService::isDeviceManaged(bool* _aidl_return) {
ScopedAStatus PawletProfileBinderService::isDeviceManaged(bool* _aidl_return) {
std::lock_guard<std::mutex> lock(mLock);
bool managed = false;
for (const auto& uuid : mStore.listUuids()) {
@@ -232,7 +232,7 @@ ScopedAStatus VesperProfileBinderService::isDeviceManaged(bool* _aidl_return) {
// ── getMdmServerUrl ──────────────────────────────────────────────────────
ScopedAStatus VesperProfileBinderService::getMdmServerUrl(std::string* _aidl_return) {
ScopedAStatus PawletProfileBinderService::getMdmServerUrl(std::string* _aidl_return) {
std::lock_guard<std::mutex> lock(mLock);
std::string url;
for (const auto& uuid : mStore.listUuids()) {
@@ -254,7 +254,7 @@ ScopedAStatus VesperProfileBinderService::getMdmServerUrl(std::string* _aidl_ret
// ── isSupervised ─────────────────────────────────────────────────────────
ScopedAStatus VesperProfileBinderService::isSupervised(bool* _aidl_return) {
ScopedAStatus PawletProfileBinderService::isSupervised(bool* _aidl_return) {
std::lock_guard<std::mutex> lock(mLock);
bool supervised = false;
for (const auto& uuid : mStore.listUuids()) {
@@ -270,7 +270,7 @@ ScopedAStatus VesperProfileBinderService::isSupervised(bool* _aidl_return) {
// ── getPayloadsOfType ────────────────────────────────────────────────────
ScopedAStatus VesperProfileBinderService::getPayloadsOfType(
ScopedAStatus PawletProfileBinderService::getPayloadsOfType(
const std::string& in_payloadType, std::string* _aidl_return) {
std::lock_guard<std::mutex> lock(mLock);
@@ -299,24 +299,24 @@ ScopedAStatus VesperProfileBinderService::getPayloadsOfType(
// ── applyProfile / revertProfile ─────────────────────────────────────────
void VesperProfileBinderService::applyProfile(const ParsedProfile& profile) {
void PawletProfileBinderService::applyProfile(const ParsedProfile& profile) {
for (const auto& payload : profile.payloads) {
auto* handler = PayloadHandlerRegistry::get(payload.type);
if (handler) {
if (!handler->apply(payload))
syslog(LOG_WARNING, "vesperprofiled: handler failed type=%s uuid=%s",
syslog(LOG_WARNING, "pawletprofiled: handler failed type=%s uuid=%s",
payload.type.c_str(), payload.uuid.c_str());
} else {
syslog(LOG_WARNING, "vesperprofiled: no handler for type=%s", payload.type.c_str());
syslog(LOG_WARNING, "pawletprofiled: no handler for type=%s", payload.type.c_str());
}
}
}
void VesperProfileBinderService::revertProfile(const ParsedProfile& profile) {
void PawletProfileBinderService::revertProfile(const ParsedProfile& profile) {
for (auto it = profile.payloads.rbegin(); it != profile.payloads.rend(); ++it) {
auto* handler = PayloadHandlerRegistry::get(it->type);
if (handler) handler->revert(*it);
}
}
} // namespace vesperos::profile
} // namespace pawletos::profile
@@ -4,27 +4,27 @@
#include "ProfileStore.h"
#include "SignatureVerifier.h"
#include <aidl/me/oxmc/vesperos/profile/BnVesperProfileService.h>
#include <aidl/os/pawlet/profiled/BnPawletProfileService.h>
#include <mutex>
#include <string>
#include <vector>
namespace vesperos::profile {
namespace pawletos::profile {
// ── Android Binder counterpart to VesperProfileService (D-Bus) ─────────────
// ── Android Binder counterpart to PawletProfileService (D-Bus) ─────────────
// Same install/remove/query logic, same ProfileStore/ProfileParser/
// PayloadHandlerRegistry underneath — only the transport differs. See
// main_android.cpp for how this gets registered with servicemanager.
//
// Registered service name: "me.oxmc.vesperos.profile.IVesperProfileService/default"
// (must match vesperprofiled.xml's VINTF fragment and sepolicy/service_contexts).
class VesperProfileBinderService
: public aidl::me::oxmc::vesperos::profile::BnVesperProfileService {
// Registered service name: "os.pawlet.profiled.IPawletProfileService/default"
// (must match pawletprofiled.xml's VINTF fragment and sepolicy/service_contexts).
class PawletProfileBinderService
: public aidl::me::oxmc::pawletos::profile::BnPawletProfileService {
public:
VesperProfileBinderService();
PawletProfileBinderService();
// Same direct-install path VesperProfileService exposes for main.cpp's
// Same direct-install path PawletProfileService exposes for main.cpp's
// preinstalled-profile loader — see applyPreinstalledProfiles() in
// main_android.cpp.
bool installProfileDirect(const std::vector<uint8_t>& data, std::string& outUuid);
@@ -54,4 +54,4 @@ private:
SignatureVerifier mVerifier;
};
} // namespace vesperos::profile
} // namespace pawletos::profile
@@ -1,4 +1,4 @@
#include "VesperProfileService.h"
#include "PawletProfileService.h"
#include "payloads/PayloadHandler.h"
#include <systemd/sd-daemon.h>
@@ -7,16 +7,16 @@
#include <cstring>
#include <sstream>
namespace vesperos::profile {
namespace pawletos::profile {
// ── Constructor / Destructor ───────────────────────────────────────────────
VesperProfileService::VesperProfileService() {
syslog(LOG_INFO, "vesperprofiled: starting");
PawletProfileService::PawletProfileService() {
syslog(LOG_INFO, "pawletprofiled: starting");
mStore.load();
}
VesperProfileService::~VesperProfileService() {
PawletProfileService::~PawletProfileService() {
if (mConn) {
dbus_connection_unref(mConn);
mConn = nullptr;
@@ -25,14 +25,14 @@ VesperProfileService::~VesperProfileService() {
// ── run ───────────────────────────────────────────────────────────────────
void VesperProfileService::run() {
void PawletProfileService::run() {
DBusError err;
dbus_error_init(&err);
// Connect to the system bus
mConn = dbus_bus_get(DBUS_BUS_SYSTEM, &err);
if (dbus_error_is_set(&err)) {
syslog(LOG_ERR, "vesperprofiled: D-Bus connection error: %s", err.message);
syslog(LOG_ERR, "pawletprofiled: D-Bus connection error: %s", err.message);
dbus_error_free(&err);
return;
}
@@ -41,26 +41,26 @@ void VesperProfileService::run() {
int ret = dbus_bus_request_name(mConn, kServiceName,
DBUS_NAME_FLAG_REPLACE_EXISTING, &err);
if (dbus_error_is_set(&err)) {
syslog(LOG_ERR, "vesperprofiled: request name error: %s", err.message);
syslog(LOG_ERR, "pawletprofiled: request name error: %s", err.message);
dbus_error_free(&err);
return;
}
if (ret != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER) {
syslog(LOG_ERR, "vesperprofiled: not primary owner of %s", kServiceName);
syslog(LOG_ERR, "pawletprofiled: not primary owner of %s", kServiceName);
return;
}
// Register our object path handler
static const DBusObjectPathVTable vtable = {
nullptr,
&VesperProfileService::messageHandler,
&PawletProfileService::messageHandler,
nullptr, nullptr, nullptr, nullptr
};
dbus_connection_register_object_path(mConn, kObjectPath, &vtable, this);
// Notify systemd we're ready
sd_notify(0, "READY=1\nSTATUS=Serving profiles");
syslog(LOG_INFO, "vesperprofiled: registered as %s", kServiceName);
syslog(LOG_INFO, "pawletprofiled: registered as %s", kServiceName);
mRunning = true;
while (mRunning) {
@@ -68,19 +68,19 @@ void VesperProfileService::run() {
}
}
void VesperProfileService::stop() {
void PawletProfileService::stop() {
mRunning = false;
sd_notify(0, "STOPPING=1");
}
// ── D-Bus message dispatcher ──────────────────────────────────────────────
DBusHandlerResult VesperProfileService::messageHandler(
DBusHandlerResult PawletProfileService::messageHandler(
DBusConnection* conn, DBusMessage* msg, void* userData) {
return static_cast<VesperProfileService*>(userData)->dispatch(conn, msg);
return static_cast<PawletProfileService*>(userData)->dispatch(conn, msg);
}
DBusHandlerResult VesperProfileService::dispatch(
DBusHandlerResult PawletProfileService::dispatch(
DBusConnection* conn, DBusMessage* msg) {
if (dbus_message_get_type(msg) != DBUS_MESSAGE_TYPE_METHOD_CALL)
@@ -108,9 +108,9 @@ DBusHandlerResult VesperProfileService::dispatch(
// ── Error helper ──────────────────────────────────────────────────────────
void VesperProfileService::sendError(DBusConnection* conn, DBusMessage* msg,
void PawletProfileService::sendError(DBusConnection* conn, DBusMessage* msg,
const char* name, const char* message) {
syslog(LOG_WARNING, "vesperprofiled: error %s: %s", name, message);
syslog(LOG_WARNING, "pawletprofiled: error %s: %s", name, message);
DBusMessage* reply = dbus_message_new_error(msg, name, message);
if (reply) {
dbus_connection_send(conn, reply, nullptr);
@@ -122,7 +122,7 @@ void VesperProfileService::sendError(DBusConnection* conn, DBusMessage* msg,
// Called from main() for preinstalled profiles before D-Bus is open.
// Idempotent: if the profile UUID is already in the store, it skips silently.
bool VesperProfileService::installProfileDirect(
bool PawletProfileService::installProfileDirect(
const std::vector<uint8_t>& profileData,
std::string& outUuid) {
@@ -191,7 +191,7 @@ bool VesperProfileService::installProfileDirect(
// ── InstallProfile (D-Bus) ────────────────────────────────────────────────
bool VesperProfileService::installProfile(DBusConnection* conn, DBusMessage* msg) {
bool PawletProfileService::installProfile(DBusConnection* conn, DBusMessage* msg) {
std::lock_guard<std::mutex> lock(mLock);
// Read the byte array argument (profile data)
@@ -254,7 +254,7 @@ bool VesperProfileService::installProfile(DBusConnection* conn, DBusMessage* msg
applyProfile(profile);
syslog(LOG_INFO, "vesperprofiled: installed profile uuid=%s", profile.uuid.c_str());
syslog(LOG_INFO, "pawletprofiled: installed profile uuid=%s", profile.uuid.c_str());
DBusMessage* reply = dbus_message_new_method_return(msg);
dbus_message_append_args(reply,
@@ -267,7 +267,7 @@ bool VesperProfileService::installProfile(DBusConnection* conn, DBusMessage* msg
// ── RemoveProfile ─────────────────────────────────────────────────────────
bool VesperProfileService::removeProfile(DBusConnection* conn, DBusMessage* msg) {
bool PawletProfileService::removeProfile(DBusConnection* conn, DBusMessage* msg) {
std::lock_guard<std::mutex> lock(mLock);
const char* uuid = nullptr;
@@ -301,7 +301,7 @@ bool VesperProfileService::removeProfile(DBusConnection* conn, DBusMessage* msg)
revertProfile(profile);
mStore.remove(uuid);
syslog(LOG_INFO, "vesperprofiled: removed profile uuid=%s", uuid);
syslog(LOG_INFO, "pawletprofiled: removed profile uuid=%s", uuid);
DBusMessage* reply = dbus_message_new_method_return(msg);
dbus_connection_send(conn, reply, nullptr);
@@ -311,7 +311,7 @@ bool VesperProfileService::removeProfile(DBusConnection* conn, DBusMessage* msg)
// ── ListProfiles ──────────────────────────────────────────────────────────
bool VesperProfileService::listProfiles(DBusConnection* conn, DBusMessage* msg) {
bool PawletProfileService::listProfiles(DBusConnection* conn, DBusMessage* msg) {
std::lock_guard<std::mutex> lock(mLock);
auto uuids = mStore.listUuids();
@@ -334,7 +334,7 @@ bool VesperProfileService::listProfiles(DBusConnection* conn, DBusMessage* msg)
// ── GetProfileInfo ────────────────────────────────────────────────────────
bool VesperProfileService::getProfileInfo(DBusConnection* conn, DBusMessage* msg) {
bool PawletProfileService::getProfileInfo(DBusConnection* conn, DBusMessage* msg) {
std::lock_guard<std::mutex> lock(mLock);
const char* uuid = nullptr;
dbus_message_get_args(msg, nullptr, DBUS_TYPE_STRING, &uuid, DBUS_TYPE_INVALID);
@@ -369,7 +369,7 @@ bool VesperProfileService::getProfileInfo(DBusConnection* conn, DBusMessage* msg
// ── IsDeviceManaged ───────────────────────────────────────────────────────
bool VesperProfileService::isDeviceManaged(DBusConnection* conn, DBusMessage* msg) {
bool PawletProfileService::isDeviceManaged(DBusConnection* conn, DBusMessage* msg) {
std::lock_guard<std::mutex> lock(mLock);
dbus_bool_t managed = FALSE;
for (const auto& uuid : mStore.listUuids()) {
@@ -388,7 +388,7 @@ bool VesperProfileService::isDeviceManaged(DBusConnection* conn, DBusMessage* ms
// ── GetMdmServerUrl ───────────────────────────────────────────────────────
bool VesperProfileService::getMdmServerUrl(DBusConnection* conn, DBusMessage* msg) {
bool PawletProfileService::getMdmServerUrl(DBusConnection* conn, DBusMessage* msg) {
std::lock_guard<std::mutex> lock(mLock);
std::string url;
for (const auto& uuid : mStore.listUuids()) {
@@ -415,7 +415,7 @@ bool VesperProfileService::getMdmServerUrl(DBusConnection* conn, DBusMessage* ms
// ── IsSupervised ──────────────────────────────────────────────────────────
bool VesperProfileService::isSupervised(DBusConnection* conn, DBusMessage* msg) {
bool PawletProfileService::isSupervised(DBusConnection* conn, DBusMessage* msg) {
std::lock_guard<std::mutex> lock(mLock);
dbus_bool_t supervised = FALSE;
for (const auto& uuid : mStore.listUuids()) {
@@ -434,7 +434,7 @@ bool VesperProfileService::isSupervised(DBusConnection* conn, DBusMessage* msg)
// ── GetPayloadsOfType ─────────────────────────────────────────────────────
bool VesperProfileService::getPayloadsOfType(DBusConnection* conn, DBusMessage* msg) {
bool PawletProfileService::getPayloadsOfType(DBusConnection* conn, DBusMessage* msg) {
std::lock_guard<std::mutex> lock(mLock);
const char* payloadType = nullptr;
dbus_message_get_args(msg, nullptr, DBUS_TYPE_STRING, &payloadType, DBUS_TYPE_INVALID);
@@ -470,24 +470,24 @@ bool VesperProfileService::getPayloadsOfType(DBusConnection* conn, DBusMessage*
// ── applyProfile / revertProfile ──────────────────────────────────────────
void VesperProfileService::applyProfile(const ParsedProfile& profile) {
void PawletProfileService::applyProfile(const ParsedProfile& profile) {
for (const auto& payload : profile.payloads) {
auto* handler = PayloadHandlerRegistry::get(payload.type);
if (handler) {
if (!handler->apply(payload))
syslog(LOG_WARNING, "vesperprofiled: handler failed type=%s uuid=%s",
syslog(LOG_WARNING, "pawletprofiled: handler failed type=%s uuid=%s",
payload.type.c_str(), payload.uuid.c_str());
} else {
syslog(LOG_WARNING, "vesperprofiled: no handler for type=%s", payload.type.c_str());
syslog(LOG_WARNING, "pawletprofiled: no handler for type=%s", payload.type.c_str());
}
}
}
void VesperProfileService::revertProfile(const ParsedProfile& profile) {
void PawletProfileService::revertProfile(const ParsedProfile& profile) {
for (auto it = profile.payloads.rbegin(); it != profile.payloads.rend(); ++it) {
auto* handler = PayloadHandlerRegistry::get(it->type);
if (handler) handler->revert(*it);
}
}
} // namespace vesperos::profile
} // namespace pawletos::profile
@@ -10,30 +10,30 @@
#include <vector>
#include <functional>
namespace vesperos::profile {
namespace pawletos::profile {
// ── D-Bus service constants ───────────────────────────────────────────────
// Clients connect to this well-known name on the system bus.
static constexpr const char* kServiceName = "me.oxmc.vesperos.ProfileService";
static constexpr const char* kObjectPath = "/me/oxmc/vesperos/ProfileService";
static constexpr const char* kInterface = "me.oxmc.vesperos.IProfileService";
static constexpr const char* kServiceName = "os.pawlet.ProfiledService";
static constexpr const char* kObjectPath = "/os/pawlet/ProfiledService";
static constexpr const char* kInterface = "os.pawlet.IProfiledService";
// ── Error domain ──────────────────────────────────────────────────────────
static constexpr const char* kErrNotFound = "me.oxmc.vesperos.Error.NotFound";
static constexpr const char* kErrSignature = "me.oxmc.vesperos.Error.Signature";
static constexpr const char* kErrParse = "me.oxmc.vesperos.Error.Parse";
static constexpr const char* kErrLocked = "me.oxmc.vesperos.Error.Locked";
static constexpr const char* kErrWrongPassword = "me.oxmc.vesperos.Error.WrongPassword";
static constexpr const char* kErrSigningRequired = "me.oxmc.vesperos.Error.SigningRequired";
static constexpr const char* kErrNotFound = "os.pawlet.profiled.Error.NotFound";
static constexpr const char* kErrSignature = "os.pawlet.profiled.Error.Signature";
static constexpr const char* kErrParse = "os.pawlet.profiled.Error.Parse";
static constexpr const char* kErrLocked = "os.pawlet.profiled.Error.Locked";
static constexpr const char* kErrWrongPassword = "os.pawlet.profiled.Error.WrongPassword";
static constexpr const char* kErrSigningRequired = "os.pawlet.profiled.Error.SigningRequired";
// ── Service class ─────────────────────────────────────────────────────────
class VesperProfileService {
class PawletProfileService {
public:
VesperProfileService();
~VesperProfileService();
PawletProfileService();
~PawletProfileService();
// Run the D-Bus main loop. Blocks until Stop() is called.
void run();
@@ -79,4 +79,4 @@ private:
bool mRunning = false;
};
} // namespace vesperos::profile
} // namespace pawletos::profile
+3 -3
View File
@@ -7,7 +7,7 @@
#include <cstring>
#include <sstream>
namespace vesperos::profile {
namespace pawletos::profile {
// ── Internal YAML DOM builder ─────────────────────────────────────────────
// libyaml is SAX/event-based. We walk the event stream and build a simple
@@ -240,7 +240,7 @@ bool ProfileParser::validateProfile(const ParsedProfile& profile) {
// Load singleton constraints from the installed schema
// For now use the compiled-in list; the schema-aware validator
// reads /usr/share/vesperprofiled/schema/profile.schema.yml at runtime.
// reads /usr/share/pawletprofiled/schema/profile.schema.yml at runtime.
static const std::vector<std::string> singletons = {
"mdm", "passcode", "restrictions", "kiosk", "asam",
"proxy-http", "web-filter", "global-preferences",
@@ -260,4 +260,4 @@ bool ProfileParser::validateProfile(const ParsedProfile& profile) {
return true;
}
} // namespace vesperos::profile
} // namespace pawletos::profile
+2 -2
View File
@@ -6,7 +6,7 @@
#include <string>
#include <vector>
namespace vesperos::profile {
namespace pawletos::profile {
struct ParsedPayload {
std::string type;
@@ -61,4 +61,4 @@ private:
bool validateProfile(const ParsedProfile& profile);
};
} // namespace vesperos::profile
} // namespace pawletos::profile
+5 -5
View File
@@ -16,7 +16,7 @@
#include <syslog.h>
#include <unistd.h>
namespace vesperos::profile {
namespace pawletos::profile {
// ── POSIX file helpers ────────────────────────────────────────────────────
@@ -28,7 +28,7 @@ static bool fileExists(const std::string& path) {
static bool writeFile(const std::string& path, const std::string& content) {
std::ofstream f(path, std::ios::binary | std::ios::trunc);
if (!f) {
syslog(LOG_ERR, "vesperprofiled: cannot write %s: %s",
syslog(LOG_ERR, "pawletprofiled: cannot write %s: %s",
path.c_str(), strerror(errno));
return false;
}
@@ -94,7 +94,7 @@ void ProfileStore::ensureDir(const std::string& path) {
}
void ProfileStore::load() {
ensureDir("/var/lib/vesperprofiled");
ensureDir("/var/lib/pawletprofiled");
ensureDir(kProfilesDir);
mUuids.clear();
@@ -108,7 +108,7 @@ void ProfileStore::load() {
mUuids.push_back(name);
}
closedir(d);
syslog(LOG_INFO, "vesperprofiled: loaded %zu profiles", mUuids.size());
syslog(LOG_INFO, "pawletprofiled: loaded %zu profiles", mUuids.size());
}
bool ProfileStore::save(const ParsedProfile& profile) {
@@ -205,4 +205,4 @@ void ProfileStore::rebuildIndex() {
writeFile(kIndexFile, j.str());
}
} // namespace vesperos::profile
} // namespace pawletos::profile
+8 -8
View File
@@ -6,7 +6,7 @@
#include <string>
#include <vector>
namespace vesperos::profile {
namespace pawletos::profile {
// Persists installed profiles under kProfilesDir.
//
@@ -18,20 +18,20 @@ namespace vesperos::profile {
// meta.json install time, trust level, payload count
// removal_hash.bin PBKDF2-SHA256 hash of removal password (if set)
//
// Android's path matches what vesperprofiled.rc already mkdir's at
// Android's path matches what pawletprofiled.rc already mkdir's at
// post-fs-data and what sepolicy/file_contexts already labels
// vesperprofiled_data_file — see android_packages_apps_PawletCache's
// pawletprofiled_data_file — see android_packages_apps_PawletCache's
// equivalent PolicyOverride.kt contract for the analogous device-side path.
#if defined(__ANDROID__)
static constexpr const char* kProfilesDir =
"/data/system/vesperos/profiles";
"/data/system/pawletos/profiles";
static constexpr const char* kIndexFile =
"/data/system/vesperos/profiles/index.json";
"/data/system/pawletos/profiles/index.json";
#else
static constexpr const char* kProfilesDir =
"/var/lib/vesperprofiled/profiles";
"/var/lib/pawletprofiled/profiles";
static constexpr const char* kIndexFile =
"/var/lib/vesperprofiled/profiles/index.json";
"/var/lib/pawletprofiled/profiles/index.json";
#endif
class ProfileStore {
@@ -50,4 +50,4 @@ private:
std::string profileDir(const std::string& uuid);
};
} // namespace vesperos::profile
} // namespace pawletos::profile
+8 -8
View File
@@ -18,7 +18,7 @@
#include <sys/stat.h>
#include <syslog.h>
namespace vesperos::profile {
namespace pawletos::profile {
struct BioDeleter { void operator()(BIO* p) { BIO_free(p); } };
struct CmsDeleter { void operator()(CMS_ContentInfo* p) { CMS_ContentInfo_free(p); } };
@@ -51,10 +51,10 @@ static StorePtr buildTrustStore() {
X509_STORE_load_locations(store, SignatureVerifier::kTrustStorePath, nullptr);
#endif
// Load VesperOS profile signing CA if installed
// Load PawletOS profile signing CA if installed
struct stat st{};
if (::stat(SignatureVerifier::kVesperCaPath, &st) == 0)
X509_STORE_load_locations(store, SignatureVerifier::kVesperCaPath, nullptr);
if (::stat(SignatureVerifier::kPawletCaPath, &st) == 0)
X509_STORE_load_locations(store, SignatureVerifier::kPawletCaPath, nullptr);
return StorePtr(store);
}
@@ -66,13 +66,13 @@ SignatureVerifier::VerifyResult SignatureVerifier::verify(
BioPtr in(BIO_new_mem_buf(cmsData.data(), (int)cmsData.size()));
CmsPtr cms(d2i_CMS_bio(in.get(), nullptr));
if (!cms) {
syslog(LOG_ERR, "vesperprofiled: failed to parse CMS envelope");
syslog(LOG_ERR, "pawletprofiled: failed to parse CMS envelope");
return VerifyResult::INVALID;
}
StorePtr store = buildTrustStore();
if (!store) {
syslog(LOG_ERR, "vesperprofiled: failed to build trust store");
syslog(LOG_ERR, "pawletprofiled: failed to build trust store");
return VerifyResult::INVALID;
}
@@ -97,7 +97,7 @@ SignatureVerifier::VerifyResult SignatureVerifier::verify(
char buf[256];
while ((e = ERR_get_error()) != 0) {
ERR_error_string_n(e, buf, sizeof(buf));
syslog(LOG_ERR, "vesperprofiled: CMS verify: %s", buf);
syslog(LOG_ERR, "pawletprofiled: CMS verify: %s", buf);
}
return VerifyResult::INVALID;
}
@@ -108,4 +108,4 @@ SignatureVerifier::VerifyResult SignatureVerifier::verify(
return VerifyResult::UNVERIFIED;
}
} // namespace vesperos::profile
} // namespace pawletos::profile

Some files were not shown because too many files have changed in this diff Show More