configure

阅读 / 问答 / 标签

magento前台更换语言,导致首页报错:There was no Home CMS page configured or found

这个报错是说找不到这个cms block。方法一:你把Template-hint打开就知道了。方法二:Home page cms的设置在System->Configuration->Design->的前几个。忘记名字了,可是把首页设置成某个CMS PAGE. 你去找找就知道了。

./configure失败 没有生成Makefile这是为什么???

这说明 sdl-config 这个功能你没有安装,然而 这是一个比选的 功能,所以报错

linux 执行configure的时候不断出现 no yes等检查结果,但是还是能编译成功?

你解压了后要进入那个目录里面再执行./configure...可以看看README或INSTALL文件...有些他没有configure的..像我安装的新氧主题包什么的..里面有相关的安装文件..有点像是批处理文件..不要你执行./configure make&makeinstall ..他是直接执行./install什么的就可全部安装了..当然好多还是要./configue make&make install..还是那句话看看REAMDE..里面是安装说明

CAD打印图纸时 提示出现no plotter is configured 打印别的文档都行 打印机驱动已安装 我使用是公共打印机

需要制定打印机的路径,如果是网络打印机需要制定位置,网络打印机一般不需要安装驱动!

Fedora14 安装gmp时出错 configure: error: could not find a working compiler

似乎gcc并未安装,错误提示并未找到一个可工作的编译器安装gcc

怎么解决might not be accessible by any of the configured template resolvers

怎么解决might not be accessible by any of the configured template resolversapplication.properties配置文件spring.thymeleaf.prefix=classpath:/templates/spring.thymeleaf.suffix=.htmlspring.thymeleaf.mode=LEGACYHTML5#spring.thymeleaf.encoding=UTF-8#spring.thymeleaf.content-type=text/html # ;charset=<encoding> is addedspring.thymeleaf.cache=falsespringboot使用thymeleaf时报html没有结束标签在使用springboot的过程中,如果使用thymeleaf作为模板文件,则要求HTML格式必须为严格的HTML5格式,必须有结束标签,否则会报错!解决办法如下:1、你可以使用严格的标签,也就是每个标签都有结束标签,这种可能比较麻烦2、在application.properties中增加spring.thymeleaf.mode=LEGACYHTML5,即声明thymeleaf使用非严 格的html。maven依赖如下<dependency><groupId>net.sourceforge.nekohtml</groupId><artifactId>nekohtml</artifactId><version>1.9.22</version></dependency>现在就可以正常访问了。希望对你有帮助~

在java中Configuration cfg = new Configuration().configure();代码中的configure()方法为什么打不开?

仔细看看课本吧 好像这样是不对的饿

3.spring security oauth2 配置授权服务器(AuthorizationServerConfigurerAdapter)

项目地址: https://github.com/liangjinquan17/spring-security-demo 配置AuthorizationServerConfigurerAdapter需要注意的地方有三,1.密码校验方式 (PasswordEncoder)2.AuthenticationManager 3.UserDetailsService 1.新建类继承AuthorizationServerConfigurerAdapter,重写三个config方法,注入PasswordEncoder、AuthenticationManager、UserDetailsService。这三个实现类均有WebSecurityConfigurerAdapter类提供。 2.首先我们来看下WebSecurityConfigurerAdapter类是怎样提供PasswordEncoder、AuthenticationManager、UserDetailsService的。 3.接着我们来看下继承AuthorizationServerConfigurerAdapter的新类 4.调用授权接口获取token值: http://localhost:8080/oauth/token?username=admin&password=admin&grant_type=password&scope=admin 注意了,我们不是配置了client和secret的,这时候需要把这两个参数带上,可以放header也可以放body里面;5.至于oauth2的四种授权方式我就不一一配置了。

无线路由器提示Successfully configure是什么意思?

安装成功的意思?

configured是什么意思

configured[英][ku0259n"fu026aɡu0259d][美][ku0259n"fu026aɡu0259d]v.设定; 配置( configure的过去式和过去分词 ); 使成形; 使具一定形式; 以上结果来自金山词霸例句:1.Adam has over 100 components that can be configured to create customized mining processes. adam拥有超过100种组件,他们可以被配置成定制的挖掘进程。

Linux ./configure命令--with选项疑问

./configure 这个脚本是开发者提供的,with-ssl 这个选项的行为也是开发者定义的。一般情况下开发者会枚举几个常见的 ssl 路径在 configure 脚本里面,这样如果用户不输入 with-ssl 参数的时候 configure 脚本能一定程度上自动探测到系统里面的 ssl 库所在位置。也有一种情况是开发者默认让 with-ssl 这个参数关闭,也就是说用户必须使用这个参数 configure 脚本才会去检测 ssl 库的位置。为 with-ssl 加上一个路径的这种用法,configure脚本会忽略掉自动探测 ssl 位置的那段逻辑,直接使用用户输入的路径。

./configure编译后的文件在哪里?ubuntu中

configure后软件还没有编译,只是检查下你系统的环境,如果没有报错的话会生成一个叫makefile的文件,运行make成功才编译完成,此时会产生可运行文件,再make install,你要的程序就可以运行了

如何在configure时,将编译参数传入,改变默认的编译器gcc成arm

一般在config里面都会有一个perfix的设置你把它设置成你编译器的前缀就可以这个其实是定义了一个变量 名字各个平台可能不同比如 COMPILER_PERFIX如果是自己写makefile编译命令写成$(COMPILER_PERFIX)gcc 那么设置perfix为arm-这个就等效为 arm-gcc了。

nginx没有configure如何编译

安装Nginx有两种方法,除了编译以外,还可以直接用操作系统上自带的一些工具,比如yum、apt-get但是直接安装Nginx的二进制文件会有个问题,因为Nginx的二进制文件会把模块直接编译进来。Nginx的官方模块,并不是每一个都默认开启的,如果你想添加第三方的Nginx模块,你必须通过编译Nginx这种方式才能把第三方的模块添加到Nginx中编译

在ubuntu中配置软件是遇到“bash: ./configure: 没有那个文件或目录”,该怎么办?

你可以在命令行中先进入要安装的软件的目录(cd进入),然后执行find.-name"configure"找到configure文件所在的目录,然后进入执行./configure如果没有找到的话就是没有了,估计就不用执行configure了,直接make吧

configure 不是内部或外部命令

就是你运行的这个命令系统里没有

configured是什么意思

configured英 [ku0259n"fu026aɡu0259d] 美 [ku0259n"fu026aɡu0259d]v.配置( configure的过去式和过去分词 ); 设定; 使成形; 使具一定形式双语例句1. The RCS must be in the CONFIGURED state before this operation is performed. 在执行这个操作之前,该RCS必须处于CONFIGURED状态.2. The FTPS Server is configured such that no file retrieval is possible. FTPS服务器是组态的,这样无文件检索变为可能.3. This list is usually configured by the system administrator. 此列表通常由系统管理员配置.4. The car"s 7 G - TRONIC seven - speed automatic transmission is specially configured for hybrid operation. 汽车的7速自动变速器七速自动变速器是专门配置的混合行动.5. Most Filters can be configured to do seperate DSP on each Channel. 大部分滤镜可以被装配去分离DSP在每个频道上.

MATLAB神经网络工具箱configure函数使用?

你想要什么解释?这句话是在为你的神经网络(net)配置每个RTDX缓冲channel中的字节位数(p)和缓冲channel的数量(t)。RTDX(real time data exchange)实时数据交换。如果你懂低级计算机编程语言的话应该很好理解。这句话基本可以大致理解为为你的神经网络划出一个计算的空间。神经网络算法本身极其复杂,甚至有很多conference是专门讨论该算法的。matlab作为高级程序语言,出发点是把所有算法打包好使用户方便使用。要做到这个对一些基础算法来说并不难。但是神经网络本身就是一大堆算法的集成,简单打包算法不太可能。使用这个工具箱你只需要知道大致原理,再找几个模板依样画葫芦练习一下就可以了,没必要全弄明白

我解压了gcc 后为什么没有configure

因为你没有装gcc(你解压的不就是gcc来安装嘛),所以没法configure没法make没法make install。因此即使有confiure也运行不了,所以开发人员就没有弄configure。。

关于执行./configure文件时出的错,大侠帮帮忙看看啊,指点一下,谢谢了!

貌似中间编译失败了,没产生`Makefile.in"……

Linux源码make install安装后再修改Configure参数

应用安装完成了一般都是修改配置文件,如果不行的话,那还是重新make && make install吧。因为./configure就是在make之前执行的,它直接影响的是make的编译结果,是编译环境的配置、检测,软件都安装好了再怎么./configure都是没有用的。你可以备份一下配置文件,然后再重新make安装。

浏览器出现configure

根本不需要本地 控制台来进行初始配置,也不需要安装任何管理 软件,您只需要有浏览器,就可以 全面地开始 工作了。

configure:error:gmp.h cannot be found or is unusable 怎么解决

yum install gmp-devel.x86_64

安装Python时怎么运行.configure,在哪里输入?

需要./configure的是源码安装方式。首先下载python源码包,解压后进入python解压后的目录,里面有./configure

ubuntu configure中遇到的小问题

看样子是声卡驱动,建议用apt-get从源安装。自己编译会有很多依赖性问题,建议搜索针对你所使用的ubuntu版本的alsa安装方法。

当程序不能编译时怎么办?调试configure

但是,这样行不通时怎么办?在本文中,Peter Seebash 讲述了当自动的配置脚本失效时应该如何去做——以及作为开发者您应如何尽量避免这种错误。毕竟,如果您的程序无法编译,其结果将和您的程序编译后不能运行一样,您的用户会减少。    现在许多开放源代码的程序都会附带有 configure 脚本。这种脚本的用途之一是自动进行对目标新系统的猜测过程。在过去,程序会附带一个 Makefile 文件,这个文件中有 6 个不同的编译标记和选项,但只会用到一个,其余全部注释掉,并且会有一个注解,告诉您“为您的系统选择合适的标记”。如果配置选项更复杂,可能还会有一个名为 config.h 的长长的 C 头文件,其中包含一些要设置的标记,这依赖于主机系统变量。    第一个方法很简单,在代码中使用 #ifdef 以支持两种系统,例如 BSD 和 System V。由于 Unix 的类型的增加,更为实用的方法是对每一个特性使用 #ifdef。每个系统的代码如下:    清单 1. 每个系统的代码    #ifdef SUNOS4 || NEXT || NETBSD || FREEBSD || OPENBSD  #include <string.h  #else  #include <strings.h  #endif    每个特性的代码如下:    清单 2. 每个特性的代码    #ifdef HAS_STRING_H  #include <string.h  #else  #include <strings.h  #endif    后者更容易适应新系统,但需要开发者进行大量的工作。由于现在有太多可能的目标系统,因此,第二种方法对用户来说帮助很大,不仅仅是可以自动生成配置头文件。完成这项任务的一种方法是使用 GNU autoconf 代码来生成 configure 脚本。这个脚本会去执行必要的测试,并创建一个具有适当值的配置头文件。    这种脚本的另一个功能是以一致的方式设置预定义的变量。用手工编辑标记一直存在一个问题,即修改了 Makefile 文件(比如将其安装到 /usr/gnu 而不是 /usr/local 目录下)却忘记修改头文件中相应的值。当然,这样的结果是,编译后的程序不知道到哪里去寻找它们自己的数据文件。使用 configure 脚本的一个好处是可以自动完成一致的安装(如果维护者做得没错的话)。    开发人员请注意,一个好的 configure 脚本的另一个好处在于,它会允许用户指定一些个人偏好,例如使用 /usr/gnu 而不是 /usr/local。    这些如何成为可能?    编译,再编译    configure 的许多功能实现机制其实很简单。为了能切身体会,您可以设计一个小测试程序,这个程序当且仅当期望的条件得到满足时才可以编译。将它保存在一个临时文件中,然后尝试编译它。例如,假定您想知道 X Windowing System 是否安装在 /usr/X11R6 目录下。一种方法是做一个如下的测试程序:    #include <X11/X.h  int main(void) { return 0; }    现在,如果您用编译器来尝试进行编译,那么只有当 <X11/X.h 在编译器的 include 路径中时,编译才会成功。因此,对每一个您认为 X 可能安装到的目录,可以将对应的 (directory)/include 加入到编译器的 include 路径中,并尝试对程序进行编译。如果采用某个值时示例文件可以编译,那么您就得到了正确的 include 路径。    请注意在 autoconf 中已经预定义了各种测试程序。如果可能,就直接使用这些测试程序,而不用自己去写。这样有很多好处。首先,autoconf 的新版本会改进这些测试程序,修正它们的错误,否则您将不得不自己去做这些工作。其次,这样会节省您的时间。当然,更好的方法是完全避免测试。如果您确认某一个测试是没有必要的(例如,即使机器字节多于 8 位也仍需要使 sizeof(char) 为 1),您可以完全不去进行这个测试。    有一些测试是功能测试;它不足以确定是否存在一个名为 memcmp() 的函数,它的语义必须正确。通常,这些测试用于只是在一两个平台上被注意到的非常不明显的错误。这些测试实际上会去运行测试程序,并检查它的输出。测试程序遵循标准的 Unix 习惯:如果测试通过则返回值为 0,如果失败则返回一个非 0 值。    一旦您有了足够的测试程序,您可以用它们来自动确定必需的编译标记和定义,以将它们放到头文件的某个地方。通常,configure 脚本会允许用户给出部分或全部已知的条件,而不是让脚本自己去猜测。    来看一个特例,假定,系统的 brokenmemmove() 出现了问题。如果您不知道它现在有一个只会影响少部分程序的 bug,您可能会编译一个程序并将其发布为产品,而没有意识到这样您将会遇到偶然的灾难性错误。    在许多情况下,一个冗长而复杂的 configure 脚本的最终结果是这样的:目标系统提供了这个程序用到的每一个标准特性,而且它们正确工作。在这种情况下为什么不手工去设置这些标记呢?这对开发者来说是可行的,而对众多用户来说就不可以了。用户可能不会知道到他们的 Linux 版本存在特定的 bug。他们可能不知道已经安装了哪些软件包,或者安装到了何处。脚本帮那些最需要帮助的人来完成大部分的例行公事的工作。当脚本出错时,引发的额外工作的代价可能不会太大。    错在何处?    既然您已经基本上了解了 configure 都做了些什么工作,您可以开始寻找错误了。有两种可能的 configure 错误。一种是 configure 是正确的,而您的系统缺少必要的先决条件。绝大多数情况下,configure 脚本会正确诊断出这种错误。更为麻烦的情况是 configure 本身的错误。这样的结果或者是不能生成配置,或者生成一个不正确的配置。    当 configure 的猜测无误,而您缺少先决条件时,您所要做就是要满足缺少的那些先决条件。当您找到并安装好后,再重新运行那个报告缺少先决条件的 configure 脚本,就可以成功了。(不要忘记删除 config.cache 文件,这个文件缓存了上一次测试的结果;您应该让 configure 从头开始。)    如果您正在开发 configure 脚本,您需要确保您给出的错误消息有意义。如果您测试的是一个函数,而这个函数是一个常见的可添加的软件包的一部分,那么不要告诉用户缺少的函数的名称 —— 告诉用户他们需要的软件包。确保将先决条件信息写入 README 文件中。并且,请一定要告诉人们您测试使用的其他软件包的版本号。    阅读文档    无论何时,当 configure 失败时您首先要做的是运行 configure -h,并检查参数列表。如果它找不到您确认已经安装的库,您可能可以指定到另一个位置来找到这个库。您还可以禁用和启用某些特性。例如,用于 Angband (一个 Roguelike 游戏)的 configure 脚本有一个可选的标记 —— enable-gtk,以告诉脚本在编译时启用 GTK 支持。如果没有这个标记,编译时根本不会去尝试。    如果您的系统配置得比较奇怪,您可能不得不为 configure 脚本设置一些非常详细的变量,而且如果是在交叉编译,您很可能得做一些非常特别的事情。CC 是 configure 用于指定 C 编译器的变量,通过指定 CC 的值可以解决许多问题。如果您指定了编译器,configure 将使用那个编译器而不用去猜测需要使用哪一个。要注意的是,这样您可以在命令行中指定选项和标记。例如,如果您希望编译时支持调试符号,尝试:    CC="gcc -g -O1" ./configure    (这里假定您使用的是 sh 系列的 shell;在 csh 中,用 setenv 来设置环境变量 CC。)    阅读 config.log    当 configure 脚本运行时,它会创建一个名为 config.log 的文件,其中记录的是测试日志和得到的结果。例如,一个典型的 config.log 片断如下:    清单 3. config.log 的典型内容    configure:2826: checking for getpwnam in -lsun  configure:2853: gcc -o conftest -g -O2 -fno-strength-reduce conftest.c -lsun &5  ld: cannot find -lsun  configure:2856: $? = 1  configure: failed program was:  (a listing of the test program follows)    如果我的系统中,-lsun 应该提供 getpwnam(),我应该可以使用命令行来对其进行确切检查,然后再使用测试程序。只需进行少量这样的调试,我就可以根据得到的信息来修改 configure 脚本。请注意有帮助的行号;这个测试从 configure 脚本的第 2,826 行开始。(如果您是一个 shell 程序员,您可能会喜欢在阅读 configure 脚本片断时打印出行号;在 shell 中 $LINENO 不能自动地被扩展为合理值,脚本使用 sed 创建一个包含有行号的自身拷贝!)    当一个测试失败或者得到意外的结果时,最好先去读一读日志文件。请注意,有时测试失败仅仅是因为上一个测试的失败,这种失败实际上并不重要。例如,configure 可能会因为找不到一个您闻所未闻的库而退出,而这可能是因为测试标准 C 库中某个功能的程序失败而导致无法找到那个库。在这种情况下,只需要解决第一个问题,第二个问题也就不会再出现了。一种情况是测试程序设计不正确而可能

linux下使用./configure报-bash: ./configure: No such file or directory

./configure报-bash: ./configure: No such file or directory, 并且make install也报make: *** No rule to make target `install". Stop.。 最后才发现是没有找到这个目录,使用find -name configure来查找目录, 然后进入到指定目录里面、 说明当前安装目录下没有这个configure文件。 而有的软件包并不是用makefile的,或者makefile已经写好,不用config了,因此不提供configure。 你可以看文件夹里是否有makefile文件,若有,可以直接使用make编译,make install安装;

linux 下编译程序时 输入 ./configure , 这里前面的“./”是做什么用的,为什么用输入?

configure相当于一个脚本文件 ./+脚本名表示执行这个脚本

linux的./configure出错,怎么回事

cat 下config.log 看下具体的报错

请问linux中运行./configure时不成功,怎么解决?

有提示的根据提示排错

linux下安装PBC库,configure时出错,大神帮帮忙啊

安装时通常需要注意文件夹里面的README&INSTALL文件,像上面flex没有找到,你就需要确认这个flex有多重要,因为光是./configure 通不过自然是没办法make的,你需要在configure后加入参数可以尝试./configure --help 来帮助你是否可以加入flex进去,祝好!/usr/lib/i386-linux-gnu/libgmp.so.10: could not read symbols: Invalid operation这个意思是你的库虽然有但是用不了,应该是库链接的问题,你需要在其官网上查找,或者当前这个库的版本不对,要不你重新下个PBC的低版本试试!

centos7怎么没有configure是的命令

Configure脚本配置工具就是基础之一,它是autoconf的工具的基本 应用。与一些技巧相比,Configure显得基础一些,当然使用和学习起来就显得枯燥乏味一些,当然要成为高手,对基础的熟悉不能超越哦。"configure"脚本有大量的命令行选项.对不同的软件包来说,这些选项可能会有变化,但是许多基本的选项是不会改变的.带上"-- help"选项执行"configure"脚本可以看到可用的所有选项.尽管许多选项是很少用到的,但是当你为了特殊的需求而configure一个包 时,知道他们的存在是很有益处的.下面对每一个选项进行简略的介绍:--cache-file=FILE"configure"会在你的系统上测试存在的特性(或者bug!).为了加速随后进行的配置,测试的结果会存储在一个cache file里.当configure一个每个子树里都有"configure"脚本的复杂的源码树时,一个很好的cache file的存在会有很大帮助.

vscode为什么configure用不了

安装插件没有成功。vscode是一种简化且高效的代码编辑器,其configure用不了是因为在vscode客户端里安装插件没有成功,只需要卸载相应的插件扩展,重新下载安装即可。vscode同时支持诸如调试,任务执行和版本管理之类的开发操作,目标是提供一种快速的编码编译调试工具。

ubuntu中终端上输入./configure

没有这个文件~,你要进入安装目录下如解压出来HTTPD的目录下#httpd]./configure

CentOS中./代表什么意思啊,比如执行./configure

./代表当前目录,属于相对路径 也就是告诉centos 要操作的文件时 当前目录下的configure

Linux系统中执行./configure时提示没有这文件,让我软件装不了,该怎样处理?

没有哪个文件??

Linux新手,怎么清除configure之后生成的文件

make distclean

rhel5下安装win执行./configure的时候出现问题

sudo apt-get install flex bison qt4-qmakeapt-get install libfreetype6-devapt-get install libjpeg-dev libpng-dev libxslt-dev libxml2-dev apt-get install libxrender-devsudo apt-get install libgl1-mesa-devsudo apt-get install libglu1-mesa-devsudo apt-get install freeglut3-devapt-get install prelink apt-get install libasound2-dev没有的就都装了吧~!

linux:./configure 如果不指定安装路径,缺省路径应该如何察看?

一般configure脚本会把程序装到/usr/locla/bin

configure的时候怎么指定搜索路径

今天编译一个开源库libartnet的使用demo时候遇到一个问题,之前没遇到过的,记录一下。其实很简单,这个开源库编译安装时,我习惯性地不把它安装到/usr或者/usr/local下,而是安装到/opt下,只是为了以后不想要的时候删掉比较方便,结果编译artnet的demo的时候就编译不了了,因为这个demo程序也是通过configure make 这样的步骤去编译的。具体问题就是在执行configure脚本的时候找不到自己安装在/opt下的库,因为默认不会去那里找库的。那怎么办呢?如果是makefile或者gcc编译命令还好改,直接加搜索路径就可以了,仔细一看,原来这个检查项目依赖的动态链接库的步骤是通过pkg-config工具去完成的,pkg-config工具是去读所有.pc文件的。这些pc文件在哪里找呢?默认会在/usr/lib/、/lib/类似的这些放置比较重要的库的目录下的pkgconfig目录里,如果自己安装了一个库在这些目录里的话,对应库的pc文件也会放到这些目录的pkgconfig目录下,所以可以默认搜索得到。但是自己装得库就不会,你安装在哪里,库的pc文件就在对应pkgconfig目录里,而这pkg-config工具是不知道的。所以我们只需要为PKG_CONFIG_PATH这个环境变量添加自己的库的pc文件存放路径比如/opt/artnet/lib/pkgconfig/,这样在configure的时候就会去搜索这个目录下的动态链接库了。提醒一下:PKG_CONFIG_PATH和PATH变量一样,通过冒号间隔前后两个搜索的路径。pkg-config也是一个有意思的东西啊!

linux无法configure的问题

没错你的gnu解释器太老了,更新一下吧。

configure命令只指定host能进行交叉编译吗

可以,"--build=BUILD"指定软件包安装的系统平台.如果没有指定,默认值将是"--host"选项的值. 。"--host=HOST"指定软件运行的系统平台.如果没有指定,将会运行`config.guess"来检测."--target=GARGET"指定软件面向(target to)的系统平台.这主要在程序语言工具如编译器和汇编器上下文中起作用.如果没有指定,默认将使用"--host"选项的值.

虚拟机输入命令./configure报错,请问怎么解决?

缺少perl 的bio模块 安装相关依赖即可楼上都是扯淡

linux命令行为什么输入sudo /configure提示找不到命令

你的configure文件肯定不是在/下,但你写的是 /configure, 所以找不到configure

linux上安装python3.4.4,执行./configure的时候报错,怎么解决

config.log的内容:This file contains any messages produced by compilers whilerunning configure, to aid debugging if configure makes a mistake.It was created by python configure 3.4, which wasgenerated by GNU Autoconf 2.69. Invocation command line was$ ./configure## --------- #### Platform. #### --------- ##hostname = hbttdb1uname -m = x86_64uname -r = 2.6.32-279.el6.x86_64uname -s = Linuxuname -v = #1 SMP Wed Jun 13 18:24:36 EDT 2012/usr/bin/uname -p = unknown/bin/uname -X = unknown/bin/arch = x86_64/usr/bin/arch -k = unknown/usr/convex/getsysinfo = unknown/usr/bin/hostinfo = unknown/bin/machine = unknown/usr/bin/oslevel = unknown/bin/universe = unknownPATH: /usr/lib64/qt-3.3/binPATH: /usr/local/sbinPATH: /usr/local/binPATH: /sbinPATH: /binPATH: /usr/sbinPATH: /usr/binPATH: /root/binPATH: /data/oracle/app/oracle/product/11.2.0/binPATH: .## ----------- #### Core tests. #### ----------- ##configure:2894: checking build system typeconfigure:2908: result: x86_64-unknown-linux-gnuconfigure:2928: checking host system typeconfigure:2941: result: x86_64-unknown-linux-gnuconfigure:3053: checking for --enable-universalsdkconfigure:3100: result: noconfigure:3123: checking for --with-universal-archsconfigure:3138: result: noconfigure:3288: checking MACHDEPconfigure:3494: result: linuxconfigure:3518: checking for --without-gccconfigure:3541: result: noconfigure:3665: checking for gccconfigure:3681: found /usr/bin/gccconfigure:3692: result: gccconfigure:3921: checking for C compiler versionconfigure:3930: gcc --version >&5gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-4)Copyright (C) 2010 Free Software Foundation, Inc.This is free software; see the source for copying conditions. There is NOwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.configure:3941: $? = 0configure:3930: gcc -v >&5Using built-in specs.Target: x86_64-redhat-linuxConfigured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=Red Hat Bugzilla Main Page --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linuxThread model: posixgcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) configure:3941: $? = 0configure:3930: gcc -V >&5gcc: "-V" option must have argumentconfigure:3941: $? = 1configure:3930: gcc -qversion >&5gcc: unrecognized option "-qversion"gcc: no input filesconfigure:3941: $? = 1configure:3961: checking whether the C compiler worksconfigure:3983: gcc conftest.c >&5configure:3987: $? = 0configure:4035: result: yesconfigure:4038: checking for C compiler default output file nameconfigure:4040: result: a.outconfigure:4046: checking for suffix of executablesconfigure:4053: gcc -o conftest conftest.c >&5configure:4057: $? = 0configure:4079: result: configure:4101: checking whether we are cross compilingconfigure:4109: gcc -o conftest conftest.c >&5In file included from /usr/include/stdio.h:75,from conftest.c:11:/usr/include/libio.h:332: error: expected specifier-qualifier-list before "size_t"/usr/include/libio.h:364: error: expected declaration specifiers or "..." before "size_t"/usr/include/libio.h:373: error: expected declaration specifiers or "..." before "size_t"/usr/include/libio.h:495: error: expected "=", ",", ";", "asm" or "__attribute__" before "_IO_sgetn"In file included from conftest.c:11:/usr/include/stdio.h:318: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:324: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:336: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:343: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:385: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:387: error: format string argument not a string type/usr/include/stdio.h:389: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:391: error: format string argument not a string type/usr/include/stdio.h:661: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:664: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:674: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:704: error: expected "=", ",", ";", "asm" or "__attribute__" before "fread"/usr/include/stdio.h:710: error: expected "=", ",", ";", "asm" or "__attribute__" before "fwrite"/usr/include/stdio.h:732: error: expected "=", ",", ";", "asm" or "__attribute__" before "fread_unlocked"/usr/include/stdio.h:734: error: expected "=", ",", ";", "asm" or "__attribute__" before "fwrite_unlocked"configure:4113: $? = 1configure:4120: ./conftest./configure: line 4122: ./conftest: No such file or directoryconfigure:4124: $? = 127configure:4131: error: in `/root/msk/py_workspace/py_setup/Python-3.4.4":configure:4133: error: cannot run C compiled programs.If you meant to cross compile, use `--host".See `config.log" for more details## ---------------- #### Cache variables. #### ---------------- ##ac_cv_build=x86_64-unknown-linux-gnuac_cv_env_CC_set=ac_cv_env_CC_value=ac_cv_env_CFLAGS_set=ac_cv_env_CFLAGS_value=ac_cv_env_CPPFLAGS_set=ac_cv_env_CPPFLAGS_value=ac_cv_env_CPP_set=ac_cv_env_CPP_value=ac_cv_env_LDFLAGS_set=ac_cv_env_LDFLAGS_value=ac_cv_env_LIBS_set=ac_cv_env_LIBS_value=ac_cv_env_MACHDEP_set=ac_cv_env_MACHDEP_value=ac_cv_env_PKG_CONFIG_LIBDIR_set=ac_cv_env_PKG_CONFIG_LIBDIR_value=ac_cv_env_PKG_CONFIG_PATH_set=ac_cv_env_PKG_CONFIG_PATH_value=ac_cv_env_PKG_CONFIG_set=ac_cv_env_PKG_CONFIG_value=ac_cv_env_build_alias_set=ac_cv_env_build_alias_value=ac_cv_env_host_alias_set=ac_cv_env_host_alias_value=ac_cv_env_target_alias_set=ac_cv_env_target_alias_value=ac_cv_host=x86_64-unknown-linux-gnuac_cv_prog_ac_ct_CC=gcc## ----------------- #### Output variables. #### ----------------- ##ABIFLAGS=""AR=""ARCH_RUN_32BIT=""ARFLAGS=""ASDLGEN=""BASECFLAGS=""BASECPPFLAGS=""BLDLIBRARY=""BLDSHARED=""BUILDEXEEXT=""CC="gcc"CCSHARED=""CFLAGS=""CFLAGSFORSHARED=""CFLAGS_NODIST=""CONFIGURE_MACOSX_DEPLOYMENT_TARGET=""CONFIG_ARGS=""CPP=""CPPFLAGS=""CXX=""DEFS=""DLINCLDIR=""DLLLIBRARY=""DYNLOADFILE=""ECHO_C=""ECHO_N="-n"ECHO_T=""EGREP=""ENSUREPIP=""EXEEXT=""EXPORT_MACOSX_DEPLOYMENT_TARGET="#"EXT_SUFFIX=""FRAMEWORKALTINSTALLFIRST=""FRAMEWORKALTINSTALLLAST=""FRAMEWORKINSTALLAPPSPREFIX=""FRAMEWORKINSTALLFIRST=""FRAMEWORKINSTALLLAST=""FRAMEWORKPYTHONW=""FRAMEWORKUNIXTOOLSPREFIX="/usr/local"GNULD=""GREP=""HAS_HG="no-repository"HAVE_GETHOSTBYNAME=""HAVE_GETHOSTBYNAME_R=""HAVE_GETHOSTBYNAME_R_3_ARG=""HAVE_GETHOSTBYNAME_R_5_ARG=""HAVE_GETHOSTBYNAME_R_6_ARG=""HGBRANCH=""HGTAG=""HGVERSION=""INSTALL_DATA=""INSTALL_PROGRAM=""INSTALL_SCRIPT=""INSTSONAME=""LDCXXSHARED=""LDFLAGS=""LDLAST=""LDLIBRARY=""LDLIBRARYDIR=""LDSHARED=""LDVERSION=""LIBC=""LIBFFI_INCLUDEDIR=""LIBM=""LIBOBJS=""LIBPL=""LIBRARY=""LIBS=""LIBTOOL_CRUFT=""LINKCC=""LINKFORSHARED=""LIPO_32BIT_FLAGS=""LN=""LTLIBOBJS=""MACHDEP="linux"MACHDEP_OBJS=""MAINCC=""MKDIR_P=""MULTIARCH=""NO_AS_NEEDED=""OBJEXT=""OPT=""OTHER_LIBTOOL_OPT=""PACKAGE_BUGREPORT="List of issues - Python tracker"PACKAGE_NAME="python"PACKAGE_STRING="python 3.4"PACKAGE_TARNAME="python"PACKAGE_URL=""PACKAGE_VERSION="3.4"PATH_SEPARATOR=":"PKG_CONFIG=""PKG_CONFIG_LIBDIR=""PKG_CONFIG_PATH=""PLATDIR="plat-linux"PY3LIBRARY=""PYTHON=""PYTHONFRAMEWORK=""PYTHONFRAMEWORKDIR="no-framework"PYTHONFRAMEWORKIDENTIFIER="org.python.python"PYTHONFRAMEWORKINSTALLDIR=""PYTHONFRAMEWORKPREFIX=""PYTHON_FOR_BUILD="./$(BUILDPYTHON) -E"PY_ENABLE_SHARED=""RANLIB=""READELF=""RUNSHARED=""SGI_ABI=""SHELL="/bin/sh"SHLIBS=""SHLIB_SUFFIX=""SIGNAL_OBJS=""SOABI=""SOVERSION="1.0"SRCDIRS=""TCLTK_INCLUDES=""TCLTK_LIBS=""THREADHEADERS=""THREADOBJ=""TRUE=""UNIVERSALSDK=""UNIVERSAL_ARCH_FLAGS=""USE_INLINE=""USE_SIGNAL_MODULE=""USE_THREAD_MODULE=""VERSION="3.4"_PYTHON_HOST_PLATFORM=""ac_ct_AR=""ac_ct_CC="gcc"ac_ct_CXX=""ac_ct_READELF=""bindir="${exec_prefix}/bin"build="x86_64-unknown-linux-gnu"build_alias=""build_cpu="x86_64"build_os="linux-gnu"build_vendor="unknown"datadir="${datarootdir}"datarootdir="${prefix}/share"docdir="${datarootdir}/doc/${PACKAGE_TARNAME}"dvidir="${docdir}"exec_prefix="NONE"host="x86_64-unknown-linux-gnu"host_alias=""host_cpu="x86_64"host_os="linux-gnu"host_vendor="unknown"htmldir="${docdir}"includedir="${prefix}/include"infodir="${datarootdir}/info"libdir="${exec_prefix}/lib"libexecdir="${exec_prefix}/libexec"localedir="${datarootdir}/locale"localstatedir="${prefix}/var"mandir="${datarootdir}/man"oldincludedir="/usr/include"pdfdir="${docdir}"prefix="NONE"program_transform_name="s,x,x,"psdir="${docdir}"sbindir="${exec_prefix}/sbin"sharedstatedir="${prefix}/com"sysconfdir="${prefix}/etc"target_alias=""## ----------- #### confdefs.h. #### ----------- ##/* confdefs.h */#define _GNU_SOURCE 1#define _NETBSD_SOURCE 1#define __BSD_VISIBLE 1#define _BSD_TYPES 1#define _DARWIN_C_SOURCE 1#define _XOPEN_SOURCE 700#define _XOPEN_SOURCE_EXTENDED 1#define _POSIX_C_SOURCE 200809Lconfigure: exit 1

configured是什么意思

configured 英[ku0259n"fu026aɡu0259d] 美[ku0259n"fu026aɡu0259d] v. 设定; 配置( configure的过去式和过去分词 ); 使成形; 使具一定形式; [例句]Available devices can be used and configured.可用的设备可以使用和配置。[其他] 原型: configure

Linux中./configure 没有那个文件或目录

看样子你这个是二进制的包,这就要求你熟悉mysql的使用和配置了。

可使用命令 configure 进入哪几种配置模式?

可以进入全局配置模式用户命令模式全局接口配置基本就这仨

Linux中./configure 没有那个文件或目录

./configure是源代码安装的第一步,主要的作用是对即将安装的软件进行配置,检查当前的环境是否满足要安装软件的依赖关系,但并不是所有的tar包都是源代码的包,楼主可以ls看看有没有configure这个文件,也许你下的是二进制的包,如果是二进制的包,解压后直接就能使用。二进制的mysql包,可以放到任意位置,所有的命令都是解压后目录的bin目录下,你要想在任意目录都能使用mysql的命令,需要把bin目录加到PATH环境变量中,比如你的mysql目录是/usr/local/mysql,你可以这样添加环境变量,vi~/.bash_profile在文件的最后面添加PATH=$PATH:/usr/local/mysql/binexportPATH然后执行source~/.bash_profile这样就可以在任意目录执行mysql的所有命令了

yum 怎么安装 configure

在编译R之前,需要通过yum安装以下几个程序:#yum install gcc-gfortran #否则报”configure: error: No F77 compiler found”错误#yum install gcc gcc-c++ #否则报”configure: error: C++ preprocessor “/lib/cpp” fails sanity check”错误#yum install readline-devel #否则报”–with-readline=yes (default) and headers/libs are not available”错误#yum install libXt-devel #否则报”configure: error: –with-x=yes (default) and X11 headers/libs are not available”错误然后下载源代码,编译[root@192 ~]# wget http://ftp.ctex.org/mirrors/CRAN/src/base/R-3/R-3.1.1.tar.gz--2014-08-29 23:45:18-- http://ftp.ctex.org/mirrors/CRAN/src/base/R-3/R-3.1.1.tar.gzResolving ftp.ctex.org... 159.226.47.4Connecting to ftp.ctex.org|159.226.47.4|:80... connected.HTTP request sent, awaiting response... 200 OKLength: 28606569 (27M) [application/x-gzip]Saving to: “R-3.1.1.tar.gz”100%[+++++++++++++++++++++++++++++++++++++=>] 28,606,569 9.86K/s in 1m 49s 2014-08-30 03:03:40 (6.78 KB/s) - “R-3.1.1.tar.gz” saved [28606569/28606569][root@192 ~]#tar zxvf R-3.1.1.tar.gzR-3.1.1/doc/manual/images/QQ.pngR-3.1.1/doc/html/about.htmlR-3.1.1/doc/html/favicon.icoR-3.1.1/doc/html/index-default.htmlR-3.1.1/doc/html/left.jpgR-3.1.1/doc/html/logo.jpgR-3.1.1/doc/html/logosm.jpgR-3.1.1/doc/html/Makefile.inR-3.1.1/doc/html/NEWS.2.htmlR-3.1.1/doc/html/NEWS.htmlR-3.1.1/doc/html/packages-head-utf8.htmlR-3.1.1/doc/html/R-admin.htmlR-3.1.1/doc/html/R.cssR-3.1.1/doc/html/resources.htmlR-3.1.1/doc/html/right.jpgR-3.1.1/doc/html/Search.htmlR-3.1.1/doc/html/SearchOn.htmlR-3.1.1/doc/html/up.jpg[root@192 ~]# cd R-3.1.1[root@192 ~]# ./configureR is now configured for x86_64-unknown-linux-gnu Source directory: . Installation directory: /usr/local C compiler: gcc -std=gnu99 -g -O2 Fortran 77 compiler: gfortran -g -O2 C++ compiler: g++ -g -O2 C++ 11 compiler: g++ -std=c++0x -g -O2 Fortran 90/95 compiler: gfortran -g -O2 Obj-C compiler: Interfaces supported: X11 External libraries: readline Additional capabilities: NLS Options enabled: shared BLAS, R profiling Recommended packages: yes configure: WARNING: you cannot build info or HTML versions of the R manualsconfigure: WARNING: you cannot build PDF versions of the R manualsconfigure: WARNING: you cannot build PDF versions of vignettes and help pages[root@192 R-3.1.1]# makemake[1]: Entering directory `/root/R-3.1.1/m4"make[1]: Nothing to be done for `R".make[1]: Leaving directory `/root/R-3.1.1/m4"make[1]: Entering directory `/root/R-3.1.1/tools"make[1]: Nothing to be done for `R".make[1]: Leaving directory `/root/R-3.1.1/tools"make[1]: Entering directory `/root/R-3.1.1/doc"trying to compile and link a JNI progamdetected JNI cpp flags :detected JNI linker flags : -L$(JAVA_HOME)/lib/amd64/server -ljvmmake[2]: Entering directory `/tmp/Rjavareconf.9RgDis"gcc -std=gnu99 -I/root/R-3.1.1/include -DNDEBUG -I/usr/local/include -fpic -g -O2 -c conftest.c -o conftest.oconftest.c:1:17: error: jni.h: No such file or directoryconftest.c: In function ‘main":conftest.c:4: warning: implicit declaration of function ‘JNI_CreateJavaVM"make[2]: *** [conftest.o] Error 1make[2]: Leaving directory `/tmp/Rjavareconf.9RgDis"Unable to compile a JNI programJAVA_HOME : /usr/lib/jvm/Java-1.7.0-openjdk-1.7.0.65.x86_64/jreJava library path:JNI cpp flags :JNI linker flags :Updating Java configuration in /root/R-3.1.1Done. make[1]: Leaving directory `/root/R-3.1.1" [root@192 R-3.1.1]# make installinstalling packages ... building HTML index ...make[2]: Leaving directory `/root/R-3.1.1/src/library"make[1]: Leaving directory `/root/R-3.1.1/src"make[1]: Entering directory `/root/R-3.1.1/tests"make[1]: Nothing to be done for `install".make[1]: Leaving directory `/root/R-3.1.1/tests"到此,安装完毕!测试:[root@192 R-3.1.1]# R R version 3.1.1 (2014-07-10) -- "Sock it to Me"Copyright (C) 2014 The R Foundation for Statistical ComputingPlatform: x86_64-unknown-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY.You are welcome to redistribute it under certain conditions.Type "license()" or "licence()" for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors.Type "contributors()" for more information and"citation()" on how to cite R or R packages in publications. Type "demo()" for some demos, "help()" for on-line help, or"help.start()" for an HTML browser interface to help.Type "q()" to quit R.> head(iris) Sepal.Length Sepal.Width Petal.Length Petal.Width Species1 5.1 3.5 1.4 0.2 setosa2 4.9 3.0 1.4 0.2 setosa3 4.7 3.2 1.3 0.2 setosa4 4.6 3.1 1.5 0.2 setosa5 5.0 3.6 1.4 0.2 setosa6 5.4 3.9 1.7 0.4 setosa尝试安装shiny包> install.packages("shiny")Selection: 20also installing the dependencies ‘Rcpp", ‘bitops", ‘httpuv", ‘caTools", ‘RJSONIO", ‘xtable", ‘digest", ‘htmltools" trying URL "http://mirror.bjtu.edu.cn/cran/src/contrib/Rcpp_0.11.2.tar.gz"Content type "application/octet-stream" length 2004313 bytes (1.9 Mb)opened URL==================================================downloaded 8734 bytes trying URL "http://mirror.bjtu.edu.cn/cran/src/contrib/httpuv_1.3.0.tar.gz"Content type "application/octet-stream" length 423739 bytes (413 Kb)opened URL> library(shiny)> runExample("01_hello") Listening on http://127.0.0.1:7964测试完毕!

./configure 是什么意思?是不是得在哪个特定的目录下用?

./configure是源代码安装的第一步,主要的作用是对即将安装的软件进行配置,检查当前的环境是否满足要安装软件的依赖关系,但并不是所有的tar包都是源代码的包,楼主可以ls看看有没有configure这个文件,也许你下的是二进制的包,如果是二进制的包,解压后直接就能使用。具体如下:1、简介Linux操作系统是基于UNIX操作系统发展而来的一种克隆系统,它诞生于1991 年的 [Linux桌面] 10 月5 日(这是第一次正式向外公布的时间)。以后借助于Internet网络,并通过全世界各地计算机爱好者的共同努力,已成为今天世界上使用最多的一种UNIX 类操作系统,并且使用人数还在迅猛增长。2、基本信息Linux[2]操作系统是UNIX操作系统的一种克隆系统,它诞生linux系统于1991 年的10 月5 日(这是第一次正式向外公布的时间)。以后借助于Internet网络,并通过全世界各地计算机爱好者的共同努力,已成为今天世界上使用最多的一种UNIX 类操作系统,并且使用人数还在迅猛增长。3、分区规定设备管理在 Linux 中,每一个硬件设备都映射到一个系统的文件,对于硬盘、光驱等,IDE 或 SCSI 设备也不例外。Linux 把各种 IDE 设备分配了一个由 hd 前缀组成的文件;而对于各种 SCSI 设备,则分配了一个由 sd 前缀组成的文件。

Linux系统中如何执行“./configure”命令?

到要编译的 文件所在文件夹,输入configure -h。一般来说默认参数就是虽然不是最佳但一般都可以用。

configure运行后怎么全是no

你解压了后要进入那个目录里面再执行./configure...可以看看README或INSTALL文件...有些他没有configure的..像我安装的新氧主题包什么的..里面有相关的安装文件..有点像是批处理文件..不要你执行./configure make&makeinstall ..他是直接执行./install什么的就可全部安装了..当然好多还是要./configue make&make install..还是那句话看看REAMDE..里面是安装说明

configure错误2

如果您将软件包安装在非标准位置,则必须告诉configure脚本在哪里可以找到软件包。举个例子,实际情况你自我判断:如果您将HDF5安装在中/usr/local/hdf5,那么我假设您的意思是如果您将软件包安装在非标准位置,则必须告诉configure脚本在哪里可以找到软件包。举个例子,实际情况你自我判断:如果您将HDF5安装在中/usr/local/hdf5,那么我假设您的意思是I/usr/local/hdf5/include”告诉编译器在哪里可以找到它们。

linux下configure不成功

configure失败可能是依赖缺失,环境不支持等原因具体的原因一般会打印出来,根据输出的错误信息,具体判断错误原因,只说不成功,可能的原因太多,无法具体回答

linux下安装文件总是提示./configure --prefix: 没有那个文件或目录

你要cd到源代码放的目录然后再./configure知道吗?

如何查看Apache的configure编译参数

`configure" configures this package to adapt to many kinds of systems.`configure" 配置这个包来适合多数系统.Usage: ./configure [OPTION]… [VAR=VALUE]…语法: ./configure [选项]… [变量=值]…To assign environment variables (e.g., CC, CFLAGS…), specify them as VAR=VALUE. See below for descriptions of some of the useful variables.配置环境变量(例如,CC,CFLAGS),格式为VAR=VALUE. 看下面对这些可用变量的说明.Defaults for the options are specified in brackets.选项的默认值括在方括号之中.Configuration:配置: -h, –help display this help and exit 显示这个帮助并退出 –help=short display options specific to this package 显示这个包的详细选项 –help=recursive display the short help of all the included packages 显示所有包括的包的帮助信息 -V, –version display version information and exit 显示版本信息并退出 -q, –quiet, –silent do not print `checking…" messages 不打印"检查"信息 –cache-file=FILE cache test results in FILE [disabled] 存储测试信息到文件中 [disabled] -C, –config-cache alias for `–cache-file=config.cache" `–cache-file=config.cache"的别名 -n, –no-create do not create output files 不生成输出文件 –srcdir=DIR find the sources in DIR [configure dir or `.."] 在DIR查找代码Installation directories:安装目录: –prefix=PREFIX install architecture-independent files in PREFIX 安装路径 [/usr/local/apache2] –exec-prefix=EPREFIX install architecture-dependent files in EPREFIX 执行文件安装路径 [PREFIX]By default, `make install" will install all the files in `/usr/local/apache2/bin", `/usr/local/apache2/lib" etc. You can specify an installation prefix other than `/usr/local/apache2′ using `–prefix",for instance `–prefix=$HOME".默认情况下,"make install"安装所有的文件在 `/usr/local/apache2/bin", `/usr/local/apache2/lib" 等等.你可以指定一个安装前缀 ‘–prefix"选项来改变安装位置,例如 `–prefix=$HOME".For better control, use the options below.更详细的配置,使用下面的选项.Fine tuning of the installation directories:调整安装目录的选项: –bindir=DIR user executables [EPREFIX/bin] –sbindir=DIR system admin executables [EPREFIX/sbin] –libexecdir=DIR program executables [EPREFIX/libexec] –sysconfdir=DIR read-only single-machine data [PREFIX/etc] –sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] –localstatedir=DIR modifiable single-machine data [PREFIX/var] –libdir=DIR object code libraries [EPREFIX/lib] –includedir=DIR C header files [PREFIX/include] –oldincludedir=DIR C header files for non-gcc [/usr/include] –datarootdir=DIR read-only arch.-independent data root [PREFIX/share] –datadir=DIR read-only architecture-independent data [DATAROOTDIR] –infodir=DIR info documentation [DATAROOTDIR/info] –localedir=DIR locale-dependent data [DATAROOTDIR/locale] –mandir=DIR man documentation [DATAROOTDIR/man] –docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] –htmldir=DIR html documentation [DOCDIR] –dvidir=DIR dvi documentation [DOCDIR] –pdfdir=DIR pdf documentation [DOCDIR] –psdir=DIR ps documentation [DOCDIR]System types:系统类型: –build=BUILD configure for building on BUILD [guessed] –host=HOST cross-compile to build programs to run on HOST [BUILD] –target=TARGET configure for building compilers for TARGET [HOST]Optional Features:可选的功能: –disable-FEATURE do not include FEATURE (same as –enable-FEATURE=no) –enable-FEATURE[=ARG] include FEATURE [ARG=yes] –enable-layout=LAYOUT –enable-v4-mapped Allow IPv6 sockets to handle IPv4 connections –enable-exception-hook Enable fatal exception hook –enable-maintainer-mode Turn on debugging and compile time warnings –enable-pie Build httpd as a Position Independent Executable –enable-modules=MODULE-LIST Space-separated list of modules to enable | “all” | “most” –enable-mods-shared=MODULE-LIST Space-separated list of shared modules to enable | “all” | “most” –disable-authn-file file-based authentication control –enable-authn-dbm DBM-based authentication control –enable-authn-anon anonymous user authentication control –enable-authn-dbd SQL-based authentication control –disable-authn-default authentication backstopper –enable-authn-alias auth provider alias –disable-authz-host host-based authorization control –disable-authz-groupfile ‘require group" authorization control –disable-authz-user ‘require user" authorization control –enable-authz-dbm DBM-based authorization control –enable-authz-owner ‘require file-owner" authorization control –enable-authnz-ldap LDAP based authentication –disable-authz-default authorization control backstopper –disable-auth-basic basic authentication –enable-auth-digest RFC2617 Digest authentication –enable-isapi isapi extension support –enable-file-cache File cache –enable-cache dynamic file caching –enable-disk-cache disk caching module –enable-mem-cache memory caching module –enable-dbd Apache DBD Framework –enable-bucketeer buckets manipulation filter –enable-dumpio I/O dump filter –enable-echo ECHO server –enable-example example and demo module –enable-case-filter example uppercase conversion filter –enable-case-filter-in example uppercase conversion input filter –enable-ext-filter external filter module –disable-include Server Side Includes –disable-filter Smart Filtering –disable-charset-lite character set translation –enable-charset-lite character set translation –enable-deflate Deflate transfer encoding support –enable-ldap LDAP caching and connection pooling services –disable-log-config logging configuration –enable-log-forensic forensic logging –enable-logio input and output logging –disable-env clearing/setting of ENV vars –enable-mime-magic automagically determining MIME type –enable-cern-meta CERN-type meta files –enable-expires Expires header control –enable-headers HTTP header control –enable-ident RFC 1413 identity check –enable-usertrack user-session tracking –enable-unique-id per-request unique ids –disable-setenvif basing ENV vars on headers –enable-version determining httpd version in config files –enable-proxy Apache proxy module –enable-proxy-connect Apache proxy CONNECT module –enable-proxy-ftp Apache proxy FTP module –enable-proxy-http Apache proxy HTTP module –enable-proxy-ajp Apache proxy AJP module –enable-proxy-balancer Apache proxy BALANCER module –enable-ssl SSL/TLS support (mod_ssl) –enable-distcache Select distcache support in mod_ssl –enable-optional-hook-export example optional hook exporter –enable-optional-hook-import example optional hook importer –enable-optional-fn-import example optional function importer –enable-optional-fn-export example optional function exporter –enable-static-support Build a statically linked version of the support binaries –enable-static-htpasswd Build a statically linked version of htpasswd –enable-static-htdigest Build a statically linked version of htdigest –enable-static-rotatelogs Build a statically linked version of rotatelogs –enable-static-logresolve Build a statically linked version of logresolve –enable-static-htdbm Build a statically linked version of htdbm –enable-static-ab Build a statically linked version of ab –enable-static-checkgid Build a statically linked version of checkgid –enable-static-htcacheclean Build a statically linked version of htcacheclean –enable-static-httxt2dbm Build a statically linked version of httxt2dbm –enable-http HTTP protocol handling –disable-mime mapping of file-extension to MIME –enable-dav WebDAV protocol handling –disable-status process/thread monitoring –disable-autoindex directory listing –disable-asis as-is filetypes –enable-info server information –enable-suexec set uid and gid for spawned processes –disable-cgid CGI scripts –enable-cgi CGI scripts –disable-cgi CGI scripts –enable-cgid CGI scripts –enable-dav-fs DAV provider for the filesystem –enable-dav-lock DAV provider for generic locking –enable-vhost-alias mass virtual hosting module –disable-negotiation content negotiation –disable-dir directory request handling –enable-imagemap server-side imagemaps –disable-actions Action triggering on requests –enable-speling correct common URL misspellings –disable-userdir mapping of requests to user-specific directories –disable-alias mapping of requests to different filesystem parts –enable-rewrite rule based URL manipulation –enable-so DSO capabilitySome influential environment variables:一些有影响的环境变量: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a nonstandard directory <lib dir> CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I<include dir> if you have headers in a nonstandard directory <include dir> CPP C preprocessor

php 安装的./configure在哪

首先要搞清楚:是PHP与APACHE相对独立的,APACHE本身不支持PHP脚本解析,这就要用PHP来解析,配置文件是APACHE文件夹下的confhppd.conf,你可以参考模块化安装,也可以使用CGI模式你可以去后盾人平台看一下,里面的东西不错

linux源码包安装php中的./configure选项详解

1、Linux下,默认是在/usr/local/bin/,假如你设置--prefix=/usr/local/php那么就在/usr/local/php/bin/2、sbin道理相同。sbin的意思就是server bin3、EPREFIX没用过4、如果要用2套版本,用prefix区分开不同的安装目录。php.ini默认在/usr/local/php/etc/

使用configure 时提示未找到命令,什么情况

你好,是不是输错命令了,我记得是config 后面没有ure1、确定你是在解压后的目录安装!2、你确定你所在的目录,有configure这个文件?如果没有,那么该包不是标准安装包,需要查看README文件,寻找安装帮助!

解压git后 没有configure怎么安装

可以使用autoconf 生成configure文件 再执行./configure (必须在Git文件夹下)

linux 安装包中 configure起什么

Configure脚本配置工具就是基础之一,它是autoconf的工具的基本应用。

linux 安装 .tgz 包下没有 configure 文件 只有 configure.ac文件 怎么安装啊

查看 README 文件,里面有介绍的.

mac里有configure吗

我举例看面命令:./configure --prefix=/usr/local/apache2 --enable-module=so ./configure面少空格追问看-prefix短杠应该二短杠

linux configure 指定依赖项目录

ls正解,可以加入参数选项

linux安装软件时下如何运行configure

他说你的编译器无法正常使用,你看看那你的gcc是不是安装了

c程序中的configure脚本有什么作用

获取环境信息,检查依赖库,生成makefile等比如各个编译器的特性该不该用,要不要使用某些库等configure只是习惯

configure命令未找到怎么办?

有源代码的软件才需要configure,这个没有源代码。解压出来的应该有执行文件,ls一下找找,直接运行就OK了

configure的时候怎么指定搜索路径

./configure是源代码安装的第一步,主要的作用是对即将安装的软件进行配置,检查当前的环境是否满足要安装软件的依赖关系,但并不是所有的tar包都是源代码的包,楼主可以ls看看有没有configure这个文件,也许你下的是二进制的包,如果是二进制的包,解压后直接就能使用。二进制的mysql包,可以放到任意位置,所有的命令都是解压后目录的bin目录下,你要想在任意目录都能使用mysql的命令,需要把bin目录加到PATH环境变量中,比如你的mysql目录是/usr/local/mysql,你可以这样添加环境变量,vi~/.bash_profile在文件的最后面添加PATH=$PATH:/usr/local/mysql/binexportPATH然后执行source~/.bash_profile这样就可以在任意目录执行mysql的所有命令了

MATLAB神经网络工具箱configure函数使用?

你想要什么解释?这句话是在为你的神经网络(net)配置每个RTDX缓冲channel中的字节位数(p)和缓冲channel的数量(t)。RTDX(real time data exchange)实时数据交换。如果你懂低级计算机编程语言的话应该很好理解。这句话基本可以大致理解为为你的神经网络划出一个计算的空间。神经网络算法本身极其复杂,甚至有很多conference是专门讨论该算法的。matlab作为高级程序语言,出发点是把所有算法打包好使用户方便使用。要做到这个对一些基础算法来说并不难。但是神经网络本身就是一大堆算法的集成,简单打包算法不太可能。使用这个工具箱你只需要知道大致原理,再找几个模板依样画葫芦练习一下就可以了,没必要全弄明白

怎么清除configure之后生成的文件?

make cleanx0dx0a清除上次的make命令所产生的object文件(后缀为“.o”的文件)及可执行文件。x0dx0amake distcleanx0dx0a类似make clean,但同时也将configure生成的文件全部删除掉,包括Makefile。

configure是什么意思车上的

在汽车上是系统设置菜单的意思。车上按钮分别表示的意思是:SRCE 在收音机、DVD、CD、AUX之间切换按一下切一次,bano收音机,tone音质调节(高中低音、爵士摇滚等)。车带来交通的便捷性,对距离的认识也变化了,在讲究效率和时间就是金钱的时代,交通的便捷性给人类带来巨大的益处,减少了不必要的赶路时间。我国的第一辆汽车于1929年5月在沈阳问世,由张学良将军掌管的辽宁迫击炮厂制造。张学良让民生工厂厂长李宜春从美国购进“瑞雪”号整车一辆,作为样车。

linux下configure配置问题?

这要看 no 是什么,因为 configure 并不是只有配置的功能,他还负责检测当前环境是否符合编译这个软件的要求。

configure后出现>怎么回事

交互式状态。configure命令后出现>号表示当前处于交互式状态,它等待用户输入一些配置参数,这些参数经过编译之后会影响程序的运行结果。输入完所有参数之后再按Enter键就可以结束配置,编译程序,运行make命令编译安装程序。

Linux中的./configure

源码的安装一般由3个步骤组成:配置(configure)、编译(make)、安装(make install)。Configure是一个可执行脚本,它有很多选项,在待安装的源码路径下使用命令./configure –help输出详细的选项列表。其中--prefix选项是配置安装的路径,如果不配置该选项,安装后可执行文件默认放在/usr /local/bin,库文件默认放在/usr/local/lib,配置文件默认放在/usr/local/etc,其它的资源文件放在/usr /local/share,比较凌乱。如果配置--prefix,如:./configure --prefix=/usr/local/test可以把所有资源文件放在/usr/local/test的路径中,不会杂乱。用了—prefix选项的另一个好处是卸载软件或移植软件。当某个安装的软件不再需要时,只须简单的删除该安装目录,就可以把软件卸载得干干净净;移植软件只需拷贝整个目录到另外一个机器即可(相同的操作系统)。当然要卸载程序,也可以在原来的make目录下用一次make uninstall,但前提是make文件指定过uninstall。有一个Linux命令大全,里面关于Linux命令介绍的还挺全面,你可以参考查看:

执行configure命令常用配置

GNU编码标准中规定的一些变量,包括: 用来声明安装的目录,下图给出了其中一部分 可以通过configure的参数来配置以上参数,例如: make和make install命令的含义见 这里 则生成的文件会被安装到~/usr/开头的目录下,prefix的缺省值是/usr/local。 例如: 上述命令规定C文件用gcc-3命令编译, -I 指定头文件目录, -L 指定链接库的文件 则生成名字为test-hello的可执行文件 其他的配置参数用法可以通过 .configure --help 来查看用法

configured是什么意思

configure是配置的意思,这是他的过去式,

configure的中文意思

configure 基本解释:v. 配置;设定;使成形;使具一定形式。configure 变化形式:第三人称单数: configures过去式: configured过去分词: configured现在分词: configuringconfigure 用法和例句:Configure and use shadow copy in microsoft windows vista ?配置和使用微软windowsvista的影像拷贝?This procedure will configure the oracle cluster software on both nodes .这个过程将会在两个节点上配置oracle集群软件。The second thing that we have to do is configure our databases .第二个要配置的东西是我们的数据库。Getting started is easy . You can configure google sync directly from your device .使用起来是很简单的,你可以直接在你的移动设备里配置google同步程序。You can configure most s ystems to add this file automatically at the end of each message you send .你可将多数系统配置成在你所发送的每一条消息的最后自动加上这个文件。

configure是什么意思

configure英[ku0259nu02c8fu026agu0259(r)]美[ku0259nu02c8fu026agju0259r]v.配置; 设定; 使成形; 使具一定形式网络组态; 设置; 安装第三人称单数:configures现在分词:configuring过去式:configured过去分词:configured形近词:transfiguredisfigurerefigure数据来源:金山词霸双语例句柯林斯词典英英释义百度百科百度知道新1How easy was it to configure the software?配置这个软件容易吗?

./configure --prefix=/usr 什么意思

配置-前缀=用户这应该是网页链接到数据库调用用户信息吧
 1 2  下一页  尾页