Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - monsterer

Pages: 1 ... 110 111 112 113 114 115 116 [117] 118 119 120 121 122 123 124 125
1741
General Discussion / Re: Proposal: Fast Firmly-Pegged Virtual bitUSD
« on: November 05, 2014, 09:43:09 am »
Monopolistic market-maker?

1742
General Discussion / Re: Decentralized Supercomputer
« on: November 04, 2014, 10:02:48 pm »
For a certain class of problems this works.... but where it fails:

1) trusting strangers with your data / programs means it will not be usable by industry
2) I doubt it will be more cost effective than centralized alternatives.

Actually the core class of problems this will not help with are those in which the transmission and subdivision overhead of data transfer outweigh the speed benefits of distributed computing. This is the primary problem with distributed computing itself.

1743
Please take a look at github.com/BitShares/BitShares-JS for our work on performing TITAN and other crypto functions in javascript.

Thanks - I've browsed that already and was hoping to contribute to it with the extra work that needs to be done to fully support this :)

1744
great project.

what time do you expect to finish it?

It will be completed in stages.  Depending on how much time I get to spend on it, these might arrive quicker or slower. Right now its a spare time project because I'm working on a full-time project for a client.

First of all it will just be a viewer for the various markets and assets, presented in a format familiar to traders.
The next version will have browser signed transactions and other technologies to allow a web-wallet and on site trading.
The next version will have bitUSD->bitcoin on/off ramps either by using an exchange or by directly purchasing bitUSD.

All of this is subject to the conditions of running a delegate for pay (and the price of BTSX), which appear to be in flux. :)

Cheers, Paul.

1745
As for the fees, the original proposal was 100 blocks worth I believe, which BM quickly upped to 7 days after feedback from Arhag and others including myself.

How much is that in total?

1746
so DDOSing is not an issue IMHO

maybe campaign trash talk bashing .. but not DDOS

Here is one such exploit:

Enumerate all nodes on the network by following connections from the client. Delegates have to be online to produce blocks, so you'll be able to gather their IP addresses along with everyone elses.

Then, simply run through that list, DDOS bursting at each IP address and watch every single delegate for stats dropping. You will be able to find a map from IP to delegate with quite a high probability with enough DDOS probes.

edit: might cost a lot if you don't own a botnet, but the risk is there.

1747
A delegate unable to stay in for 2 weeks is still campaigning or isn't serious about getting and keeping the job.

Or, is getting DDOSed out of existance by other delegate candidates with something to gain.

1748
If true, then 5 delegates in the top 100, is a nice little dilution earner.

I think they'd need to be created again to get more than 3%.

1749
though I don't see why we should have such a high fee ... would give those couple thousand delegates already registered a HUGE advantage .. not sure if I would like that to happen

I think existing delegates have to re-register to apply for greater than 3% pay rate anyway?

Even so, it could make for a risky proposition for a potential new delegate.

edit: IMO this up front payment should be returnable in the event the delegate gets voted out before 100 blocks.

1750
Hug? Since when are delegates supposed to pay a fee besides registration fee, which is pretty tiny:

Quote
  "delegate_reg_fee": "14.09802 BTSX",

Sorry, I thought that's what this thread was discussing? I must have misunderstood :)

1751
Rune Ander is actually spot on with BM's original proposal for this:

https://bitsharestalk.org/index.php?topic=9452

100 x 50BTS = 5000 BTS

Edit: Mixed up the names

I think that exposes delegates to a form of DOS; here is the problem:

* Delegate pays 5000 BTS fee
* Gets voted out before 100 blocks, due to DDOS, or other directed attack
* Suffers unrecoverable loss

?

1752
General Discussion / Re: Code Checking System
« on: November 02, 2014, 10:08:11 pm »
designing for testability negates the needs for such a stringent code revew system. IMO its better to start by offering rewards to valid unit tests and then work on an integration test suite.. block box and white box testing prevents most problems in the field.. after that some system should be inplemented to offer rewards via reviews but shouldnt be the main focus right now

I couldn't agree more. Actually - providing rewards for unit tests by external parties which reproduce a failure would be hugely valuable.

1753
General Discussion / Re: Code Checking System
« on: November 02, 2014, 09:42:30 pm »
Programming doesn't work on that level of granularity. Improvements always come first with the algorithm, at the high level, not at the individual lines of code.

A mass consensus on the validity of individual lines of code makes about as much sense as rating the individual words in a book.

Your idea is not without merit, though - just change the scale a bit. Code review is an excellent practice and greatly helps reduce the number of bugs in a given system. If you can find a way to build your system around that, you might be on to something.

Cheers, Paul.


1754
Ok, the previous error was due to having an old version on binutils on the path before the new one.

Now I've got what appears to be a compile error:

Code: [Select]
Scanning dependencies of target real128_test
[ 60%] Building CXX object libraries/fc/CMakeFiles/real128_test.dir/tests/real128_test.cpp.o
Linking CXX executable real128_test
/usr/lib/../lib64/crt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
collect2: error: ld returned 1 exit status
make[2]: *** [libraries/fc/real128_test] Error 1
make[1]: *** [libraries/fc/CMakeFiles/real128_test.dir/all] Error 2
make: *** [all] Error 2

Seems that the unit tests have the wrong include path for the definition of the boost unit test marco BOOST_AUTO_TEST_CASE, it should be:

Code: [Select]
#include <boost/test/included/unit_test.hpp>
not

Code: [Select]
#include <boost/test/unit_test.hpp>
In files:

bitsharesx/libraries/fc/tests/task_cancel.cpp
bitsharesx/libraries/fc/tests/real128_test.cpp
bitsharesx/tests/deterministic_signature_test.cpp
bitsharesx/tests/dev_tests.cpp
bitsharesx/tests/nathan_tests.cpp
bitsharesx/tests/wallet_tests.cpp
bitsharesx/tests/bitcoin/wallet_import_tests.cpp

However, after these issues were fixed up, I am now in business :)


Cheers, Paul.

1755
Got a little bit further - past cmake now and onto make

(in order to do so I had to hardcode Boost_USE_STATIC_LIBS to off inside the .cmake file)

cmake output:

Code: [Select]
-- The C compiler identification is GNU 4.8.2
-- The CXX compiler identification is GNU 4.8.2
-- Check for working C compiler: /usr/local/bin/cc
-- Check for working C compiler: /usr/local/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/local/bin/c++
-- Check for working CXX compiler: /usr/local/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Using custom FindBoost.cmake
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:495 ] _boost_TEST_VERSIONS = 1.56.0;1.56;1.55.0;1.55;1.54.0;1.54;1.53.0;1.53
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:497 ] Boost_USE_MULTITHREADED =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:499 ] Boost_USE_STATIC_LIBS = ON
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:501 ] Boost_USE_STATIC_RUNTIME =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:503 ] Boost_ADDITIONAL_VERSIONS =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:505 ] Boost_NO_SYSTEM_PATHS = ON
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:557 ] Declared as CMake or Environmental Variables:
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:559 ]   BOOST_ROOT = /usr/local/boost/1.55.0
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:561 ]   BOOST_INCLUDEDIR =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:563 ]   BOOST_LIBRARYDIR =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:565 ] _boost_TEST_VERSIONS = 1.56.0;1.56;1.55.0;1.55;1.54.0;1.54;1.53.0;1.53
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:634 ] Include debugging info:
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:636 ]   _boost_INCLUDE_SEARCH_DIRS = /usr/local/boost/1.55.0/include;/usr/local/boost/1.55.0;NO_CMAKE_SYSTEM_PATH
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:638 ]   _boost_PATH_SUFFIXES = boost-1_56_0;boost_1_56_0;boost/boost-1_56_0;boost/boost_1_56_0;boost-1_56;boost_1_56;boost/boost-1_56;boost/boost_1_56;boost-1_55_0;boost_1_55_0;boost/boost-1_55_0;boost/boost_1_55_0;boost-1_55;boost_1_55;boost/boost-1_55;boost/boost_1_55;boost-1_54_0;boost_1_54_0;boost/boost-1_54_0;boost/boost_1_54_0;boost-1_54;boost_1_54;boost/boost-1_54;boost/boost_1_54;boost-1_53_0;boost_1_53_0;boost/boost-1_53_0;boost/boost_1_53_0;boost-1_53;boost_1_53;boost/boost-1_53;boost/boost_1_53
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:658 ] location of version.hpp: /usr/local/boost/1.55.0/include/boost/version.hpp
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:682 ] version.hpp reveals boost 1.55.0
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:760 ] guessed _boost_COMPILER = -gcc48
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:770 ] _boost_MULTITHREADED =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:813 ] _boost_RELEASE_ABI_TAG = -
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:815 ] _boost_DEBUG_ABI_TAG = -d
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:864 ] _boost_LIBRARY_SEARCH_DIRS = /usr/local/boost/1.55.0/lib;/usr/local/boost/1.55.0/stage/lib;/usr/local/boost/1.55.0/include/lib;/usr/local/boost/1.55.0/include/../lib;/usr/local/boost/1.55.0/include/../lib/;/usr/local/boost/1.55.0/include/stage/lib;NO_CMAKE_SYSTEM_PATH
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for THREAD_LIBRARY_RELEASE: boost_thread-gcc48-1_55;boost_thread-gcc48;boost_thread-1_55;boost_thread;boost_thread
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for THREAD_LIBRARY_DEBUG: boost_thread-gcc48-d-1_55;boost_thread-gcc48-d;boost_thread-d-1_55;boost_thread-d;boost_thread;boost_thread
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for DATE_TIME_LIBRARY_RELEASE: boost_date_time-gcc48-1_55;boost_date_time-gcc48;boost_date_time-1_55;boost_date_time;boost_date_time
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for DATE_TIME_LIBRARY_DEBUG: boost_date_time-gcc48-d-1_55;boost_date_time-gcc48-d;boost_date_time-d-1_55;boost_date_time-d;boost_date_time;boost_date_time
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for SYSTEM_LIBRARY_RELEASE: boost_system-gcc48-1_55;boost_system-gcc48;boost_system-1_55;boost_system;boost_system
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for SYSTEM_LIBRARY_DEBUG: boost_system-gcc48-d-1_55;boost_system-gcc48-d;boost_system-d-1_55;boost_system-d;boost_system;boost_system
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for FILESYSTEM_LIBRARY_RELEASE: boost_filesystem-gcc48-1_55;boost_filesystem-gcc48;boost_filesystem-1_55;boost_filesystem;boost_filesystem
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for FILESYSTEM_LIBRARY_DEBUG: boost_filesystem-gcc48-d-1_55;boost_filesystem-gcc48-d;boost_filesystem-d-1_55;boost_filesystem-d;boost_filesystem;boost_filesystem
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for PROGRAM_OPTIONS_LIBRARY_RELEASE: boost_program_options-gcc48-1_55;boost_program_options-gcc48;boost_program_options-1_55;boost_program_options;boost_program_options
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for PROGRAM_OPTIONS_LIBRARY_DEBUG: boost_program_options-gcc48-d-1_55;boost_program_options-gcc48-d;boost_program_options-d-1_55;boost_program_options-d;boost_program_options;boost_program_options
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for SIGNALS_LIBRARY_RELEASE: boost_signals-gcc48-1_55;boost_signals-gcc48;boost_signals-1_55;boost_signals;boost_signals
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for SIGNALS_LIBRARY_DEBUG: boost_signals-gcc48-d-1_55;boost_signals-gcc48-d;boost_signals-d-1_55;boost_signals-d;boost_signals;boost_signals
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for SERIALIZATION_LIBRARY_RELEASE: boost_serialization-gcc48-1_55;boost_serialization-gcc48;boost_serialization-1_55;boost_serialization;boost_serialization
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for SERIALIZATION_LIBRARY_DEBUG: boost_serialization-gcc48-d-1_55;boost_serialization-gcc48-d;boost_serialization-d-1_55;boost_serialization-d;boost_serialization;boost_serialization
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for CHRONO_LIBRARY_RELEASE: boost_chrono-gcc48-1_55;boost_chrono-gcc48;boost_chrono-1_55;boost_chrono;boost_chrono
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for CHRONO_LIBRARY_DEBUG: boost_chrono-gcc48-d-1_55;boost_chrono-gcc48-d;boost_chrono-d-1_55;boost_chrono-d;boost_chrono;boost_chrono
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE: boost_unit_test_framework-gcc48-1_55;boost_unit_test_framework-gcc48;boost_unit_test_framework-1_55;boost_unit_test_framework;boost_unit_test_framework
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for UNIT_TEST_FRAMEWORK_LIBRARY_DEBUG: boost_unit_test_framework-gcc48-d-1_55;boost_unit_test_framework-gcc48-d;boost_unit_test_framework-d-1_55;boost_unit_test_framework-d;boost_unit_test_framework;boost_unit_test_framework
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for CONTEXT_LIBRARY_RELEASE: boost_context-gcc48-1_55;boost_context-gcc48;boost_context-1_55;boost_context;boost_context
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for CONTEXT_LIBRARY_DEBUG: boost_context-gcc48-d-1_55;boost_context-gcc48-d;boost_context-d-1_55;boost_context-d;boost_context;boost_context
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for LOCALE_LIBRARY_RELEASE: boost_locale-gcc48-1_55;boost_locale-gcc48;boost_locale-1_55;boost_locale;boost_locale
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for LOCALE_LIBRARY_DEBUG: boost_locale-gcc48-d-1_55;boost_locale-gcc48-d;boost_locale-d-1_55;boost_locale-d;boost_locale;boost_locale
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:1039 ] Boost_FOUND = 1
-- Boost version: 1.55.0
-- Found the following Boost libraries:
--   thread
--   date_time
--   system
--   filesystem
--   program_options
--   signals
--   serialization
--   chrono
--   unit_test_framework
--   context
--   locale
-- Using custom FindBoost.cmake
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:495 ] _boost_TEST_VERSIONS = 1.56.0;1.56;1.55.0;1.55;1.54.0;1.54
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:497 ] Boost_USE_MULTITHREADED =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:499 ] Boost_USE_STATIC_LIBS = 0
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:501 ] Boost_USE_STATIC_RUNTIME =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:503 ] Boost_ADDITIONAL_VERSIONS =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:505 ] Boost_NO_SYSTEM_PATHS = ON
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:557 ] Declared as CMake or Environmental Variables:
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:559 ]   BOOST_ROOT = /usr/local/boost/1.55.0
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:561 ]   BOOST_INCLUDEDIR =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:563 ]   BOOST_LIBRARYDIR =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:565 ] _boost_TEST_VERSIONS = 1.56.0;1.56;1.55.0;1.55;1.54.0;1.54
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:658 ] location of version.hpp: /usr/local/boost/1.55.0/include/boost/version.hpp
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:682 ] version.hpp reveals boost 1.55.0
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:760 ] guessed _boost_COMPILER = -gcc48
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:770 ] _boost_MULTITHREADED =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:813 ] _boost_RELEASE_ABI_TAG = -
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:815 ] _boost_DEBUG_ABI_TAG = -d
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:864 ] _boost_LIBRARY_SEARCH_DIRS = /usr/local/boost/1.55.0/lib;NO_DEFAULT_PATH
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for COROUTINE_LIBRARY_RELEASE: boost_coroutine-gcc48-1_55;boost_coroutine-gcc48;boost_coroutine-1_55;boost_coroutine;boost_coroutine
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for COROUTINE_LIBRARY_DEBUG: boost_coroutine-gcc48-d-1_55;boost_coroutine-gcc48-d;boost_coroutine-d-1_55;boost_coroutine-d;boost_coroutine;boost_coroutine
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:1039 ] Boost_FOUND = 1
-- Boost version: 1.55.0
-- Found the following Boost libraries:
--   coroutine
-- Found ZLIB: /usr/lib64/libz.so (found version "1.2.3")
-- Configuring BitShares on Linux
-- Using  as BerkeleyDB root
-- Looking for: db_cxx-6.0
-- debug/usr/lib64/libdb_cxx.sooptimized/usr/lib64/libdb_cxx.so
-- Found BerkeleyDB: /usr/include 
-- Configuring project fc located in: /root/bitsharesx/libraries/fc
-- Configuring fc to build on Unix/Apple
-- Using custom FindBoost.cmake
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:495 ] _boost_TEST_VERSIONS = 1.56.0;1.56;1.55.0;1.55;1.54.0;1.54;1.53.0;1.53
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:497 ] Boost_USE_MULTITHREADED =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:499 ] Boost_USE_STATIC_LIBS =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:501 ] Boost_USE_STATIC_RUNTIME =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:503 ] Boost_ADDITIONAL_VERSIONS =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:505 ] Boost_NO_SYSTEM_PATHS = ON
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:557 ] Declared as CMake or Environmental Variables:
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:559 ]   BOOST_ROOT = /usr/local/boost/1.55.0
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:561 ]   BOOST_INCLUDEDIR =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:563 ]   BOOST_LIBRARYDIR =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:565 ] _boost_TEST_VERSIONS = 1.56.0;1.56;1.55.0;1.55;1.54.0;1.54;1.53.0;1.53
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:658 ] location of version.hpp: /usr/local/boost/1.55.0/include/boost/version.hpp
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:682 ] version.hpp reveals boost 1.55.0
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:760 ] guessed _boost_COMPILER = -gcc48
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:770 ] _boost_MULTITHREADED =
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:813 ] _boost_RELEASE_ABI_TAG = -
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:815 ] _boost_DEBUG_ABI_TAG = -d
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:864 ] _boost_LIBRARY_SEARCH_DIRS = /usr/local/boost/1.55.0/lib;NO_DEFAULT_PATH
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for THREAD_LIBRARY_RELEASE: boost_thread-gcc48-1_55;boost_thread-gcc48;boost_thread-1_55;boost_thread;boost_thread
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for THREAD_LIBRARY_DEBUG: boost_thread-gcc48-d-1_55;boost_thread-gcc48-d;boost_thread-d-1_55;boost_thread-d;boost_thread;boost_thread
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for DATE_TIME_LIBRARY_RELEASE: boost_date_time-gcc48-1_55;boost_date_time-gcc48;boost_date_time-1_55;boost_date_time;boost_date_time
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for DATE_TIME_LIBRARY_DEBUG: boost_date_time-gcc48-d-1_55;boost_date_time-gcc48-d;boost_date_time-d-1_55;boost_date_time-d;boost_date_time;boost_date_time
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for SYSTEM_LIBRARY_RELEASE: boost_system-gcc48-1_55;boost_system-gcc48;boost_system-1_55;boost_system;boost_system
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for SYSTEM_LIBRARY_DEBUG: boost_system-gcc48-d-1_55;boost_system-gcc48-d;boost_system-d-1_55;boost_system-d;boost_system;boost_system
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for FILESYSTEM_LIBRARY_RELEASE: boost_filesystem-gcc48-1_55;boost_filesystem-gcc48;boost_filesystem-1_55;boost_filesystem;boost_filesystem
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for FILESYSTEM_LIBRARY_DEBUG: boost_filesystem-gcc48-d-1_55;boost_filesystem-gcc48-d;boost_filesystem-d-1_55;boost_filesystem-d;boost_filesystem;boost_filesystem
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for PROGRAM_OPTIONS_LIBRARY_RELEASE: boost_program_options-gcc48-1_55;boost_program_options-gcc48;boost_program_options-1_55;boost_program_options;boost_program_options
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for PROGRAM_OPTIONS_LIBRARY_DEBUG: boost_program_options-gcc48-d-1_55;boost_program_options-gcc48-d;boost_program_options-d-1_55;boost_program_options-d;boost_program_options;boost_program_options
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for SIGNALS_LIBRARY_RELEASE: boost_signals-gcc48-1_55;boost_signals-gcc48;boost_signals-1_55;boost_signals;boost_signals
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for SIGNALS_LIBRARY_DEBUG: boost_signals-gcc48-d-1_55;boost_signals-gcc48-d;boost_signals-d-1_55;boost_signals-d;boost_signals;boost_signals
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for SERIALIZATION_LIBRARY_RELEASE: boost_serialization-gcc48-1_55;boost_serialization-gcc48;boost_serialization-1_55;boost_serialization;boost_serialization
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for SERIALIZATION_LIBRARY_DEBUG: boost_serialization-gcc48-d-1_55;boost_serialization-gcc48-d;boost_serialization-d-1_55;boost_serialization-d;boost_serialization;boost_serialization
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for CHRONO_LIBRARY_RELEASE: boost_chrono-gcc48-1_55;boost_chrono-gcc48;boost_chrono-1_55;boost_chrono;boost_chrono
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for CHRONO_LIBRARY_DEBUG: boost_chrono-gcc48-d-1_55;boost_chrono-gcc48-d;boost_chrono-d-1_55;boost_chrono-d;boost_chrono;boost_chrono
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE: boost_unit_test_framework-gcc48-1_55;boost_unit_test_framework-gcc48;boost_unit_test_framework-1_55;boost_unit_test_framework;boost_unit_test_framework
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for UNIT_TEST_FRAMEWORK_LIBRARY_DEBUG: boost_unit_test_framework-gcc48-d-1_55;boost_unit_test_framework-gcc48-d;boost_unit_test_framework-d-1_55;boost_unit_test_framework-d;boost_unit_test_framework;boost_unit_test_framework
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for CONTEXT_LIBRARY_RELEASE: boost_context-gcc48-1_55;boost_context-gcc48;boost_context-1_55;boost_context;boost_context
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for CONTEXT_LIBRARY_DEBUG: boost_context-gcc48-d-1_55;boost_context-gcc48-d;boost_context-d-1_55;boost_context-d;boost_context;boost_context
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for LOCALE_LIBRARY_RELEASE: boost_locale-gcc48-1_55;boost_locale-gcc48;boost_locale-1_55;boost_locale;boost_locale
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for LOCALE_LIBRARY_DEBUG: boost_locale-gcc48-d-1_55;boost_locale-gcc48-d;boost_locale-d-1_55;boost_locale-d;boost_locale;boost_locale
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for IOSTREAMS_LIBRARY_RELEASE: boost_iostreams-gcc48-1_55;boost_iostreams-gcc48;boost_iostreams-1_55;boost_iostreams;boost_iostreams
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for IOSTREAMS_LIBRARY_DEBUG: boost_iostreams-gcc48-d-1_55;boost_iostreams-gcc48-d;boost_iostreams-d-1_55;boost_iostreams-d;boost_iostreams;boost_iostreams
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:952 ] Searching for COROUTINE_LIBRARY_RELEASE: boost_coroutine-gcc48-1_55;boost_coroutine-gcc48;boost_coroutine-1_55;boost_coroutine;boost_coroutine
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:988 ] Searching for COROUTINE_LIBRARY_DEBUG: boost_coroutine-gcc48-d-1_55;boost_coroutine-gcc48-d;boost_coroutine-d-1_55;boost_coroutine-d;boost_coroutine;boost_coroutine
-- [ /root/bitsharesx/libraries/fc/CMakeModules/FindBoost.cmake:1039 ] Boost_FOUND = 1
-- Boost version: 1.55.0
-- Found the following Boost libraries:
--   thread
--   date_time
--   system
--   filesystem
--   program_options
--   signals
--   serialization
--   chrono
--   unit_test_framework
--   context
--   locale
--   iostreams
--   coroutine
-- Found OpenSSL: /usr/lib64/libssl.a;/usr/lib64/libcrypto.a (found version "1.0.1e")
** for a debug build: cmake -DCMAKE_BUILD_TYPE=Debug ..
-- Finished fc module configuration...
-- Using  as BerkeleyDB root
-- Looking for: db_cxx-6.0
-- debug/usr/lib64/libdb_cxx.sooptimized/usr/lib64/libdb_cxx.so
-- Found BerkeleyDB: /usr/include 
-- Enabling Bitcoin Core Wallet Imports
-- Found Curses: /usr/lib64/libcurses.so 
-- Found Readline: /usr/include 
-- Configuring done
-- Generating done
-- Build files have been written to: /root/bitsharesx/build

make output:

Code: [Select]
[root@server10454 build]# make
Scanning dependencies of target leveldb
[  0%] Building CXX object vendor/leveldb-1.12.0/CMakeFiles/leveldb.dir/db/builder.cc.o
[  0%] Building CXX object vendor/leveldb-1.12.0/CMakeFiles/leveldb.dir/db/c.cc.o
/tmp/cchd85Il.s: Assembler messages:
/tmp/cchd85Il.s:44: Error: expecting string instruction after `rep'
/tmp/cchd85Il.s:56: Error: expecting string instruction after `rep'
/tmp/cchd85Il.s:177: Error: expecting string instruction after `rep'
/tmp/cchd85Il.s:3296: Error: expecting string instruction after `rep'
/tmp/cchd85Il.s:3362: Error: expecting string instruction after `rep'
make[2]: *** [vendor/leveldb-1.12.0/CMakeFiles/leveldb.dir/db/c.cc.o] Error 1
make[1]: *** [vendor/leveldb-1.12.0/CMakeFiles/leveldb.dir/all] Error 2
make: *** [all] Error 2

Any idea what to make of this?

Pages: 1 ... 110 111 112 113 114 115 116 [117] 118 119 120 121 122 123 124 125