pThread for x64 system
-
Hi friends Can someody tell me how to find pThreadVC.dll and pThreadVC.lib for x64 sytem. I mean I need 64 bit binaries to raun on 64 bit system. I have the source files and I have also managed to get the 64 Binaries from them, But they are not working If I use nmake to create 64 bit what option should I give as command line parameter so that it will create 64bit output Thanks
-
Hi friends Can someody tell me how to find pThreadVC.dll and pThreadVC.lib for x64 sytem. I mean I need 64 bit binaries to raun on 64 bit system. I have the source files and I have also managed to get the 64 Binaries from them, But they are not working If I use nmake to create 64 bit what option should I give as command line parameter so that it will create 64bit output Thanks
Ranojay wrote:
If I use nmake to create 64 bit what option should I give as command line parameter so that it will create 64bit output
You need to use the correct Visual C++ binaries. Usually you can do that by changing working directory to your VC directory (e.g.
c:\Program Files\Microsoft Visual Studio 9.0\VC
for VS2008) and using one of these commands:-
If you're running 64-bit Windows
vcvarsall x64
-
If you're running 32-bit Windows
vcvarsall x86_amd64
This will put the Visual C++ binaries to create 64-bit code at the head of your path. Entering the command 'cl' should now say something like this - note the
for x64
:Microsoft (R) C/C++ Optimizing Compiler Version 15.00.30729.01 for x64
Copyright (C) Microsoft Corporation. All rights reserved.usage: cl [ option... ] filename... [ /link linkoption... ]
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
-
-
Ranojay wrote:
If I use nmake to create 64 bit what option should I give as command line parameter so that it will create 64bit output
You need to use the correct Visual C++ binaries. Usually you can do that by changing working directory to your VC directory (e.g.
c:\Program Files\Microsoft Visual Studio 9.0\VC
for VS2008) and using one of these commands:-
If you're running 64-bit Windows
vcvarsall x64
-
If you're running 32-bit Windows
vcvarsall x86_amd64
This will put the Visual C++ binaries to create 64-bit code at the head of your path. Entering the command 'cl' should now say something like this - note the
for x64
:Microsoft (R) C/C++ Optimizing Compiler Version 15.00.30729.01 for x64
Copyright (C) Microsoft Corporation. All rights reserved.usage: cl [ option... ] filename... [ /link linkoption... ]
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
-
-
Thanks ...can u tell me the steps for this... i will call this from the x64 commandline of MSVC 2005 ? any changes to be done in the make file ? thanks again
Ranojay wrote:
any changes to be done in the make file ?
No idea - it depends on the makefile. Try it and see - you can't break anything...
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p