Skip to content

Commit 369f113

Browse files
committed
RetroPie Buster GCC8 fixes and Qt6 for Docker, macOs
1 parent 58df42a commit 369f113

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

VERSION.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION="3.18-dev"
1+
VERSION="3.17.2"

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
77
# Installing Qt and toolchain
88
RUN apt update
99
RUN apt install -y --no-install-recommends \
10-
build-essential \
10+
build-essential \
1111
qt6-base-dev \
1212
qmake6 \
1313
qt6-base-dev-tools \

skyscraper.pro

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ CONFIG += release
88
# set std-C++17 for clang and gcc
99
CONFIG += c++1z
1010
QT += core network sql xml
11+
1112
# for GCC8 (RetroPie Buster)
12-
LIBS += -lstdc++fs
13+
system( g++ --version | grep "^g++" | grep -c "8.3." ) {
14+
LIBS += -lstdc++fs
15+
}
1316

1417
# Installation prefix path for bin/Skyscraper and etc/skyscraper/*
1518
PREFIX=$$(PREFIX)

0 commit comments

Comments
 (0)