📄 makefile.machine.mips-elf
字号:
## File: Makefile.mips-elf# Author: The SRI DECIPHER (TM) System# Date: Fri Mar 3 15:29:29 PST 1995## Description:# Machine dependent compilation options and variable definitions# for SGI workstations running IRIX 5.x## Copyright (c) 1995-2001 SRI International. All Rights Reserved.## $Header: /home/srilm/devel/common/RCS/Makefile.machine.mips-elf,v 1.18 2004/10/24 00:11:25 stolcke Exp $#ifeq ($(USE_CC), ) # all our machines are R4000 (or higher) based, so there is no use # sticking to the mips1 instruction set GCC_FLAGS = -mips2 -V2.95.3 -Wreturn-type -Wimplicit -Wimplicit-int CC = gcc $(GCC_FLAGS) CXX = g++ $(GCC_FLAGS) -DINSTANTIATE_TEMPLATESelse # Use the SGI C++ compiler CC = cc -mips2 CXX = CC -ptused -mips2 -Olimit 2000 # keep binaries separate from the default OPTIMIZE_OPTION = _CCendif # Optional compilation flags. OPTIMIZE_FLAGS = -g3 -O2 DEBUG_FLAGS = -g -DDEBUG PROFILE_FLAGS = -p -g3 -O2 # Optional linking flags. EXPORT_LDFLAGS = -s # Shared compilation flags. CFLAGS = -D__STDC__ $(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 = -lmalloc -lm # Tcl support TCL_INCLUDE = -I/usr/local/include TCL_LIBRARY = -L/usr/local/lib -ltcl -rpath /usr/local/lib # run-time linker path flag RLD_FLAG = -rpath # SGIs do not use "ranlib". RANLIB = echo # Generate dependencies from source files.ifeq ($(USE_CC), ) GEN_DEP = $(CC) $(CFLAGS) -MM GEN_DEP.cc = $(CXX) $(CXXFLAGS) -MMelse GEN_DEP = $(CC) $(CFLAGS) -M GEN_DEP.cc = $(CXX) $(CXXFLAGS) -Mendif # Run lint. LINT = lint LINT_FLAGS = -DDEBUG $(INCLUDES)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -