diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2020-08-08 15:10:25 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2020-08-08 20:29:34 +0200 |
commit | 42890b7b1126c3ae1bcb82df347b04a783b9a31c (patch) | |
tree | d19f74a5b9fb45c80a38b2e748381f30d9ed95e0 | |
parent | b764926bd358c5601a36f8362a2213c54d08fe49 (diff) | |
download | VeraCrypt-42890b7b1126c3ae1bcb82df347b04a783b9a31c.tar.gz VeraCrypt-42890b7b1126c3ae1bcb82df347b04a783b9a31c.zip |
MacOSX: Enable c++11 in compiler for non-legacy build.VeraCrypt_1.24-Update7
-rw-r--r-- | src/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index f881c87e..a1e1e43b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -300,6 +300,7 @@ ifeq "$(shell uname -s)" "Darwin" LFLAGS += -arch i386 WX_CONFIGURE_FLAGS += --enable-universal_binary=i386,x86_64 else + CXXFLAGS += -std=c++11 WX_CONFIGURE_FLAGS += --disable-universal_binary endif |