From d132639881e9f21886d16373c699412bb27091fb Mon Sep 17 00:00:00 2001 From: PetteriHuusko <32716559+PetteriHuusko@users.noreply.github.com> Date: Thu, 26 Apr 2018 13:56:26 +0300 Subject: [PATCH] Fix ios build for cases where Xcode is installed in a path with spaces (PR #646) --- GNUmakefile-cross | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile-cross b/GNUmakefile-cross index 6789c55f..daf11105 100755 --- a/GNUmakefile-cross +++ b/GNUmakefile-cross @@ -88,7 +88,7 @@ ifeq ($(IS_IOS),1) CXX = clang++ CXXFLAGS += $(IOS_FLAGS) -arch $(IOS_ARCH) - CXXFLAGS += -isysroot $(IOS_SYSROOT) -stdlib=libc++ + CXXFLAGS += -isysroot "$(IOS_SYSROOT)" -stdlib=libc++ AR = libtool ARFLAGS = -static -o