[vlc-devel] [PATCH v3 1/4] Fixed contrib compiler selection on MacOS X 10.9

Rafaël Carré funman at videolan.org
Mon Nov 18 17:42:43 CET 2013


Le 18/11/2013 15:20, Maxim Bublis a écrit :
> ---
>  contrib/src/main.mak | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/contrib/src/main.mak b/contrib/src/main.mak
> index 4e568ec..2ceb415 100644
> --- a/contrib/src/main.mak
> +++ b/contrib/src/main.mak
> @@ -97,8 +97,8 @@ endif
>  
>  ifdef HAVE_MACOSX
>  MIN_OSX_VERSION=10.6
> -CC=xcrun llvm-gcc-4.2
> -CXX=xcrun llvm-g++-4.2
> +CC=$(shell which llvm-gcc)
> +CXX=$(shell which llvm-g++)

Why not:
CC=llvm-gcc
CXX=llvm-g++

?

>  AR=xcrun ar
>  LD=xcrun ld
>  STRIP=xcrun strip
> 




More information about the vlc-devel mailing list