当前位置:  技术问答>linux和unix

疑难杂症,高手搭救。请教configure 问题,configure.ac设置

    来源: 互联网  发布时间:2017-02-12

    本文导语:  本帖最后由 posa88 于 2011-03-12 17:12:59 编辑  事情是这样的。我现在需要编译一个程序包,但是直接./configure它显示permission denied。然后我看了下install,内容如下的default_fink_path=/PBC-0.4.7-vc-c  ,我的所有东西都在=/PBC-0.4....

本帖最后由 posa88 于 2011-03-12 17:12:59 编辑
 事情是这样的。我现在需要编译一个程序包,但是直接./configure它显示permission denied。然后我看了下install,内容如下的default_fink_path=/PBC-0.4.7-vc-c 
,我的所有东西都在=/PBC-0.4.7-vc-c目录中:
This build system has been tested and works on Linux and Mac OS X with a
fink installation.  You may need to specify paths via LDFLAGS and
CPPFLAGS if libraries are located in places other than the default
assumed in configure.ac.  See ./configure --help for more information.

./configure
make
make install
************************************************************************
我按上面说的,把下面的configure.ac修改成

#-*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.5)
AC_INIT([pbc], [0.4.7], [blynn@cs.stanford.edu])
AM_INIT_AUTOMAKE(pbc,0.4.7)
AM_CONFIG_HEADER(config.h)
AC_CONFIG_SRCDIR([./])
AC_PROG_LIBTOOL
#AC_CANONICAL_HOST

CFLAGS=
default_fink_path=/PBC-0.4.7-vc-c 
case $host_os in
     darwin*) 
            dnl nested function support
            AC_MSG_NOTICE([Adding -fnested-functions to CFLAGS])
      CFLAGS="-fnested-functions"

      dnl fink installation
            AC_MSG_CHECKING([for a fink installation at $default_fink_path])
            if test -d $default_fink_path; then 
        AC_MSG_RESULT([found it!])
 AC_MSG_NOTICE([Adding -I$default_fink_path/include to CPPFLAGS])
        CPPFLAGS="-I$default_fink_path/include $CPPFLAGS"
 AC_MSG_NOTICE([Adding -L$default_fink_path/lib to LDFLAGS])
 LDFLAGS="-L$default_fink_path/lib $LDFLAGS"
      else
AC_MSG_RESULT(none)
AC_MSG_NOTICE([You may need to add set CPPFLAGS and LDFLAGS for gmp, etc.])
      fi
      ;;
esac

# Checks for programs.
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET

# Checks for libraries.
lib_err_msg="add its path to LDFLAGSnsee ./configure --help"
AC_CHECK_LIB( [m], [pow], [],[
      echo "************************"
      echo "m library not found"
      echo -e $lib_err_msg
      echo "************************"
      exit -1
      ])
AC_CHECK_LIB( [gmp], [__gmpz_init], [],[
      echo "************************"
      echo "gmp library not found"
      echo -e $lib_err_msg
      echo "************************"
      exit -1
      ])
dnl Reset libs because most programs do not need to link against all of these libs.
LIBS=

# Checks for header files.
AC_FUNC_ALLOCA
AC_HEADER_STDC
AC_CHECK_HEADERS([stdlib.h string.h sys/time.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T
AC_HEADER_TIME

dnl setup CFLAGS
AC_ARG_ENABLE( optimized, 
       [AC_HELP_STRING([--enable-optimized],
[Enable optimized build])],
         [with_enable_optimized="$withval"],
 [with_enable_optimized="no"])

CFLAGS="$CFLAGS -O2 -Wall -W -Wfloat-equal -Wpointer-arith -Wcast-align -Wstrict-prototypes -Wredundant-decls 
-Wendif-labels -Wshadow -pipe -ffast-math -U__STRICT_ANSI__ -std=c99"
if test "x$with_enable_optimized" != "no"; then
    CFLAGS="$CFLAGS -g"
else
CFLAGS="$CFLAGS -fomit-frame-pointer -O3"
fi

# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_CHECK_FUNCS([floor gettimeofday memmove memset pow sqrt strchr strdup])

AC_CONFIG_FILES([Makefile example/Makefile gen/Makefile])
AC_OUTPUT

echo -ne "n"
echo "global build variables"
echo "-----------------------------------------"
echo `date`
echo "host info:        $host"
echo "optimized build:  $with_enable_optimized"
echo "LDFLAGS:          $LDFLAGS"
echo "CPPFLAGS:         $CPPFLAGS"
echo "CFPLAGS:          $CFLAGS"
echo "-----------------------------------------"
echo -ne "n"


然后,用./configure还是不行。但我还是不愿意这么早放弃,于是,
我按照生成configure文件的方式重新生成configure文件,但是中间出现了不少warning和一个error,后面的生成Makefile.am的过程也就无法继续了。我尝试继续到最后还是老样子不行。
该错误是在autoconf过程中说:可能没有定义AC_PROG_LIBTOOL!

请高手不吝赐教,小弟感激不尽。

|
显示权限不够,你进入ROOT模式,或是SUDO就行啦

|
你sudo ./configure呢

|
用root login Linux.

|
应该是这样执行  sh  ./configure

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 急急急:Java实现共享内存疑难,请各位帮手!
  • javascript 疑难求解! (在线等待......)
  • shell编程:awk疑难求解
  • 疑难问题,急需解决,谢谢
  • 【不看后悔】UNIX网络通信一大疑难问题
  • 数据源疑难(jira enterprise 3.13.4)
  • NFS疑难杂证
  • JSP的超级疑难问题!
  • 号外号外,希望本贴成为ADSL疑难终结者!
  • 各位高手小弟现有java疑难问题请教,谢谢。
  • Linux字符设备驱动疑难问题--printf打印信息发到字符设备write函数中
  • 疑难,高手请进
  • PHP常用函数和常见疑难问题解答


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3