📄 customise
字号:
# This file is for customizing the configuation process performed by# `./configure'. This file consists of sh(1) variable-definition lines.# The value given to those variables by this file will override their default# values.## Be sure to test whether the variable doesn't exists before setting it.## You can also customize the configuration process via the environment# variables seen by ./configure. For example:## In csh(1):# % setenv CC acc# & setenv CFLAGS -g# % ./configure## In sh(1) or ksh(1):# $ CC=acc CFLAGS=-g ./configure## Variables in this file override the environmental ones.############################################################################### C compilerif [ -z "$CC" ]; then CC=gccfi# C compiler flagsif [ -z "$CFLAGS" ]; then CFLAGS="-g -O2 -Wall"fiCFLAGS_TRIANGLE="$CFLAGS -w -ffloat-store"# Linker flagsif [ -z "$LDFLAGS" ]; then LDFLAGS="-L/usr/local/lib"fi# Installation prefix (default is /usr/local)if [ "${prefix}" = "NONE" ]; then prefix=/usr/localfiif [ "${libdir}" = "\${exec_prefix}/lib" ]; then libdir="${prefix}/lib${LIBEXT}"fiecho "Using prefix ${prefix}"echo "Using libdir ${libdir}"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -