免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 5185 | 回复: 2
打印 上一主题 下一主题

[系统管理] cmake 软件出错,求证原因!!!!!! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-11-16 16:49 |只看该作者 |倒序浏览
今天编译以个叫szarp的组态软件(Linux环境下的),其中需要lua支持,但是我在编译了lua之后还是出现以下错误

-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Generating consts...
-- Found Flex: /usr/bin/flex
-- Found libSzarp:
-- Could NOT find Lua51  (missing:  LUA_LIBRARIES)
-- checking for module 'libxml-2.0'
--   found libxml-2.0, version 2.7.6
-- Could NOT find LibXml2  (missing:  LIBXML2_LIBRARIES)
-- Found Flex: /usr/bin/flex
-- Found Bison: /usr/bin/bison
-- Found libSzarp:
-- Found libSzarp2:
-- Found wxcommon:
-- Could NOT find Lua51  (missing:  LUA_LIBRARIES)
-- Could NOT find LibXml2  (missing:  LIBXML2_LIBRARIES)
CMake Error at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:57 (MESSAGE):
  Could NOT find wxWidgets (missing: wxWidgets_FOUND)
Call Stack (most recent call first):
  /usr/share/cmake/Modules/FindwxWidgets.cmake:782 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
  wx/common/CMakeLists.txt:26 (FIND_PACKAGE)


-- Configuring incomplete, errors occurred!

可是我确定,机器中已经安装了lua5.1,其中也存在了liblua.a和lblua-5.1.so。。。。。。。
我该怎么办?????

我的操作系统:CentOs6.2

论坛徽章:
381
CU十二周年纪念徽章
日期:2014-01-04 22:46:58CU大牛徽章
日期:2013-03-13 15:32:35CU大牛徽章
日期:2013-03-13 15:38:15CU大牛徽章
日期:2013-03-13 15:38:52CU大牛徽章
日期:2013-03-14 14:08:55CU大牛徽章
日期:2013-04-17 11:17:19CU大牛徽章
日期:2013-04-17 11:17:32CU大牛徽章
日期:2013-04-17 11:17:37CU大牛徽章
日期:2013-04-17 11:17:42CU大牛徽章
日期:2013-04-17 11:17:47CU大牛徽章
日期:2013-04-17 11:17:52CU大牛徽章
日期:2013-04-17 11:17:56
2 [报告]
发表于 2012-11-16 16:56 |只看该作者
你看下软件的安装说明,看看有没有指定lua库的参数

论坛徽章:
0
3 [报告]
发表于 2012-11-17 09:40 |只看该作者
说明里没有提到需要安装这个库

一下是此软件中INSTALL文件的内容:

(C) 2007 Praterm S.A.
Pawe?Pa硊cha <pawel@praterm.com.pl>

$Id: INSTALL 4392 2007-09-13 16:08:54Z kg $

This files briefly describes installation of SZARP software. The simplest way
of instalation for end-users it to user Debian packages.
SZARP is known to compile and run on Debian (both 32 and 64-bits), Ubuntu
(tested some times ago and with minor problems) and Moxa ARM platform (only
server side). Some clients applications are cross-compiled for Windows.
All the development and testing is done on Debian, so you can run into some
problems with other distributions.

See also INSTALL.ARM and INSTALL.Windows for information about ARM and Windows
platforms.

1. Instalation from source.

SZARP uses autotools, but is deployed without configure scripts, so you need
automake, autoconf, libtool and pkg-config. The commands to build SZARP are:

# ./autogen.sh

This is invocation ot automake and autoconf, is should run without any error
messages. In case of errors, check if you have new versions of automake, autoconf,
libtool and pkg-config installed.

# ./configure

This is invocation of configure scipts. There are many options available, see

# ./conifgure --help

Configuration for Windows is described in INSTALL.Windows. There are
'--with-XXX' and '--without-XXX' options available to turn on/off optional
libraries. For example, to get server-only software (and get short compile time),
you can use '--without-x'.

By default all optional libraries are turned on. If some library is not found,
SZARP is configured without this library. At the end of configure run, there's
a report generated with information what libraries where found. To get full
funcionality, you must have all libraries. Be aware, that currently there are
no Debian packages for wx 2.8 - you can use packages available at
http://www.szarp.com.pl/debian.

If you plan to debug programs, you should change compilator options. By default
'-g' is used, but -O2 (optimization) fulls debugger. To get debugger-friendly
code type this before ./configure:

# export CFLAGS="-g"
# export CXXFLAGS="-g"

Now:

# make

This should compile everything. If there are errors, you have found a bug. But
if you're not using Debian etch/unstable, there's a little chance that we will
help you with this. Patches are welcome if they not brake Debian

# make doc

This creates html documentation. You need lot's of Docbook stuff installed for
this to work - ./configure should warn you about missing programs.

Now you can become root and type:

# make install

Default instalation directory is /opt/szarp. You can install SZARP under other
directory by using

# make DESTDIR=/tmp install

or by passing '--prefix' argument to ./configure.

To install programs without debugger information (smaller, faster binaries
but debugging not possible), you can use:

# make install-strip

To clean everything use:

# make clean

To get rid also of files generated by autotools, use:

# make maintainer-clean

or

# make cleanconfig

(old form from SZARP 2.1 version).


2. Installation from Debian packages.

This is the simplest and best supported method of instalation.
Add following line to /etc/apt/sources.list:

deb http://www.szarp.com.pl/debian unstable main

Then run:

# apt-get update

and one of the following:

# apt-get install szarp-server
# apt-get install szarp-terminal
# apt-get install szarp-viewer




我是按照他的安装步骤执行的,可是会返回错误,然后我看到他的目录结构中存在CMakeList.txt,我就像用cmake来安装,结果出现帖子问题回复 2# chenyx


   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP