Re: [PATCH 5/5] travis-ci: build with the right compiler

2019-01-03 Thread Johannes Schindelin
Hi Gábor, On Thu, 20 Dec 2018, SZEDER Gábor wrote: > Our 'Makefile' hardcodes the compiler to build Git as 'CC = cc'. This ... This CC variable ... > can be overridden from the command line, i.e. 'make CC=gcc-X.Y' will > build with that particular GCC version, but not from the environment, > i

[PATCH 5/5] travis-ci: build with the right compiler

2018-12-20 Thread SZEDER Gábor
Our 'Makefile' hardcodes the compiler to build Git as 'CC = cc'. This can be overridden from the command line, i.e. 'make CC=gcc-X.Y' will build with that particular GCC version, but not from the environment, i.e. 'CC=gcc-X.Y make' will still build with whatever 'cc' happens to be on the platform.