📄 makefile.machine.i686-m64
字号:
## File: Makefile.i686# Author: The SRI DECIPHER (TM) System# Date: Fri Feb 19 22:45:31 PST 1999## Description:# Machine dependent compilation options and variable definitions# for Linux/i686 platform## Copyright (c) 1999-2001 SRI International. All Rights Reserved.## $Header: /home/srilm/devel/common/RCS/Makefile.machine.i686-m64,v 1.2 2006/01/05 20:25:44 stolcke Exp $# # Use the GNU C compiler. GCC_FLAGS = -march=athlon64 -m64 -Wreturn-type -Wimplicit CC = /usr/bin/gcc $(GCC_FLAGS) CXX = /usr/bin/g++ $(GCC_FLAGS) -DINSTANTIATE_TEMPLATES # Optional compilation flags. OPTIMIZE_FLAGS = -g -O3 DEBUG_FLAGS = -g -DDEBUG PROFILE_FLAGS = -g -pg -O3 # Optional linking flags. EXPORT_LDFLAGS = -s # Shared compilation flags. CFLAGS = $(ADDITIONAL_CFLAGS) $(INCLUDES) CXXFLAGS = $(ADDITIONAL_CXXFLAGS) $(INCLUDES) # Shared linking flags. LDFLAGS = $(ADDITIONAL_LDFLAGS) -L$(SRILM_LIBDIR) # Other useful compilation flags. ADDITIONAL_CFLAGS = ADDITIONAL_CXXFLAGS = # Other useful include directories. ADDITIONAL_INCLUDES = # Other useful linking flags. ADDITIONAL_LDFLAGS = # Other useful libraries. ADDITIONAL_LIBRARIES = -lm -ldl # run-time linker path flag RLD_FLAG = -R # Tcl support (standard in Linux) TCL_INCLUDE = TCL_LIBRARY = NO_TCL = 1 # No ranlib RANLIB = : # Generate dependencies from source files. GEN_DEP = $(CC) $(CFLAGS) -MM GEN_DEP.cc = $(CXX) $(CXXFLAGS) -MM # Run lint. LINT = lint LINT_FLAGS = -DDEBUG $(CFLAGS) # Location of gawk binary GAWK = /usr/bin/gawk
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -