そのため、アプリケーションでLZOを使用しようとしています。これが私がそれをどのように含めたかです:
#include "lzoconf.h"
#include "lzodefs.h"
#include "lzo1x.h"
/* portability layer */
static const char *progname = NULL;
#define WANT_LZO_MALLOC 1
#define WANT_XMALLOC 1
#include "portab.h"
次に、アプリケーションで次のことを行います。
if (lzo_init() != LZO_E_OK)
{
printf("internal error - lzo_init() failed !!!\n");
printf("(this usually indicates a compiler bug - try recompiling\nwithout optimizations, and enable '-DLZO_DEBUG' for diagnostics)\n");
return 4;
}
コンパイルは問題ありません。コンパイル中にエラーや警告はありません。
ただし、アプリケーションを実行しようとすると、2つのエラーが発生します。
/home/richard/client/src/portab.h:145: undefined reference to `__lzo_align_gap'
portab.hのこの行を指すもの:
if (__lzo_align_gap(p, (lzo_uint) sizeof(lzo_align_t)) != 0)
{
printf("%s: C library problem: malloc() returned mis-aligned pointer!\n", progname);
exit(1);
}
return p;
そして私のアプリケーションでは:
/home/richard/client/src/main.cc:108: undefined reference to `__lzo_init_v2'
これは次のことを示しています。
if (lzo_init() != LZO_E_OK)
{
printf("internal error - lzo_init() failed !!!\n");
printf("(this usually indicates a compiler bug - try recompiling\nwithout optimizations, and enable '-DLZO_DEBUG' for diagnostics)\n");
return 4;
}
ソースディレクトリ内にすべてのヘッダーファイルがあります。
config.h
lzo1x.h
lzoconf.h
lzodefs.h
miniacc.h
portab.h
portab_a.h
私は何が間違っているのですか?
私はAnjutaideのUbuntu10.10でアプリケーションをコンパイルしています。