configure.in

来自「gcc-2.95.3 Linux下最常用的C编译器」· IN 代码 · 共 50 行

IN
50
字号
# This file is a shell script fragment that supplies the information# necessary for a configure script to process the program in# this directory.  For more information, look at ../configure.configdirs=srctrigger=stdio.hsrcname="libio/stdio"package_makefile_frag=../Make.packpackage_makefile_rules_frag=../Make.pack.r# per-host:# per-target:LIBDIR=yesTO_TOPDIR=../../ALL=nothingMOSTLYCLEAN='*.o pic stamp-picdir core stdio.list'(. ${srcdir}/../config.shared) >${package_makefile_frag} 2>${package_makefile_rules_frag}# post-target:# Certain files that are used to build a C library (such as fprintf.o)# are compled from the same sources as the ioXXX versions (such as ioprintf.c).# These lines add the appropriate rules.# NOTE: We assume a C compiler that where -o with -c works.# But these files are not built by default anyway ...# TODO: remove rename tmpfile tmpnamstdio_renames="fclose fflush fgetpos fgets fopen fprintf fputs fread \  fscanf fsetpos ftell fwrite getdelim gets perror printf puts \  scanf setbuffer setvbuf sprintf sscanf ungetc vsprintf vsscanf"stdio_objects=""for file in $stdio_renames ; do  cat >>Makefile <<EOF$file.o: \$(srcdir)/../io$file.c	if [ -n "\$(PICFLAG)" ]; then \\	  \$(CC_FOR_STDIO) \$(CFLAGS) \$(CINCLUDES) \$(PICFLAG) -c \\	  \$(srcdir)/../io$file.c -D_IO_$file=$file -o pic/$file.o; \\	fi	\$(CC_FOR_STDIO) \$(CFLAGS) \$(CINCLUDES) -c \\	  \$(srcdir)/../io$file.c -D_IO_$file=$file -o $file.oEOF  stdio_objects="$stdio_objects $file.o"donesed -e "/STDIO_RENAMED_OBJECTS =/s/=.*/=${stdio_objects}/" <Makefile >tmpmv -f tmp Makefile

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?