diff options
author | psykose <alice@ayaya.dev> | 2022-04-06 19:42:03 +0000 |
---|---|---|
committer | psykose <alice@ayaya.dev> | 2022-04-06 21:42:03 +0200 |
commit | 18620abccca3e70e11c2ef20e1e439be9300396a (patch) | |
tree | fa39c72673dc8698d605e41d892274a3a7ad2a39 | |
parent | 0594cd1f1182c5ecdfbc6d8fa70b26b1d4963a69 (diff) | |
download | aports-18620abccca3e70e11c2ef20e1e439be9300396a.tar.gz aports-18620abccca3e70e11c2ef20e1e439be9300396a.tar.bz2 aports-18620abccca3e70e11c2ef20e1e439be9300396a.tar.xz |
community/kodi: set BUILD_TYPE=RelWithDebInfo
(-O2) this is mostly media stuff that goes fast
-rw-r--r-- | community/kodi/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/community/kodi/APKBUILD b/community/kodi/APKBUILD index a2da532b91..08e3e6db48 100644 --- a/community/kodi/APKBUILD +++ b/community/kodi/APKBUILD @@ -129,7 +129,7 @@ build() { # X11 cmake -B build-x11 -G Ninja \ - -DCMAKE_BUILD_TYPE=MinSizeRel \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DENABLE_INTERNAL_CROSSGUID=ON \ @@ -141,7 +141,7 @@ build() { # Wayland cmake -B build-wayland -G Ninja \ - -DCMAKE_BUILD_TYPE=MinSizeRel \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DENABLE_INTERNAL_CROSSGUID=ON \ @@ -153,7 +153,7 @@ build() { # GBM cmake -B build-gbm -G Ninja \ - -DCMAKE_BUILD_TYPE=MinSizeRel \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DENABLE_INTERNAL_CROSSGUID=ON \ |