From ad0060f2b94911fef2ebaceb65815d42b2a28d6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Fri, 11 May 2018 16:15:36 +0200 Subject: [PATCH] Use rapidjson with hack for GCC8 (#7503) To be removed once https://github.com/Tencent/rapidjson/issues/1205 is fixed --- scripts/linux/install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/linux/install.sh b/scripts/linux/install.sh index d95a2ad9ef..f5ec2f2314 100755 --- a/scripts/linux/install.sh +++ b/scripts/linux/install.sh @@ -100,6 +100,9 @@ elif [[ $(uname) == "Linux" ]]; then # Clone discord-rpc for Discord's Rich Presence support # Use tagged release to prevent upstream changes from breaking our code git clone https://github.com/discordapp/discord-rpc -b v3.2.0 + # Use rapidjson with a hack for GCC 8, while awaiting a fix upstream: + # https://github.com/Tencent/rapidjson/issues/1205 + git clone https://github.com/janisozaur/rapidjson discord-rpc/thirdparty/rapidjson -b patch-1 # prevent build.sh from re-doing all the steps again case "$TARGET" in "ubuntu_i686")