help-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Specific C Compiler with GNU make


From: John Calcote
Subject: Re: Specific C Compiler with GNU make
Date: Mon, 13 Jul 2009 12:40:18 -0600
User-agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1b3pre) Gecko/20090223 Thunderbird/3.0b2

Hi Eduardo,

On 7/13/2009 8:10 AM, Eduardo Sorribas wrote:
Hello.

I have some time using GNU Make, and It has always been ok to me. It's just that I want to do something I hadn't needed to do, I need to compile using a mekefile and another compiler different to GCC. How can I do that? I know there is a CC variable but I dont know if i should set it manually. Thank you very much in advance.
The built-in implicit make rule for compiling C source files to object files uses $(CC) as the compiler. The default value of CC is simply cc, which is defined in the /usr/bin directory (on Linux systems) as the platform's preferred variant of gcc.

Make users can use the command:

  $ make CC=abc

to explicitly build using a different C compiler.

Regards,
John




reply via email to

[Prev in Thread] Current Thread [Next in Thread]