From: Alexander Köplinger Date: Fri, 28 Aug 2020 11:51:20 +0000 (+0200) Subject: mono.proj: properly pass -mmacosx-version-min to CFLAGS for OSX (#41433) X-Git-Tag: submit/tizen/20210909.063632~5725 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85a3e81f0b8d255f9383a4050863a726d85251ac;p=platform%2Fupstream%2Fdotnet%2Fruntime.git mono.proj: properly pass -mmacosx-version-min to CFLAGS for OSX (#41433) Noticed we were missing this while looking at another PR. --- diff --git a/src/mono/mono.proj b/src/mono/mono.proj index ad59322..f61534e 100644 --- a/src/mono/mono.proj +++ b/src/mono/mono.proj @@ -92,6 +92,12 @@ <_MonoCXXFLAGS Include="-g" /> + + + <_MonoCFLAGS Include="-mmacosx-version-min=$(macOSVersionMin)" /> + <_MonoCXXFLAGS Include="-mmacosx-version-min=$(macOSVersionMin)" /> + + <_MonoCXXFLAGS Include="-D_GLIBCXX_USE_CXX11_ABI=0" />