[haiku-commits] haiku: hrev50898 - data/develop

  • From: jerome.duval@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 24 Jan 2017 17:31:52 +0100 (CET)

hrev50898 adds 1 changeset to branch 'master'
old head: 970591cb2d9c4ed7471e7a05d331f1648ce9ca50
new head: cdf894ce17f72d23be5e729a5d6877b7124c4654
overview: 
http://cgit.haiku-os.org/haiku/log/?qt=range&q=cdf894ce17f7+%5E970591cb2d9c

----------------------------------------------------------------------------

cdf894ce17f7: makefile-engine: use $(CC) and $(CXX) instead of gcc and g++.
  
  * so that one can build with clang.

                                   [ Jérôme Duval <jerome.duval@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev50898
Commit:      cdf894ce17f72d23be5e729a5d6877b7124c4654
URL:         http://cgit.haiku-os.org/haiku/commit/?id=cdf894ce17f7
Author:      Jérôme Duval <jerome.duval@xxxxxxxxx>
Date:        Tue Jan 24 16:30:36 2017 UTC

----------------------------------------------------------------------------

1 file changed, 3 insertions(+), 3 deletions(-)
data/develop/makefile-engine | 6 +++---

----------------------------------------------------------------------------

diff --git a/data/develop/makefile-engine b/data/develop/makefile-engine
index 504d9c5..ce2aa91 100644
--- a/data/develop/makefile-engine
+++ b/data/develop/makefile-engine
@@ -35,8 +35,8 @@ endif
 MIMESET        := mimeset
 XRES   := xres
 RESCOMP        := rc
-CC             := gcc
-C++            := g++
+CC             := $(CC)
+C++            := $(CXX)
 
 # Set up CFLAGS.
 ifeq ($(strip $(TYPE)), DRIVER)
@@ -79,7 +79,7 @@ endif
 
 # Set up the linker & linker flags.
 ifeq ($(origin LD), default)
-       LD                      := gcc
+       LD                      := $(CC)
 endif
 LDFLAGS                += $(DEBUG)
 


Other related posts:

  • » [haiku-commits] haiku: hrev50898 - data/develop - jerome . duval