Skip to content

Commit 79f686b

Browse files
committed
fix unwind not being latest closes openframeworks#8257
1 parent e86d546 commit 79f686b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/of.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -331,10 +331,11 @@ jobs:
331331
env:
332332
TARGET: ${{matrix.cfg.target}}
333333
steps:
334-
- name: Remove Old lib-unwind
335-
run: if [ "$TARGET" = "linux64" ]; then
336-
sudo apt-get remove libunwind-14 -y;
337-
fi
334+
# handled by the install script now
335+
# - name: Remove Old lib-unwind
336+
# run: if [ "$TARGET" = "linux64" ]; then
337+
# sudo apt-get remove libunwind-14 -y;
338+
# fi
338339
- name: Cache Packages
339340
uses: awalsh128/cache-apt-pkgs-action@latest
340341
with:

scripts/linux/ubuntu/install_dependencies.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ fi
206206
#jammy needs libunwind-dev installed before gstreamer
207207
#and some additional packages
208208
if [ $MAJOR_VERSION -gt 21 ]; then
209-
installPackages "libunwind-dev"
210-
209+
echo "Ensuring latest libunwind-dev is installed..."
210+
apt-get ${FORCE_YES} -qq install --only-upgrade libunwind-dev || installPackages libunwind-dev
211211
PACKAGES+=" libharfbuzz-dev"
212212
PACKAGES+=" gstreamer1.0-vaapi"
213213
PACKAGES+=" gstreamer1.0-libav"

0 commit comments

Comments
 (0)