boost 프로그램 컴파일 오류 fatal error LNK1104: cannot open file'libboostsystem-vc100-mt-gd-1_54.lib'해결 방법

841 단어
다음 절차의 경우
#include <iostream>
#include <boost/asio.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>

using namespace std;

int main()
{
	boost::asio::io_service io;
	boost::asio::deadline_timer t(io, boost::posix_time::seconds(5));

	t.wait();

	cout << "Hello World!
" << endl; return 0; }

Visual Studio 2010에서 컴파일하는 동안 다음과 같은 오류가 발생했습니다.
1>LINK : fatal error LNK1104: cannot open file 'libboost_system-vc100-mt-gd-1_54.lib' 1> 1>Build FAILED. 1> 1>Time Elapsed 00:00:36.95 ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
해결 방법은 다음과 같습니다.
1. 먼저 D:\boost 실행1_54_0 디렉토리의 bootstrap.bat 파일.이 디렉터리에서 파일 b2.ext
집행b2.exe 파일, 현재 디렉터리에서/stage/lib 생성
3. 생성된lib 파일을 프로젝트 파일에 추가하면 됩니다.

좋은 웹페이지 즐겨찾기