[haiku-bugs] [Haiku] #13243: Makefile-engine hardcodes gcc and g++ (easy)

  • From: "korli" <trac@xxxxxxxxxxxx>
  • Date: Tue, 24 Jan 2017 09:24:44 -0000

#13243: Makefile-engine hardcodes gcc and g++ (easy)
-----------------------+------------------------------
 Reporter:  korli      |        Owner:  nobody
     Type:  bug        |       Status:  new
 Priority:  normal     |    Milestone:  Unscheduled
Component:  - General  |      Version:  R1/Development
 Keywords:             |   Blocked By:
 Blocking:             |  Has a Patch:  0
 Platform:  All        |
-----------------------+------------------------------
 {{{
 CC              := gcc
 C++             := g++

 ifeq ($(origin LD), default)
         LD                      := gcc
 endif
 }}}
 Should be
 {{{
 CC              := $(CC)
 C++             := $(CXX)

 ifeq ($(origin LD), default)
         LD                      := $(CC)
 endif
 }}}

--
Ticket URL: <https://dev.haiku-os.org/ticket/13243>
Haiku <https://dev.haiku-os.org>
Haiku - the operating system.

Other related posts: