CentOS uses boost process

Source: Internet
Author: User

1. Installation of gcc,g++,make and other development environments

yum groupinstall "Development Tools"

2. Install boost

 yum install boost boost-devel boost-doc

Note: The default installation path is in the/usr/lib64 directory

#include <boost/thread.hpp>  #include <iostream>    void Task1 () {       //do stuff      Std::cout < < "This is task1!" << Std::endl;  }    void Task2 () {       //do stuff      std::cout << ' This is task2! ' << Std::endl;  }    int main (int argc, char * * argv) {      using namespace boost;       Thread thread_1 = thread (TASK1);      Thread thread_2 = thread (TASK2);        Do other Stuff      thread_2.join ();      Thread_1.join ();      return 0;  }  

  

4. Makefile

g++ -I./inlcude -L./usr/lib64  test.cpp -lboost_thread-mt  -o example
注意:默认的安装路径在/usr/lib64目录下

5.结果
./example
This is task2! This is task1!
 

CentOS uses boost process

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.