首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在Windows上生成libplines-stubs-0.3错误

在Windows上生成libplines-stubs-0.3错误
EN

Stack Overflow用户
提问于 2016-06-08 10:14:02
回答 1查看 279关注 0票数 0

我正试图在具有MinGW和MSys环境的Windows机器上编译libplins-stubs-0.3(用于vaapi)。我已经在MinGW中安装了mingw32-plins-w32dev包(版本2.9.1-1)。

现在,当我试图编译file线程-stubs-0.3(只有一个文件名为stubs.c)时,我得到了一个相互冲突的类型错误:

代码语言:javascript
复制
make  all-am
make[1]: Entering directory `/c/Users/Pawan/Downloads/Compressed/libpthread-stubs-0.3/libpthread-stubs-0.3'
/bin/sh ./libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.     -g -O2  -MT stubs.lo -MD -MP -MF .deps/stubs.Tpo -c -o stubs.lo stubs.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -g -O2  -MT stubs.lo -MD -MP -MF .deps/stubs.Tpo -c stubs.c  -DDLL_EXPORT -DPIC -o .libs/stubs.o

stubs.c:36:5: error: conflicting types for 'pthread_self'
 int pthread_self() __attribute__ ((weak, alias ("__pthread_zero_stub")));
     ^
In file included from stubs.c:29:0:
c:\mingw\include\pthread.h:955:37: note: previous declaration of 'pthread_self' was here
 PTW32_DLLPORT pthread_t PTW32_CDECL pthread_self (void);
                                     ^

stubs.c:153:5: error: conflicting types for 'pthread_exit'
 int pthread_exit() __attribute__ ((weak, alias ("__pthread_exit_stub")));
     ^
In file included from stubs.c:29:0:
c:\mingw\include\pthread.h:950:32: note: previous declaration of 'pthread_exit' was here
 PTW32_DLLPORT void PTW32_CDECL pthread_exit (void *value_ptr);
                                ^
stubs.c:162:5: warning: 'pthread_equal' redeclared without dllimport attribute: previous dllimport ignored [-Wattributes]
 int pthread_equal() __attribute__ ((weak, alias ("__pthread_equal_stub")));
     ^
stubs.c: In function '__pthread_equal_stub':
stubs.c:187:16: error: invalid operands to binary == (have 'pthread_t' and 'pthread_t')
     return (t1 == t2);
                ^
make[1]: *** [stubs.lo] Error 1
make[1]: Leaving directory `/c/Users/Pawan/Downloads/Compressed/libpthread-stubs-0.3/libpthread-stubs-0.3'
make: *** [all] Error 2

现在,当我在文件顶部注释#include <pthread.h>并将其放入ifndef中时(因为如果没有,就会得到一个错误:error: unknown type name 'pthread_t',这是显而易见的),我得到了与上面相同的错误:

代码语言:javascript
复制
#ifdef NEED_EQUAL_STUB
#include <pthread.h>
static int __pthread_equal_stub(pthread_t t1, pthread_t t2)
{
    return (t1 == t2);
}
#endif

编辑: Stubs.c文件代码

代码语言:javascript
复制
#define HAVE_STRUCT_TIMESPEC

//#include <pthread.h>
#include <stdlib.h>
#include "config.h"

#ifndef HAVE_PTHREAD_SELF
#define NEED_ZERO_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_self() __attribute__ ((weak, alias ("__pthread_zero_stub")));
# else
#  pragma weak pthread_self = __pthread_zero_stub
# endif
#endif

#ifndef HAVE_PTHREAD_MUTEX_INIT
#define NEED_ZERO_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_mutex_init() __attribute__ ((weak, alias ("__pthread_zero_stub")));
# else
#  pragma weak pthread_mutex_init = __pthread_zero_stub
# endif
#endif

#ifndef HAVE_PTHREAD_MUTEX_DESTROY
#define NEED_ZERO_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_mutex_destroy() __attribute__ ((weak, alias ("__pthread_zero_stub")));
# else
#  pragma weak pthread_mutex_destroy = __pthread_zero_stub
# endif
#endif

#ifndef HAVE_PTHREAD_MUTEX_LOCK
#define NEED_ZERO_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_mutex_lock() __attribute__ ((weak, alias ("__pthread_zero_stub")));
# else
#  pragma weak pthread_mutex_lock = __pthread_zero_stub
# endif
#endif

#ifndef HAVE_PTHREAD_MUTEX_UNLOCK
#define NEED_ZERO_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_mutex_unlock() __attribute__ ((weak, alias ("__pthread_zero_stub")));
# else
#  pragma weak pthread_mutex_unlock = __pthread_zero_stub
# endif
#endif

#ifndef HAVE_PTHREAD_COND_INIT
#define NEED_ZERO_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_cond_init() __attribute__ ((weak, alias ("__pthread_zero_stub")));
# else
#  pragma weak pthread_cond_init = __pthread_zero_stub
# endif
#endif

#ifndef HAVE_PTHREAD_COND_DESTROY
#define NEED_ZERO_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_cond_destroy() __attribute__ ((weak, alias ("__pthread_zero_stub")));
# else
#  pragma weak pthread_cond_destroy = __pthread_zero_stub
# endif
#endif

#ifndef HAVE_PTHREAD_CONDATTR_INIT
#define NEED_ZERO_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_condattr_init() __attribute__ ((weak, alias ("__pthread_zero_stub")));
# else
#  pragma weak pthread_condattr_init = __pthread_zero_stub
# endif
#endif

#ifndef HAVE_PTHREAD_CONDATTR_DESTROY
#define NEED_ZERO_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_condattr_destroy() __attribute__ ((weak, alias ("__pthread_zero_stub")));
# else
#  pragma weak pthread_condattr_destroy = __pthread_zero_stub
# endif
#endif

#ifndef HAVE_PTHREAD_COND_WAIT
#define NEED_ABORT_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_cond_wait() __attribute__ ((weak, alias ("__pthread_abort_stub")));
# else
#  pragma weak pthread_cond_wait = __pthread_abort_stub
# endif
#endif

#ifndef HAVE_PTHREAD_COND_TIMEDWAIT
#define NEED_ABORT_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_cond_timedwait() __attribute__ ((weak, alias ("__pthread_abort_stub")));
# else
#  pragma weak pthread_cond_timedwait = __pthread_abort_stub
# endif
#endif

#ifndef HAVE_PTHREAD_COND_SIGNAL
#define NEED_ZERO_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_cond_signal() __attribute__ ((weak, alias ("__pthread_zero_stub")));
# else
#  pragma weak pthread_cond_signal = __pthread_zero_stub
# endif
#endif

#ifndef HAVE_PTHREAD_COND_BROADCAST
#define NEED_ZERO_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_cond_broadcast() __attribute__ ((weak, alias ("__pthread_zero_stub")));
# else
#  pragma weak pthread_cond_broadcast = __pthread_zero_stub
# endif
#endif

#ifndef HAVE_PTHREAD_EXIT
#define NEED_EXIT_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_exit() __attribute__ ((weak, alias ("__pthread_exit_stub")));
# else
#  pragma weak pthread_exit = __pthread_exit_stub
# endif
#endif

#ifndef HAVE_PTHREAD_EQUAL
#define NEED_EQUAL_STUB
# ifdef SUPPORT_ATTRIBUTE_ALIAS
int pthread_equal() __attribute__ ((weak, alias ("__pthread_equal_stub")));
# else
#  pragma weak pthread_equal = __pthread_equal_stub
# endif
#endif

#ifdef NEED_ZERO_STUB
static int __pthread_zero_stub()
{
    return 0;
}
#endif

#ifdef NEED_ABORT_STUB
static int __pthread_abort_stub()
{
    abort();
}
#endif

#ifdef NEED_EQUAL_STUB
//#define HAVE_STRUCT_TIMESPEC
#include <pthread.h>
static int __pthread_equal_stub(pthread_t t1, pthread_t t2)
{
    return (t1 == t2);
}
#endif

#ifdef NEED_EXIT_STUB
static void __pthread_exit_stub(void *ret)
{
    exit(EXIT_SUCCESS);
}
#endif
EN

回答 1

Stack Overflow用户

发布于 2016-07-08 18:50:50

我无法重现您的错误,但是(我认为)成功地安装了stubs线程-stubs-0.3。我在使用64位版本的msys和mingw。

我从本网站下载了libpthreads stubs-0.3,使用tar -xzf将其解压缩到msys中的主文件夹,cd被放入文件夹,然后执行./configure --prefix=/usr,然后是make,然后是make install

我曾经使用过error: conflicting types for ...error: previous declaration for ...,这是因为我在一个地方包含了mingw的ptens.h,而在其他地方则包含了不同版本的ptens.h。

如果所有其他操作都失败了,请从头开始重新安装mingw和from线程-stubs-0.3。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/37699603

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档