OK, after some playing with the command-line parameters I realized that it was the deployment target which was causing the problems. libc++ is used by default only when the deployment target is OS X 10.9 or newer and it ignores flags like -std=c++11 or launching it as clang++ when the deployment target is lower. The only thing that works is adding the -stdlib=libc++ flag.
So the easiest way would be to change the deployment target of the Geany mac binaries to OS X 10.9 which means the binary wouldn't run on older systems. But it might not be such a big problem as 10.9 isn't already supported by Apple with security patches so most users are probably on some newer system. Thoughts? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/1618#issuecomment-333300840
