Home | History | Annotate | Download | only in src
      1 #
      2 # CDDL HEADER START
      3 #
      4 # The contents of this file are subject to the terms of the
      5 # Common Development and Distribution License, Version 1.0 only
      6 # (the "License").  You may not use this file except in compliance
      7 # with the License.
      8 #
      9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
     10 # or http://www.opensolaris.org/os/licensing.
     11 # See the License for the specific language governing permissions
     12 # and limitations under the License.
     13 #
     14 # When distributing Covered Code, include this CDDL HEADER in each
     15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
     16 # If applicable, add the following below this CDDL HEADER, with the
     17 # fields enclosed by brackets "[]" replaced with your own identifying
     18 # information: Portions Copyright [yyyy] [name of copyright owner]
     19 #
     20 # CDDL HEADER END
     21 #
     22 #
     23 # Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
     24 # Use is subject to license terms.
     25 #
     26 # ident	"%Z%%M%	%I%	%E% SMI"
     27 #
     28 
     29 # rebind basic build macros to 64-bit versions
     30 
     31 CFLAGS=		$(CFLAGS64)
     32 CCFLAGS=	$(CCFLAGS64)
     33 COPTFLAG=	$(COPTFLAG64)
     34 CCOPTFLAG=	$(CCOPTFLAG64)
     35 COMPILE.c=	$(COMPILE64.c)
     36 COMPILE.cc=	$(COMPILE64.cc)
     37 COMPILE.s=	$(COMPILE64.s)
     38 COMPILE.d=	$(COMPILE64.d)
     39 LINK.c=		$(LINK64.c)
     40 LINK.cc=	$(LINK64.cc)
     41 LINT.c=		$(LINT64.c)
     42 
     43 OFFSETS_CREATE=	$(OFFSETS_CREATE64)
     44 
     45 #
     46 # Some library path hackery, to allow building of partial workspaces
     47 # and properly set the 64-bit library paths with 'ws'
     48 #
     49 LDLIBS1=	$(ENVLDLIBS1:%=%/$(MACH64))
     50 LDLIBS2=	$(ENVLDLIBS2:%=%/$(MACH64))
     51 LDLIBS3=	$(ENVLDLIBS3:%=%/$(MACH64))
     52 LDLIBS64 = 	$(LDLIBS1) $(LDLIBS2) $(LDLIBS3)
     53 #
     54 # Moved these up to the top level here, so they can be overridden
     55 #
     56 LDLIBS.cmd =	$(LDLIBS64)
     57 LDLIBS.lib =	$(LDLIBS64)
     58 
     59 #
     60 # Override Makefile.master's settings of SFWLIBDIR
     61 #
     62 SFWLIBDIR=	$(SFWLIBDIR64)
     63 
     64 #
     65 # Override Makefile.master's settings of CC, CCC, AS and LINT
     66 #
     67 CC=		$($(MACH64)_CC)
     68 CCC=		$($(MACH64)_CCC)
     69 CPP=		$($(MACH64)_CPP)
     70 AS=		$($(MACH64)_AS)
     71 LD=		$($(MACH64)_LD)
     72 LINT=		$($(MACH64)_LINT)
     73 
     74 REAL_CC=	$(CW_CC_CMD:sh)
     75 REAL_CCC=	$(CW_CCC_CMD:sh)
     76 
     77 BUILD.SO=	$(CC) $(CFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) \
     78 		$(PICS) -L $(ROOTLIBDIR64) $(LDLIBS)
     79 
     80 CCNEEDED =		-lCrun
     81 $(__GNUC64)CCNEEDED =	-L$(SFWLIBDIR) -R$(SFWLIBDIR) -lstdc++	\
     82 			-lgcc_s_$(MACH64)
     83 
     84 BUILDCCC.SO=    $(CCC) -o $@ $(GSHARED) $(DYNFLAGS) $(PICS) $(LDLIBS) $(CCNEEDED)
     85