Author

Topic: [BBR] Boolberry: Privacy and Security - Guaranteed Since 2014 - page 176. (Read 1210749 times)

sr. member
Activity: 378
Merit: 250
I just ran a Mint 17.2 livecd to test this and I'm seeing the same thing. Looking into it.

Nice to see the testing going on. I will run the new db version on Ubuntu later and post if I have any problems
My livecd ran out of space when i did an apt-get upgrade and I ran out if time. Now I'm taking care of a sick 1 year old who I think is trying to fall asleep on me. I'll see if I can continue testing in a bit.


http://m.youtube.com/watch?v=D1Px7ZJRDY4

I clicked on the YouTube link thinking it was a tutorial or something.

Hopefully your 1 year old is feeling better now.
hero member
Activity: 686
Merit: 500
If you like chess and bitcoin conspiracy theories check this out:

https://bitcointalksearch.org/topic/m.12509091

You can't make this shit up. The bitcointalk game (with myself and a few other boolberry community players participating) started way BEFORE the FIDE world cup. Guess who is copying the moves of the anonymous bitcointalk GM?

WOW

Thanks for the link. Chess is fun
sr. member
Activity: 336
Merit: 250
If you like chess and bitcoin conspiracy theories check this out:

https://bitcointalksearch.org/topic/m.12509091

You can't make this shit up. The bitcointalk game (with myself and a few other boolberry community players participating) started way BEFORE the FIDE world cup. Guess who is copying the moves of the anonymous bitcointalk GM?

WOW
newbie
Activity: 8
Merit: 0
Yeah, I screwed up the build system. You can change the part that says

Code:
  if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9.0))
    set(CMAKE_AR "gcc-ar")
    set(CMAKE_RANLIB "gcc-ranlib")
  else()
    set(CMAKE_AR "llvm-ar")
    set(CMAKE_RANLIB "llvm-ranlib")
  endif()
to
Code:
  if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9.0))
    set(CMAKE_AR "gcc-ar")
    set(CMAKE_RANLIB "gcc-ranlib")
  elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
    set(CMAKE_AR "llvm-ar")
    set(CMAKE_RANLIB "llvm-ranlib")
  endif()

in CMakeLists.txt.

If you were trying to test the db tree, instead of changing the CMakeLists.txt file, just run
Code:
git checkout db
and redo the cmake line and make again and it should work. My screw ups aren't in that branch.

Thanks, problem solved.
full member
Activity: 202
Merit: 104
Yeah, I screwed up the build system. You can change the part that says

Code:
  if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9.0))
    set(CMAKE_AR "gcc-ar")
    set(CMAKE_RANLIB "gcc-ranlib")
  else()
    set(CMAKE_AR "llvm-ar")
    set(CMAKE_RANLIB "llvm-ranlib")
  endif()
to
Code:
  if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9.0))
    set(CMAKE_AR "gcc-ar")
    set(CMAKE_RANLIB "gcc-ranlib")
  elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
    set(CMAKE_AR "llvm-ar")
    set(CMAKE_RANLIB "llvm-ranlib")
  endif()

in CMakeLists.txt.

If you were trying to test the db tree, instead of changing the CMakeLists.txt file, just run
Code:
git checkout db
and redo the cmake line and make again and it should work. My screw ups aren't in that branch.
legendary
Activity: 1372
Merit: 1000
I just ran a Mint 17.2 livecd to test this and I'm seeing the same thing. Looking into it.

Nice to see the testing going on. I will run the new db version on Ubuntu later and post if I have any problems
My livecd ran out of space when i did an apt-get upgrade and I ran out if time. Now I'm taking care of a sick 1 year old who I think is trying to fall asleep on me. I'll see if I can continue testing in a bit.


http://m.youtube.com/watch?v=D1Px7ZJRDY4
full member
Activity: 202
Merit: 104
I just ran a Mint 17.2 livecd to test this and I'm seeing the same thing. Looking into it.

Nice to see the testing going on. I will run the new db version on Ubuntu later and post if I have any problems
My livecd ran out of space when i did an apt-get upgrade and I ran out if time. Now I'm taking care of a sick 1 year old who I think is trying to fall asleep on me. I'll see if I can continue testing in a bit.
sr. member
Activity: 336
Merit: 250
I just ran a Mint 17.2 livecd to test this and I'm seeing the same thing. Looking into it.

Nice to see the testing going on. I will run the new db version on Ubuntu later and post if I have any problems
full member
Activity: 202
Merit: 104
I just ran a Mint 17.2 livecd to test this and I'm seeing the same thing. Looking into it.
legendary
Activity: 2968
Merit: 1198
getting the following errors when compiling from git:

Code:
Linking CXX static library libcommon.a
Error running link command: No such file or directory
make[3]: *** [src/libcommon.a] Error 2
make[3]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[2]: *** [src/CMakeFiles/common.dir/all] Error 2
Linking CXX static library libcrypto.a
Error running link command: No such file or directory
make[3]: *** [src/libcrypto.a] Error 2
make[3]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[2]: *** [src/CMakeFiles/crypto.dir/all] Error 2
make[2]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make: *** [build-release] Error 2

 Huh

mint 17.2

Other errors earlier?
newbie
Activity: 8
Merit: 0
getting the following errors when compiling from git:

Code:
Linking CXX static library libcommon.a
Error running link command: No such file or directory
make[3]: *** [src/libcommon.a] Error 2
make[3]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[2]: *** [src/CMakeFiles/common.dir/all] Error 2
Linking CXX static library libcrypto.a
Error running link command: No such file or directory
make[3]: *** [src/libcrypto.a] Error 2
make[3]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[2]: *** [src/CMakeFiles/crypto.dir/all] Error 2
make[2]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make: *** [build-release] Error 2

 Huh

mint 17.2

Did you install build-essential first?

yes and I can compile other cryptonote coins with no problem
full member
Activity: 202
Merit: 104
getting the following errors when compiling from git:

Code:
Linking CXX static library libcommon.a
Error running link command: No such file or directory
make[3]: *** [src/libcommon.a] Error 2
make[3]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[2]: *** [src/CMakeFiles/common.dir/all] Error 2
Linking CXX static library libcrypto.a
Error running link command: No such file or directory
make[3]: *** [src/libcrypto.a] Error 2
make[3]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[2]: *** [src/CMakeFiles/crypto.dir/all] Error 2
make[2]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make: *** [build-release] Error 2

 Huh

mint 17.2

Did you install build-essential first?
newbie
Activity: 8
Merit: 0
getting the following errors when compiling from git:

Code:
Linking CXX static library libcommon.a
Error running link command: No such file or directory
make[3]: *** [src/libcommon.a] Error 2
make[3]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[2]: *** [src/CMakeFiles/common.dir/all] Error 2
Linking CXX static library libcrypto.a
Error running link command: No such file or directory
make[3]: *** [src/libcrypto.a] Error 2
make[3]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[2]: *** [src/CMakeFiles/crypto.dir/all] Error 2
make[2]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/nanashi/.boolb/boolberry/build/release'
make: *** [build-release] Error 2

 Huh

mint 17.2
legendary
Activity: 1372
Merit: 1000
Do you mean the #boolberry channel or is #BBR different?
legendary
Activity: 1540
Merit: 1000
Is there a Slack channel for BBR?
there are channel BBR in slack supernet
go invit supernet here: http://slackinvite.supernet.org/
and add channel #BBR
You are Welcome!  Wink
sr. member
Activity: 378
Merit: 250
I love boolberry but I now have a new favorite thread:

https://bitcointalksearch.org/topic/lets-play-a-game-of-chess-1148538
(come join if you like chess)

Back on topic..... I would love to hear feedback from those testing the new db code from github.

Do we have any data about how many people have tested it and any trouble (if any) they have ran into?

I thought the cointopay.com boolberry acceptance news was a good thing. Has anyone used the service yet?

I like chess so don't mind your post at all!

Thanks for the reminder about cointopay. I will tweet about them again
hero member
Activity: 529
Merit: 505
I'm on drugs, what's your excuse?
Is there a Slack channel for BBR?
I personally believe that slack is over rated. Mostly just people chatting about irrelevant crap. It looks like a good place for Dev's to chat about works in progress with each other, then make announcements here. I've been on the Supernet slack Chanel and it was a waste of time for someone who can't contribute to Code to solve issues. I'm just an end user and don't mean any offense to Dev's, I can't do what they can.

Jon  Wink
sr. member
Activity: 378
Merit: 250
Is there a Slack channel for BBR?

Not yet but that is a good idea. SuperNet has a slack channel set up and we are included but that is not really the same thing as having our own.
legendary
Activity: 1372
Merit: 1000
Is there a Slack channel for BBR?
Jump to: