Trouble getting program with boost thread to compile (link error) - boost

I'm trying to compile an extremely simple program that includes boost/thread.hpp
At first I was getting this error:
LINK : fatal error LNK1104: cannot open file 'libboost_thread-vc100-mt-gd-1_47.lib'
I found out it was because I never installed the thread package in the first place. I reinstalled boost with the thread package, and now I'm getting this error:
LINK : fatal error LNK1104: cannot open file 'libboost_date_time-vc100-mt-gd-1_47.lib'
I could reinstall boost again, with the datetime package, but I'm sure that after I do that I will only get another error telling me I'm missing some other package.

Related

"'glib.h' file not found" when I make source project in mac OS

I created MakeFile using Autoconf. When I run "make" in my source project, errors like below occur. But glib is installed. Does anyone have a solution to this problem? I'm using thrift library in my project.
/usr/local/include/thrift/c_glib/thrift.h:27:10: fatal error: 'glib.h' file not found
#include <glib.h>
^~~~~~~~
1 error generated.
I tried this command but it didn't fix this problem.
export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig"

Missing tracepoint_private.h when compile OSX

I miss tracepoint_private.h file when I try to compile libdispatch for EIcapitan https://github.com/apple/swift-corelibs-libdispatch
Does anyone has that file?
The error message I got is bellow:
../os/voucher_activity_private.h:27:10: fatal error: 'firehose/tracepoint_private.h' file not found

libf.lib, console.lib and so on

Where can I get old Fortran libraries like libf.lib or console.lib? I keep getting an error from Digital Visual Fortran
LINK: fatal error LNK1104: cannot open file "libf.lib"
I googled for it for an hour, no luck.

fatal error LNK1181: cannot open input file 'C:\Python33\Lib.obj'

I have been encountering a bug in Visual Studio 2005. I used boost python (boost_1_54_0) to interface python 3.3.2 to c++. I followed this tutorial.
http://www.thalesians.com/finance/index.php/Knowledge_Base/CPP/Boost_Python_Step_By_Step.
and from StackOverflow questions
Visual Studio: LINK : fatal error LNK1181: cannot open input file
I included the required library in linker input, but I'm still getting this linking error:
fatal error LNK1181: cannot open input file 'C:\Python33\Lib.obj'
To remove this error add Additional Dependencies in the Linker.
Project prperties-->Configuration Properties-->Linker-->Input -->Additional Dependencies
and then add following Libarary
c:\python33\libs\python33.lib.
Hope this resolove the error.

compilation issue with NDK

I am compiling one file using NDK android-ndk-5rc,
here is command
/media/Softwares/android-ndk-r5c/ndk-build APP_PLATFORM=android-8
but facing one strange compilation error
Fatal error: invalid -march= option: `armv5te'
make: * [/media/Softwares/Projects/FilterTest/obj/local/armeabi/objs/convolution/convolution.o] Error 1
i searched armv5te in whole folder android-ndk-r5c and modified to armv7-a, still facing same error.
Any help is great....

Resources