c++ - compiling log4cpp with custom toolchain -
this question has answer here:
- make gnu make use different compiler 5 answers
i using log4cpp in our project. need support various distributions of linux, have built custom tool chain build our project. since project built custom tool chain, should build log4cpp same tool chain?
i can build log4cpp using native compiler using 3 simple commands mentioned in it's web page.
./configure make make install
but library not working our custom built binary. new linux, can't figure out file change compiling custom compiler. example our custom tools present in /usr/custom/g++
.
can build static library of log4cpp ans use in our project? using ubuntu 14.0 compilation. please help
i passed parameter first command following
./configure cxx = /usr/custom/g++
when run make command, automatically picked custom compiler , used it.
Comments
Post a Comment