From: Derek Atkins Date: Sun, 21 Apr 2002 20:46:35 +0000 (+0000) Subject: currently for linux only, but allow it for others in the future X-Git-Tag: openafs-stable-1_2_4~47 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=b71b9c90430bf52e8dd05abfecb772689643b6e3;p=packages%2Fo%2Fopenafs.git currently for linux only, but allow it for others in the future (cherry picked from commit edd10398afe756afb8b7d8abbb73324e3a1b2cfd) --- diff --git a/acinclude.m4 b/acinclude.m4 index f83e0b10b..2ca2f3884 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -47,6 +47,9 @@ AC_ARG_ENABLE(transarc-paths, AC_ARG_ENABLE(tivoli-tsm, [ --enable-tivoli-tsm Enable use of the Tivoli TSM API libraries for butc support],, enable_tivoli_tsm="no" ) +AC_ARG_ENABLE(debug-kernel, +[ --enable-debug-kernel enable compilation of the kernel module with debugging information (defaults to disabled)],, enable_debug_kernel="no" +) dnl weird ass systems AC_AIX @@ -70,6 +73,11 @@ AM_PROG_LEX OPENAFS_CHECK_BIGENDIAN +KERN_DEBUG_OPT= +if test "x$enable_debug_kernel" = "xyes"; then + KERN_DEBUG_OPT=-g +fi + AC_MSG_CHECKING(your OS) system=$host case $system in @@ -120,6 +128,11 @@ case $system in fi AC_MSG_RESULT(linux) if test "x$enable_kernel_module" = "xyes"; then + OMIT_FRAME_POINTER= + if test "x$enable_debug_kernel" = "xno"; then + OMIT_FRAME_POINTER=-fomit-frame-pointer + fi + AC_SUBST(OMIT_FRAME_POINTER) ifdef([OPENAFS_CONFIGURE_LIBAFS], [LINUX_BUILD_VNODE_FROM_INODE(config,afs)], [LINUX_BUILD_VNODE_FROM_INODE(src/config,src/afs/LINUX)] @@ -201,6 +214,7 @@ case $system in AC_MSG_RESULT($system) ;; esac +AC_SUBST(KERN_DEBUG_OPT) if test "x$with_afs_sysname" != "x"; then AFS_SYSNAME="$with_afs_sysname" diff --git a/src/libafs/MakefileProto.LINUX.in b/src/libafs/MakefileProto.LINUX.in index 8ee1512b1..7065a3884 100644 --- a/src/libafs/MakefileProto.LINUX.in +++ b/src/libafs/MakefileProto.LINUX.in @@ -24,6 +24,8 @@ afssrvsbindir=@afssrvsbindir@ afssrvlibexecdir=@afssrvlibexecdir@ afskerneldir=@afskerneldir@ SYS_NAME=@AFS_SYSNAME@ +KDEBUG=@KERN_DEBUG_OPT@ +FOMIT=@FOMIT_FRAME_POINTER@ include config/Makefile.${SYS_NAME} @@ -54,40 +56,41 @@ CC = gcc LD = ld # -Wall -CCFLAGS = -O2 -fomit-frame-pointer \ +CCFLAGS = $(KDEBUG) -O2 $(FOMIT) \ -fno-strength-reduce -pipe -march=i486 -malign-loops=2 -malign-jumps=2 \ -malign-functions=2 DEFINES = -D__KERNEL__ -DCPU=586 -DKERNEL -D_KERNEL -DMODULE ${SMP_DEF} ${KDEFINES} -CCFLAGS = -O2 -fomit-frame-pointer -fno-strength-reduce -pipe -mno-fp-regs -ffixed-8 +CCFLAGS = $(KDEBUG) -O2 $(FOMIT) -fno-strength-reduce -pipe -mno-fp-regs -ffixed-8 DEFINES = -D__KERNEL__ -DKERNEL -D_KERNEL -DMODULE ${SMP_DEF} -CCFLAGS = -O -fomit-frame-pointer -fno-strength-reduce \ +CCFLAGS = -O $(FOMIT) -fno-strength-reduce \ -fno-strict-aliasing -fsigned-char DEFINES = -D__KERNEL__ -D__s390__ -DKERNEL -D_KERNEL -DMODULE ${SMP_DEF} LD = ld -m elf32_sparc -CCFLAGS = -O2 -fomit-frame-pointer \ +CCFLAGS = $(KDEBUG) -O2 $(FOMIT) \ -fno-strength-reduce -pipe -mcpu=v8 -mno-fpu -fcall-used-g5 -fcall-used-g7 DEFINES = -D__KERNEL__ -DCPU=sparc -DKERNEL -D_KERNEL -DMODULE ${SMP_DEF} CC = sparc64-linux-gcc LD = ld -m elf64_sparc -CCFLAGS = -O2 -fomit-frame-pointer \ +CCFLAGS = $(KDEBUG) -O2 $(FOMIT) \ -fno-strength-reduce -pipe -mcpu=ultrasparc -m64 -mno-fpu -mcmodel=medlow -ffixed-g4 -fcall-used-g5 -fcall-used-g7 -Wno-sign-compare DEFINES = -D__KERNEL__ -DCPU=sparc64 -DKERNEL -D_KERNEL -DMODULE ${SMP_DEF} -CCFLAGS = -O2 -fomit-frame-pointer -fno-strength-reduce \ +CCFLAGS = $(KDEBUG) -O2 $(FOMIT) -fno-strength-reduce \ -fno-strict-aliasing -fsigned-char -msoft-float -pipe \ -fno-builtin -ffixed-r2 DEFINES = -D__KERNEL__ -D__powerpc__ -DKERNEL -D_KERNEL -DMODULE ${SMP_DEF} -CCFLAGS = -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -fno-strength-reduce \ +CCFLAGS = $(KDEBUG) -O2 $(FOMIT) \ + -fno-strict-aliasing -fno-common -fno-strength-reduce \ -fno-strict-aliasing -fsigned-char -mno-space-regs -mfast-indirect-calls \ -mdisable-fpregs -ffunction-sections -march=1.1 -mschedule=7100 DEFINES = -D__KERNEL__ -D__linux__ -DKERNEL -D_KERNEL -DMODULE ${SMP_DEF} -CCFLAGS = -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe \ +CCFLAGS = $(KDEBUG) -O2 $(FOMIT) -fno-strict-aliasing -pipe \ -ffixed-r13 -mfixed-range=f10-f15,f32-f127 -falign-functions=32 -mb-step DEFINES = -D__KERNEL__ -DKERNEL -D_KERNEL ${SMP_DEF} -DMODULE