Can't get the bcp tool to work
I'd like to copy all the files in the filesystem library using bcp to a folder. I'm using the command: ./bcp filesystem [destination path] However, the output I get is "no errors detected" and nothing has been copied to the destination. Am I doing something wrong? I'm on Mac OS X intel, but this exact same problem occurs on my Windows machine as well.
AMDG Z. S. O. wrote:
I'd like to copy all the files in the filesystem library using bcp to a folder. I'm using the command:
./bcp filesystem [destination path]
However, the output I get is "no errors detected" and nothing has been copied to the destination. Am I doing something wrong?
I'm on Mac OS X intel, but this exact same problem occurs on my Windows machine as well.
Try using --boost=... to tell bcp where to look for the boost tree. In Christ, Steven Watanabe
Unfortunately I tried that previously and it didn't work. Here's my command
along with the output:
$ ./bcp filesystem /Users/Admin/Desktop
--boost=/Users/Admin/Downloads/boost_1_36_0
**** exception(205): std::runtime_error: Destination path does not exist:
******** errors detected; see standard output for details ********
This is supposed to copy boost.filesystem to my desktop. If I omit
everything but the --boost= statement, the same thing happens.
On Mon, Oct 6, 2008 at 2:46 PM, Steven Watanabe
AMDG
Z. S. O. wrote:
I'd like to copy all the files in the filesystem library using bcp to a folder. I'm using the command:
./bcp filesystem [destination path]
However, the output I get is "no errors detected" and nothing has been copied to the destination. Am I doing something wrong?
I'm on Mac OS X intel, but this exact same problem occurs on my Windows machine as well.
Try using --boost=... to tell bcp where to look for the boost tree.
In Christ, Steven Watanabe
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
Z. S. O. wrote:
Unfortunately I tried that previously and it didn't work. Here's my command along with the output:
$ ./bcp filesystem /Users/Admin/Desktop --boost=/Users/Admin/Downloads/boost_1_36_0
It only recognizes the destination path if it is last parameter. Hopefully this should work: ./bcp --boost=/Users/Admin/Downloads/boost_1_36_0 filesystem /Users/Admin/Desktop Daniel
Hmm, here's the output for that:
**** exception(225): memory access violation at address: 0x00000000:
non-existent physical address
******** errors detected; see standard output for details ********
On Mon, Oct 6, 2008 at 5:45 PM, Daniel James
Z. S. O. wrote:
Unfortunately I tried that previously and it didn't work. Here's my command along with the output:
$ ./bcp filesystem /Users/Admin/Desktop --boost=/Users/Admin/Downloads/boost_1_36_0
It only recognizes the destination path if it is last parameter. Hopefully this should work:
./bcp --boost=/Users/Admin/Downloads/boost_1_36_0 filesystem /Users/Admin/Desktop
Daniel
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
At 5:53 PM -0400 10/6/08, Z. S. O. wrote:
Hmm, here's the output for that:
**** exception(225): memory access violation at address: 0x00000000: non-existent physical address ******** errors detected; see standard output for details ********
Are you building from the trunk? Check your build transcript .. see if Boost::System built correctly. If it did not, update from svn and try again.... -- -- Marshall Marshall Clow Idio Software mailto:marshall@idio.com It is by caffeine alone I set my mind in motion. It is by the beans of Java that thoughts acquire speed, the hands acquire shaking, the shaking becomes a warning. It is by caffeine alone I set my mind in motion.
Z. S. O. wrote:
Unfortunately I tried that previously and it didn't work. Here's my command along with the output: $ ./bcp filesystem /Users/Admin/Desktop --boost=/Users/Admin/Downloads/boost_1_36_0 **** exception(205): std::runtime_error: Destination path does not exist: ******** errors detected; see standard output for details ********
This is supposed to copy boost.filesystem to my desktop. If I omit everything but the --boost= statement, the same thing happens.
The correct invocation is: bcp [options] module-list destination-directory so that should be: bcp --boost=/Users/Admin/Downloads/boost_1_36_0 filesystem /Users/Admin/Desktop Having said that, I'll try and make the tool less picky, and improve the error messages a bit. HTH, John.
participants (5)
-
Daniel James
-
John Maddock
-
Marshall Clow
-
Steven Watanabe
-
Z. S. O.