当前位置: 技术问答>linux和unix
如何执行一个script?
来源: 互联网 发布时间:2015-12-10
本文导语: 有一个开源项目readme中这样说道: To compile the library on a unix-like platform, just start the configure script. This should generate a makefile which you can use to start building the library using 'make'. 的确有一个cinfigure文件...
有一个开源项目readme中这样说道:
To compile the library on a unix-like platform, just start the configure
script. This should generate a makefile which you can use to start
building the library using 'make'.
的确有一个cinfigure文件存在
于是我在当前目录下执行
configure
或者
./configure
或者
./configure;make
都没有成功!!!!
请问该如何执行这个configure文件?????????
我在FC4上运行!
To compile the library on a unix-like platform, just start the configure
script. This should generate a makefile which you can use to start
building the library using 'make'.
的确有一个cinfigure文件存在
于是我在当前目录下执行
configure
或者
./configure
或者
./configure;make
都没有成功!!!!
请问该如何执行这个configure文件?????????
我在FC4上运行!
|
chmod 755 configure
./configure
./configure
|
i_noname(晚九朝五) 说得对,很可能是权限不够.
|
chmod +x configure
|
chmod +x configure