Skip to content

Commit

Permalink
CXX-205 BUMP legacy-0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
acmorrow committed Apr 23, 2014
1 parent c9ff5f1 commit 48e8366
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ if releaseBuild and (debugBuild or not optBuild):
print("Error: A --release build may not have debugging, and must have optimization")
Exit(1)

mongoclientVersion = "0.8.0-pre"
mongoclientVersion = "0.8.0"
# We don't keep the -pre in the user testable version identifiers, because
# nobody should be conditioning on the pre-release status.
mongoclientVersionComponents = mongoclientVersion.split('-')
Expand Down
2 changes: 1 addition & 1 deletion doxygenConfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "MongoDB C++ Driver"
PROJECT_NUMBER = 0.0
PROJECT_NUMBER = 0.8.0
OUTPUT_DIRECTORY = docs/doxygen
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
Expand Down

3 comments on commit 48e8366

@foroogh67
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hello,
I want to build mongodb C++ driver and i follow https://github.com/mongodb/mongo-cxx-driver/wiki/Download%20and%20Compile . I use both legacy and 2.6 but unfortunately for both i reached at the same error: "fatal error LNK1104: cannot open file 'boost_thread-vc100-mt-1_49.lib'

please help me. Thank you so much

@acmorrow
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@foroogh67 Questions about building and using the C++ driver should be sent to the mongodb-user mailing list: https://groups.google.com/forum/#!forum/mongodb-user.

Quick suggestion: If you are not using --libpath to set a library search path, add the path to the directory containing the boost libraries. If you are already doing so, double check that the path is correct.

@foroogh67
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the command that i used is:
scons --64 --release --sharedlink --dynamic-windows --prefix=C:\mongo_cpp_driver\ --cpppath=C:\local\boost 1_49_0\ --libpath=C:\local\boost_1_49_0\libs\ install-mongoclient

I am pretty sure about the addresses. i also try boost_1_55_0 but errors were same!!!

I am surprised why github doesn't build dll file and just put it on the internet.

thank you for your invested time to look at my problem.

Please sign in to comment.