ÀÌ¹Ì buildµÈ binary

http://kldp.org/node/154138




//

DevC++ ¿¡¼­ º°´Ù¸¥ ¼³Á¤ ¾øÀÌ. include ¸¸ ÇØÁÖ´Ï µÇ¾ú´Ù.
boost xml parser ptree
 

boost read_xml ¸Þ¸ð¸® ¸¯ÀÌ »ý±é´Ï´Ù.  | VC++ ÀϹÝ
http://www.devpia.com/Maeul/Contents/Detail.aspx?BoardID=50&MAEULNo=20&no=960216&ref=960216
 

boost ¸¦ »ç¿ëÇÏ´Â ¿©·¯°¡Áö ¹æ¹ý
http://blog.daum.net/knightofelf/13287
 

boost xml parser ¿¡ Ȥ½Ã ³ëµå °¹¼ö Á¦ÇÑÀÌ ÀÖ³ª¿ä...  | VC++ ÀϹÝ
http://www.devpia.com/MAEUL/Contents/Detail.aspx?BoardID=50&MAEULNO=20&no=957755&ref=957755
 

boost-1.46.0-gcc4.6-1sau.DevPak
http://cache.tehsausage.com/
 

boost
http://devpaks.org/details.php?devpak=304
 
 





//

mingw ¿¡ boost ¼³Ä¡ Áú¹®

http://kldp.org/node/153519



Boost Mingw Link Option

boost ¸¦ »ç¿ëÇÏ´Â ¹æ¹ýÀ» Àû¾îº»´Ù¸é.
http://en.cppreference.com/w/cpp/container/array C++11 À¥ÄÄÆÄÀÏ·¯ »ç¿ë (Çغ¸´Ï Áö±Ý ¹Ù·Î µË´Ï´Ù. ¤·_¤·)
- DevC++ ¿¡ boost ÆÐÅ°Áö »ç¿ë (2°¡Áö ¹öÀüÀÌ ÀÖ½À´Ï´Ù. Blood ´Â boost lib¸¦ Áö¿øÇÏ°í. Orwell ¿¡¼­´Â C++11À» Áö¿øÇÕ´Ï´Ù. )
- Qt SDK ¿¡¼­ Boost »ç¿ë
- Boost DLL À» ¼Ò½ºÆ÷Áö¿¡¼­ ´Ù¿î¹Þ¾Æ »ç¿ë
- VC++ ¿¡¼­ BOOST_THREAD_USE_DLL »ç¿ë

boost:: ´Â ¶óÀ̺귯¸®ÀÌ°í.
chrono:: C++11 Àº ÄÄÆÄÀÏ·¯¿¡ boost°¡ Æ÷ÇԵȰŠ°°½À´Ï´Ù.

¸®´ª½º. ¿ìºÐÅõ. cygwin. python. µîµî... ¸¹³×¿ä.

MinGW-w64, boost thread ¿Í C++11 thread Programming

http://keugbang.egloos.com/5815393




http://en.cppreference.com/w/cpp/container/array  (Run this Code Çѹø ½ÇÇàÈÄ. ¼Ò½ºÆíÁýâ¿¡ ¼Ò½º ¶¼´Ù ºÙÀÌ°í RunÇÏ¸é ¹Ù·Î µÊ.)

#include <string>
#include <iterator>
#include <iostream>
#include <algorithm>
#include <array>
#include <chrono>
#include <thread>
 

using namespace std;
 
void workerFuncBoost()
{
    std::chrono::seconds workTime(3);
    
    cout << "boost worker thread started" << endl;
    std::this_thread::sleep_for(workTime);    // TODO something useful will be nice
    cout << "boost worker thread finished" << endl;
}
 

void workerFuncCpp()
{
    std::chrono::seconds workTime(3);
    
    cout << "C++11 worker thread started" << endl;
    std::this_thread::sleep_for(workTime);    // TODO something useful will be nice
    cout << "C++11 worker thread finished" << endl;
}
 
 
 
int main()
{
    
    cout << "main: starting threads" << endl;
    std::thread workerThreadBoost(workerFuncBoost);
    std::thread workerThreadCpp(workerFuncCpp);
    
    cout << "main: waiting for thread" << endl;
    workerThreadBoost.join();
    workerThreadCpp.join();
    
    cout << "main: done" << endl;
    
    
    
    
    
    // construction uses aggregate initialization
    std::array<int, 3> a1{ {1, 2, 3} }; // double-braces required in C++11 (not in C++14)
    std::array<int, 3> a2 = {1, 2, 3};  // never required after =
    std::array<std::string, 2> a3 = { std::string("a"), "b" };
 
    // container operations are supported
    std::sort(a1.begin(), a1.end());
    std::reverse_copy(a2.begin(), a2.end(), 
                      std::ostream_iterator<int>(std::cout, " "));
 
    std::cout << '\n';
 
    // ranged for loop is supported
    for(const auto& s: a3)
        std::cout << s << ' ';
}



#title Using std::cin
g++ -std=c++14 -O2 -Wall -pedantic -pthread main.cpp && ./a.out << EOF
abc
def
EOF

boost ¶óÀ̺귯¸®¸¦ »ç¿ëÇÑ ¼Ò½ºÄڵ带 dll·Î ¸¸µé±â ¿¡·¯
BOOST_THREAD_USE_DLL
http://www.devpia.com/MAEUL/Contents/Detail.aspx?BoardID=50&MAEULNo=20&n...

CLR -> C# ¿¬µ¿ ±×¸®°í Boost
http://blog.naver.com/ttuckbong?Redirect=Log&logNo=20153171208

Boost Mingw Link Option

http://www.google.co.kr/search?hl=ko&source=hp&biw=&bih=&q=Boost+Mingw+L...

http://www.boost.org/

Boost C++ Libraries
http://sourceforge.net/projects/boost/files/

BOOST ¼³Ä¡Çϱâ
http://blog.naver.com/cronuskim?Redirect=Log&logNo=40037657427

qt creator¿¡¼­ boost »ç¿ë 
http://rhaxoddl77.blog.me/120209233663

Qt 4¿Í Boost È¥¿ë ½Ã ÁÖÀÇ°¡ ÇÊ¿äÇÏ´Ù
http://blog.naver.com/lithium81?Redirect=Log&logNo=80188729498

2012³â ºÐ¾ßº° ÃÖ°íÀÇ ¿ÀǼҽº ¼ÒÇÁÆ®¿þ¾î 124¼±
http://www.itworld.co.kr/news/78082

http://ideone.com/

Dev-C++ 5.0 beta 9.2 (4.9.9.2) (9.0 MB) with Mingw/GCC 3.4.2
http://www.bloodshed.net/dev/devcpp.html

//Orwell Dev-C++
This project superseded by http://sf.net/projects/orwelldevcpp/
http://sourceforge.net/projects/dev-cpp/

http://codepad.org/

¿©·¯°¡Áö C++ ÄÄÆÄÀÏ·¯¸¦ Áö¿øÇÑ´Ù.
http://en.cppreference.com/w/cpp/container/array

À̰ŵµ ÀÖÁö¸¸. ÄÄÆÄÀÏ·¯ ¹öÀüÀÌ ³·´Ù.
http://www.codepad.org

boost mingw
http://search.naver.com/search.naver?ie=utf8&sm=stp_hty&where=se&query=b...

MinGW-w64·Î boost ºôµåÇϱâ Programming
http://keugbang.egloos.com/5815388


ÀÌŬ¸³½ºCDT + minGW + boost ÇÁ·ÎÁ§Æ® 
http://blog.naver.com/realsnake?Redirect=Log&logNo=100210125952

Threading with Boost - Part I: Creating Threads
http://antonym.org/2009/05/threading-with-boost---part-i-creating-thread...

Code::Blocks + MinGW32/64 + Boost ¼³Ä¡ ¹æ¹ý ¼­¹ö ÇÁ·Î±×·¡¹Ö °ü·Ã ÀÚ·á
http://blog.naver.com/smanooo?Redirect=Log&logNo=140209279307

how to compile boost library with Mingw
http://onefortheroad.tistory.com/71