Building boost with Intel C++ Composer XE 2013 -


i have installed intel c++ composer xe 2013, , i'm trying build boost (1_61_0) (on windows 8). followed steps on official website here , modified files suggested on related topic here (also modifying 12.0 13.0 in intel-user-config.jam, , going src instead of v2 folder). command b2 --user-config=intel-user-config.jam --toolset=intel seemed work properly.

however, build.bat still not work (so did not build properly):

@echo off   set currentdir=%cd%   @call "c:\program files (x86)\intel\composer xe 2013\bin\iclvars.bat" ia32   icl /fast helloworld.cpp   pause  

the error message being related boost:

catastrophic error: cannot open source file "boost/math/distributions/normal.hpp"

do need else in .cpp file in order use boost? or did not installed properly? maybe it's version of boost? i'm new c++, compilers, etc. have been trying figure out make boost work days , still unable use it. have tried suggested on other topics without success. don't know problem is.

thanks in advance

icl /i "c:\boost_1_61_0" /fast helloworld.cpp 

solves problem. thanks


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -