32 lines
904 B
Makefile
32 lines
904 B
Makefile
#
|
|
# File: Makefile.machine.amd64-solaris_spro
|
|
# Author: The SRI DECIPHER (TM) System
|
|
# Date: Fri Mar 3 15:30:10 PST 1995
|
|
#
|
|
# Description:
|
|
# Machine dependent compilation options and variable definitions
|
|
# for Intel running SunOS 5.x (a.k.a. Solaris 2.x)
|
|
# using Sun C compiler and AMD 64-bit processor
|
|
#
|
|
# Copyright (c) 1995-2001 SRI International. All Rights Reserved.
|
|
#
|
|
# $Header: /home/srilm/CVS/srilm/common/Makefile.machine.amd64-solaris_spro,v 1.3 2009/06/28 09:04:32 stolcke Exp $
|
|
#
|
|
|
|
include $(SRILM)/common/Makefile.machine.i386-solaris_spro
|
|
|
|
# Use the Sun Studio compilers
|
|
CC = $(ACC_PATH)cc -xarch=amd64
|
|
CXX = $(ACC_PATH)CC -ptr$(OBJDIR) -ptv -xarch=amd64
|
|
|
|
PIC_FLAG = -KPIC
|
|
|
|
# need to put -xarch after -fast
|
|
OPTIMIZE_FLAGS = -g -fast -xO3 -xtarget=opteron -xarch=amd64
|
|
|
|
# Tcl support not available
|
|
TCL_INCLUDE =
|
|
TCL_LIBRARY =
|
|
NO_TCL = X
|
|
|