`
mfcai
  • 浏览: 409188 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

mingw无法编译多线程程序的问题及解决

阅读更多
在linux环境下,用gedit+gcc方式学习一段时间的c语言,发现自己越来越佩服linux的牛人了。
居然不用IDE也能开发代码。我做不到,所以有回到了windows的怀抱。

mingw是windows版本的gnu c/c++工具集 主要包括编译器gcc,连接器make,调试器gdb
Eclipse是很好用的开发Java的IDE,CDT的全称是C/C++ Development Tools,是使Eclipse能够支持C/C++开发的插件。
本人使用的开发环境如下:
win7+eclipse +MinGW + CDT

本文的目的:
1)使用eclipse、MingW独构建Windows版的c/c++开发环境
2)编译并调通了一个多线程的程序
eclipse、MingW的安装此处不做重点。


1、配置C/C++开发环境
右击我的电脑,点属性->高级->环境变量。然后:
1)在PATH里加入C:\MinGW\bin
2)新建LIBRARY_PATH变量,值设为C:\MinGW\lib,这是标准库的位置。
3)新建C_INCLUDE_PATH变量,值设为C:\MinGW\include。
4)新建CPLUS_INCLUDE_PATH变量,值为C:\MinGW\include\c++\3.4.2;C:\MinGW\include\c++\3.4.2\mingw32;C:\MinGW\include\c++\3.4.2\backward;C:\MinGW\include


2、设置eclipse的环境变量
Eclipse的Project->Properties->C/C++ Build->Environment中去查看对应的PATH变量
主要是看有没有添加一个包含MinGW的bin目录的PATH变量。这个变量在创建工程的时候一般会自动添加。
但如果没有正确设置PATH变量,编译的时候就会报错说不能运行g++或者gcc。

3、设置多线程动态链接库
Project->Properties->C/C++Build->Settings->Tool Settings->GCC C++ Linker->Libraries
添加Libraries (-l): lpthread

4、一个简单的线程池的例子

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <pthread.h>
#include <assert.h>

typedef struct worker
{
  
    void *(*process) (void *arg);
    void *arg;
    struct worker *next;


} CThread_worker;


typedef struct
{
pthread_mutex_t queue_lock;
pthread_cond_t queue_ready;

     CThread_worker *queue_head;
    int shutdown;
     pthread_t *threadid;
  
    int max_thread_num;
  
    int cur_queue_size;


} CThread_pool;


int pool_add_worker (void *(*process) (void *arg), void *arg);
void *thread_routine (void *arg);


static CThread_pool *pool = NULL;
void
pool_init (int max_thread_num)
{
     pool = (CThread_pool *) malloc (sizeof (CThread_pool));


     pthread_mutex_init (&(pool->queue_lock), NULL);
     pthread_cond_init (&(pool->queue_ready), NULL);

     pool->queue_head = NULL;

     pool->max_thread_num = max_thread_num;
     pool->cur_queue_size = 0;

     pool->shutdown = 0;
     pool->threadid =
         (pthread_t *) malloc (max_thread_num * sizeof (pthread_t));
    int i = 0;
    for (i = 0; i < max_thread_num; i++)
     {
         pthread_create (&(pool->threadid[i]), NULL, thread_routine,
                 NULL);
     }
}


int
pool_add_worker (void *(*process) (void *arg), void *arg)
{
  
     CThread_worker *newworker =
         (CThread_worker *) malloc (sizeof (CThread_worker));
     newworker->process = process;
     newworker->arg = arg;
     newworker->next = NULL;

     pthread_mutex_lock (&(pool->queue_lock));
  
     CThread_worker *member = pool->queue_head;
    if (member != NULL)
     {
        while (member->next != NULL)
             member = member->next;
         member->next = newworker;
     }
    else
     {
         pool->queue_head = newworker;
     }


     assert (pool->queue_head != NULL);


     pool->cur_queue_size++;
     pthread_mutex_unlock (&(pool->queue_lock));
  
     pthread_cond_signal (&(pool->queue_ready));
    return 0;
}


int
pool_destroy ()
{
    if (pool->shutdown)
        return -1;
     pool->shutdown = 1;

     pthread_cond_broadcast (&(pool->queue_ready));
  
    int i;
    for (i = 0; i < pool->max_thread_num; i++)
         pthread_join (pool->threadid[i], NULL);
     free (pool->threadid);


  
     CThread_worker *head = NULL;
    while (pool->queue_head != NULL)
     {
         head = pool->queue_head;
         pool->queue_head = pool->queue_head->next;
         free (head);
     }
  
     pthread_mutex_destroy(&(pool->queue_lock));
     pthread_cond_destroy(&(pool->queue_ready));

     free (pool);
  
     pool=NULL;
    return 0;
}


void * thread_routine (void *arg)
{
     printf ("starting thread 0x%x\n", pthread_self ());
    while (1)
     {
         pthread_mutex_lock (&(pool->queue_lock));
      
        while (pool->cur_queue_size == 0 && !pool->shutdown)
         {
             printf ("thread 0x%x is waiting\n", pthread_self ());
             pthread_cond_wait (&(pool->queue_ready), &(pool->queue_lock));
         }


      
        if (pool->shutdown)
         {
          
             pthread_mutex_unlock (&(pool->queue_lock));
             printf ("thread 0x%x will exit\n", pthread_self ());
             pthread_exit (NULL);
         }


         printf ("thread 0x%x is starting to work\n", pthread_self ());


      
         assert (pool->cur_queue_size != 0);
         assert (pool->queue_head != NULL);

      
         pool->cur_queue_size--;
         CThread_worker *worker = pool->queue_head;
         pool->queue_head = worker->next;
         pthread_mutex_unlock (&(pool->queue_lock));


      
         (*(worker->process)) (worker->arg);
         free (worker);
         worker = NULL;
     }
     pthread_exit (NULL);
}


   // 下面是测试代码

void * myprocess (void *arg)
{
     printf ("threadid is 0x%x, working on task %d\n", pthread_self (),*(int *) arg);
     _sleep (1);
    return NULL;
}


int main (int argc, char **argv)
{
     pool_init (3);

  
    int *workingnum = (int *) malloc (sizeof (int) * 10);
    int i;
    for (i = 0; i < 10; i++)
     {
         workingnum[i] = i;
         pool_add_worker (myprocess, &workingnum[i]);
     }
  
     _sleep (5);
  
     pool_destroy ();


     free (workingnum);
    return 0;
}


5、问题及解决方法
1)build project时出现“Error launching builder (make -k all )”
先将C:\MinGW\bin底下的
mingw32-make.exe更名为make.exe,因为在Eclipse使用时它预设会抓系统里make这个文件名而不是mingw32-make.

2)build project时出现“launch failed,binary not found”
报错是因为没有指定编译器。为了让CDT能够采用MinGW进行编译,需要在 Eclipse 中进行设定
方法一:去Window->Preferences->C/C++->New CDT project wizard->Makefile Project下,找到 Binary Parser 取消 Elf Parser 改选 PE Windows Parser。或是其他编译器,看具体情况而定,
当然你也可以指定GNU ELF Parser。
方法二:去projrct -> properties -> c/c++ build -> settings ->Binary Parser下设置一下,比如使用GNU Elf Parser


3)undefined reference to 'pthread_create'
   undefined reference to 'pthread_join'
问题原因:
pthread 库不是 Linux 系统默认的库,由于Mingw下没有带,所以在项目中设置多线程动态链接库,也不管用。
ftp://sourceware.org/pub/pthreads-win32/pthreads-w32-2-8-0-release.exe
解开pthreads-w32-2-8-0-release.exe,把Pre- built.2中的libpthreadGC2.a改名为libpthread.a复制到c:\mingw\lib目录,
pthread.h复制到c: \mingw\include目录即可解决


本文欢迎转载,转载请注明作者与出处
作者:流星
出处:http://blog.sina.com.cn/staratsky
0
0
分享到:
评论

相关推荐

    基于Qt的MinGw编译PCL及其所有依赖库boost、eigen、flann、qhull、VTK

    总结来说,基于Qt的MinGW编译PCL及其依赖库是一个涉及多个环节和技术细节的任务,但完成后将极大地方便开发者在Qt中进行点云处理和应用开发。通过熟悉这些库的功能和编译过程,不仅可以提高开发效率,也有助于深入...

    windows下基于MinGW编译ffmpeg之_初级篇_中级篇

    通过初级篇和中级篇的学习,你应该能够熟练地在Windows下使用MinGW编译FFmpeg,理解编译过程中的关键步骤,以及如何根据项目需求进行定制。不过,FFmpeg的编译过程可能还会遇到更多复杂情况,比如跨平台编译、支持...

    boost静态库win10 mingw730_64编译

    完成上述步骤后,你将拥有在Win10 64位环境下,使用MinGW730_64编译的Boost静态库,包括了多线程(mt)和调试(d)版本,同时提供了64位(x64)和32位(x32)库文件。这些库文件可以在你的项目中使用,无需在运行时...

    CEGUI-DEPS-0.7.x-r1-mingw(minGw 编译Osg 依赖库)

    7. **Boost**:一组C++库,OSG可能使用其中的某些组件,如智能指针、多线程支持等。 8. **CEGUI**的核心库和相关模块,如基础渲染器、事件处理等。 在实际编译过程中,开发者需要设置正确的环境变量,例如添加库...

    snmp++3.4.6库文件(mingw编译).zip

    这个版本的库包含了对SNMPv1、SNMPv2c和SNMPv3的支持,具有错误处理、对象建模、多线程等特性。 `.a`文件是静态库文件,通常在编译链接阶段被合并到目标程序中,形成一个完整的可执行文件。在MinGW环境下,`libsnmp...

    openblas 0.2.20 mingw 编译

    总结起来,OpenBLAS 0.2.20 MingW编译涉及了使用MinGW编译工具链将源代码编译为适用于Windows的动态库和静态库,同时还需要一些依赖库,如GFortran和POSIX线程库,来支持其正常运行。开发人员可以通过这些编译后的...

    log4qt模块由msvc2017及mingw编译的32位及64位库文件

    - **线程安全**: 支持多线程环境下的日志记录,避免并发问题。 - **易于部署**: 库文件小,依赖性低,方便集成到项目中。 **5. 示例代码** ```cpp #include #include "log4qt/logger.h" #include "log4qt/...

    Mingw编译的第三方插件

    - 网络通信库,如OpenThreads,支持多线程编程和网络通信。 - 其他工具库,如Boost,提供了大量实用的C++库,如智能指针、正则表达式等。 在使用这些编译好的插件时,开发者需要注意库版本的兼容性,确保它们与所...

    MINGW缺少的DLL文件

    4. **libwinpthread-1.dll**:这是POSIX线程库,用于跨平台的多线程编程。 解决 MingW 缺少DLL文件的方法主要有以下几点: 1. **安装完整版的MingW**:确保你下载并安装的是包含所有必需组件的完整版MingW,而不是...

    MinGW 4.4.1 静态正式版

    总的来说,MinGW 4.4.1静态正式版是针对Windows开发者的一款便捷、轻量级的GNU工具集,它的静态编译特性使得程序部署更为简单,而对线程问题的修复则增强了多线程应用的可靠性。通过这个版本,开发者可以在Windows...

    MinGW应用程序开发入门

    - **Pthreads多线程编程**:`gcc -s mt.c -omt -lpthread -std=c99 -O3` - **Windows NT驱动编程**:`gcc -shared -Wl,--subsystem,native -Wl,--entry,_DriverEntry@8 -nostartfiles -nostdlib ntdriver.c -...

    数学高精度库GMP,版本5.1.3,使用MinGW静态编译

    4. **更好的多线程支持**:在多线程环境中,GMP 5.1.3能更好地管理资源,提高并发性能。 **MinGW静态编译** MinGW(Minimalist GNU for Windows)是一个用于Windows环境下的开源C/C++编译器套件,它提供了GCC(GNU...

    个人编译的boost1.49库,MinGW4.7,Release,包含*.dll和*.a

    Boost库是一个广泛使用的开源C++库集合,它提供了大量的工具、函数和类,以帮助开发者在各种任务中提高效率,如多线程编程、数学运算、图形处理等。1.49是Boost的一个特定版本,发布于2012年,包含了许多经过测试和...

    mingw4.7编译好的boost_55_0 (codeblocks)下直接用

    5. **并发编程**:`thread`库提供了线程管理,`mutex`和`condition_variable`等同步原语,方便进行多线程编程。 6. **正则表达式**:提供了强大的正则表达式处理,比C++标准库中的正则表达式功能更加强大。 7. **...

    MinGW 支持多平台、多语言编译以及原始编译的强大软件

    Mingw是“Windows最低限度GNU”的缩写,是本机Microsoft Windows应用程序的最低限度开发环境。 Mingw提供了一套完整的开源...此外,线程应用程序必须附带一个可自由分配的线程支持dll,作为mingw本身的一部分提供)。

    windows下使用MinGW+msys编译ffmpeg.pdf

    6. **pthreadGC2.dll**: 这是一个线程库,对于某些需要多线程处理的软件,如Adobe Premiere,它是必需的。你可以在网络上找到并下载这个文件。 **二、编译步骤** 1. **安装MinGW和MSYS**: 运行下载的mingw-get-...

    mingw-w64-v10.0.0

    - "技术部分.docx":这个文档可能详细介绍了Mingw-w64-v10.0.0的技术细节,包括如何安装、配置环境变量,如何使用mingwmake进行项目构建,以及可能遇到的问题和解决办法。它可能会涵盖一些高级话题,如动态链接与...

    opencv mingw编译

    此外,为了获取最佳性能,你可能还需要安装额外的编译选项,如OpenMP以支持多线程。 通过以上步骤,你就可以在Windows环境下使用MinGW编译OpenCV库,从而实现自定义编译和优化,更好地适应你的项目需求。这不仅能...

Global site tag (gtag.js) - Google Analytics