EmerCoin / EMC

Всё что касается денежных средств

Модераторы: Olej, vikos

Аватара пользователя
Olej
Писатель
Сообщения: 21338
Зарегистрирован: 24 сен 2011, 14:22
Откуда: Харьков
Контактная информация:

EmerCoin / EMC

Непрочитанное сообщение Olej » 03 июл 2023, 10:29

Olej писал(а):
03 июл 2023, 02:01
Вдогонку:
Всё относительно GUI клиента/кошелька и так собиралось и замечательно работало.
Это касается только консольных, CLI, демона и клиента EmerCoin:
Olej писал(а):
03 июл 2023, 02:16

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git$ ls -l src/emer* | grep ^"\-rwx"
-rwxrwxr-x 1 olej olej   9924200 июл  3 02:18 src/emercoin-cli
-rwxrwxr-x 1 olej olej 198014120 июл  3 02:18 src/emercoind
-rwxrwxr-x 1 olej olej  75039328 июл  3 02:18 src/emercoin-wallet

Аватара пользователя
Olej
Писатель
Сообщения: 21338
Зарегистрирован: 24 сен 2011, 14:22
Откуда: Харьков
Контактная информация:

EmerCoin / EMC

Непрочитанное сообщение Olej » 03 июл 2023, 10:38

Olej писал(а):
03 июл 2023, 10:29
Это касается только консольных, CLI, демона и клиента EmerCoin:
Но это всё работает только после опеределений в конфиг файле типа такого:

Код: Выделить всё

olej@R420:~/.emercoin$ cat ~/.emercoin/emercoin.conf
rpcuser=olej
rpcpassword=xxxxxx
listen=1
server=1
rpcport=8777
rpcallowip=127.0.0.1
~/.emercoin здесь может быть каталогом, как создаёт по дефаулту EmerCoin, или ссылка, создаваемая при запуске - на другое где-то размещение кошелька (учитывая его объём!)
До этого конфиг emercoin.conf - пустой как турецкий барабан :-o - я убил на это дело пару часов :evil:
Самое важно в этой записи emercoin.conf - порт RPC (rpcport=) ... по умолчанию он, якобы, 6662 (127.0.0.1:6662), но у меня из этого ничего не вышло...

Аватара пользователя
Olej
Писатель
Сообщения: 21338
Зарегистрирован: 24 сен 2011, 14:22
Откуда: Харьков
Контактная информация:

EmerCoin / EMC

Непрочитанное сообщение Olej » 03 июл 2023, 10:42

Olej писал(а):
03 июл 2023, 10:38
или ссылка, создаваемая при запуске
У меня скрипт запуска демона/сервера выглядит так:

Код: Выделить всё

olej@R420:~/2023/EmerCoin$ cat start.v0.8.0-dev-srv 
PID=`pgrep emercoin`
PRG=./emercoin.git/src/emercoind

if [[ -z "$PID" ]]
then
    echo запуск демона $PRG
else
    echo уже выполняется экземпляр $PID
    exit 1
fi

LINK=~/.emercoin
rm -f --one-file-system $LINK
ln -s /mnt/sdc3/emercoin.0.8 $LINK
$PRG
rm -f -R --one-file-system $LINK
- создаётся сссылка ~/.emercoin на каталог /mnt/sdc3/emercoin.0.8, на другом медленном HDD, чтобы не забивать быстрый NVME $HOME ...
- запускается сервер ./emercoin.git/src/emercoind

Аватара пользователя
Olej
Писатель
Сообщения: 21338
Зарегистрирован: 24 сен 2011, 14:22
Откуда: Харьков
Контактная информация:

EmerCoin / EMC

Непрочитанное сообщение Olej » 03 июл 2023, 10:47

Olej писал(а):
03 июл 2023, 10:42
У меня скрипт запуска демона/сервера

Код: Выделить всё

olej@R420:~/2023/EmerCoin$ ./start.v0.8.0-dev-srv
запуск демона ./emercoin.git/src/emercoind
2023-07-03T07:43:41Z Emercoin Core version v0.8.0.0-00596f21a (release build)
2023-07-03T07:43:41Z Assuming ancestors of block 3b5b8bb145e5d267b06430582f5efc4a1cbe128a836cdf07ab2000c9caabe550 have valid signatures.
2023-07-03T07:43:41Z Setting nMinimumChainTrust=000000000000000000000000000000000000000000000000002ceae94968cea4
2023-07-03T07:43:41Z Using the 'sse4(1way),sse41(4way)' SHA256 implementation
2023-07-03T07:43:41Z Using RdRand as an additional entropy source
2023-07-03T07:43:41Z Default data directory /home/olej/.emercoin
2023-07-03T07:43:41Z Using data directory /home/olej/.emercoin
2023-07-03T07:43:41Z Config file: /home/olej/.emercoin/emercoin.conf
2023-07-03T07:43:41Z Using at most 125 automatic connections (1024 file descriptors available)
2023-07-03T07:43:41Z Using 16 MiB out of 32/2 requested for signature cache, able to store 524288 elements
2023-07-03T07:43:41Z Using 16 MiB out of 32/2 requested for script execution cache, able to store 524288 elements
2023-07-03T07:43:41Z Using 16 threads for script verification
2023-07-03T07:43:41Z scheduler thread start
2023-07-03T07:43:41Z WARNING: option -rpcallowip was specified without -rpcbind; this doesn't usually make sense
2023-07-03T07:43:41Z HTTP: creating work queue of depth 16
2023-07-03T07:43:41Z Config options rpcuser and rpcpassword will soon be deprecated. Locally-run instances may remove rpcuser to use cookie-based auth, or may be replaced with rpcauth. Please see share/rpcauth for rpcauth auth generation.
2023-07-03T07:43:41Z HTTP: starting 4 worker threads
2023-07-03T07:43:41Z Using wallet directory /home/olej/.emercoin
2023-07-03T07:43:41Z init message: Verifying wallet(s)...
2023-07-03T07:43:41Z Using BerkeleyDB version Berkeley DB 4.8.30: (April  9, 2010)
2023-07-03T07:43:41Z Using wallet /home/olej/.emercoin
2023-07-03T07:43:41Z BerkeleyEnvironment::Open: LogDir=/home/olej/.emercoin/database ErrorFile=/home/olej/.emercoin/db.log
2023-07-03T07:43:41Z init message: Loading banlist...
2023-07-03T07:43:41Z Cache configuration:
2023-07-03T07:43:41Z * Using 2.0 MiB for block index database
2023-07-03T07:43:41Z * Using 56.0 MiB for transaction index database
2023-07-03T07:43:41Z * Using 8.0 MiB for chain state database
2023-07-03T07:43:41Z * Using 384.0 MiB for in-memory UTXO set (plus up to 286.1 MiB of unused mempool space)
2023-07-03T07:43:41Z init message: Loading block index...
2023-07-03T07:43:41Z Opening LevelDB in /home/olej/.emercoin/blocks/index
2023-07-03T07:43:41Z Opened LevelDB successfully
2023-07-03T07:43:41Z Using obfuscation key for /home/olej/.emercoin/blocks/index: 0000000000000000
...

Код: Выделить всё

olej@R420:~$ netstat -ntl | grep 8777
tcp        0      0 127.0.0.1:8777          0.0.0.0:*               LISTEN     
tcp6       0      0 ::1:8777                :::*                    LISTEN     

Аватара пользователя
Olej
Писатель
Сообщения: 21338
Зарегистрирован: 24 сен 2011, 14:22
Откуда: Харьков
Контактная информация:

EmerCoin / EMC

Непрочитанное сообщение Olej » 03 июл 2023, 10:57

Olej писал(а):
03 июл 2023, 10:42
скрипт запуска демона/сервера
Теперь клиент:

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git/src$ ./emercoin-cli -version
Emercoin Core RPC client version v0.8.0.0-00596f21a
Это его команды:

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git/src$ ./emercoin-cli help | wc -l
171

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git/src$ ./emercoin-cli getinfo
{
  "fullversion": "v0.8.0.0-00596f21a",
  "version": 80000,
  "protocolversion": 70015,
  "walletversion": 130000,
  "balance": 5.997100,
  "newmint": 0.000000,
  "stake": 0.000000,
  "blocks": 610275,
  "moneysupply": 51034837.497499,
  "timeoffset": 0,
  "connections": 7,
  "proxy": "",
  "pow-difficulty": 4875037058373.138,
  "pos-difficulty": 20.29727957491392,
  "testnet": false,
  "keypoololdest": 1677163679,
  "keypoolsize": 999,
  "paytxfee": 0.000100,
  "relayfee": 0.000100,
  "encrypted": false,
  "mintonly": false,
  "errors": "This is a pre-release test build - use at your own risk - do not use for mining or merchant applications"
}
Это так берётся справка по отдельной (самой интересной) команде:

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin-v0.7.11emc-static$ ./emercoin-cli help name_filter
name_filter [regexp] [maxage=0] [from=0] [nb=0] [stat] [valuetype]
scan and filter names
[regexp] : apply [regexp] on names, empty means all names
[maxage] : look in last [maxage] blocks
[from] : show results from number [from]
[nb] : show [nb] results, 0 means all
[stat] : show some stats instead of results
[valuetype] : if "hex" or "base64" is specified then it will print value in corresponding format instead of string.
name_filter "" 5 # list names updated in last 5 blocks
name_filter "^id/" # list all names from the "id" namespace
name_filter "^id/" 0 0 0 stat # display stats (number of names) on active names from the "id" namespace
Это зарегистрированные в блокчейне EmerDNS записи DNS (некоторые):

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git/src$ ./emercoin-cli name_filter "dns:*" 0 0 3
[
  {
    "name": "dns:",
    "value": "A=108.28.111.72|TXT=Empty Record Parked|TTL=100000",
    "registered_at": 60161,
    "expires_in": 1199711
  },
  {
    "name": "dns",
    "value": "dns",
    "registered_at": 582007,
    "expires_in": 12746732
  },
  {
    "name": "dns:\u0000",
    "value": "\u0000",
    "registered_at": 584768,
    "expires_in": 375243
  }
]
Это вот зарегистрированные DNS-записи наши, форума:

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git/src$ ./emercoin-cli name_filter "dns:*" | grep linux-ru
    "name": "dns:linux-ru.lib",
    "name": "dns:ygg.linux-ru.lib",

Аватара пользователя
Olej
Писатель
Сообщения: 21338
Зарегистрирован: 24 сен 2011, 14:22
Откуда: Харьков
Контактная информация:

EmerCoin / EMC

Непрочитанное сообщение Olej » 03 июл 2023, 11:11

Olej писал(а):
03 июл 2023, 10:57
Это зарегистрированные в блокчейне EmerDNS записи DNS (некоторые):
Это число зарегистрированных в EmerDNS записей IPv4 (тип A):

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git/src$ ./emercoin-cli name_filter "dns:.*" | grep -a value | grep \"A= | wc -l
11824

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git/src$ ./emercoin-cli name_filter "dns:.*" | grep -a value | grep A= | tail
    "value": "A=104.244.42.129|CNAME=twitter.com|TXT=censor this biatches",
    "value": "A=127.0.0.1|NS=seed1.emercoin.com,seed2.emercoin.com|TXT=this one not hostage ;)",
    "value": "A=178.236.136.126",
    "value": "A=193.5.21.178|TXT=example website|TTL=300",
    "value": "A=157.245.130.228",
    "value": "A=68.183.70.80",
    "value": "A=127.1.1.1",
    "value": "A=127.0.0.1|TXT=welcome to the revolution",
    "value": "A=193.5.21.178|TXT=example website|TTL=300",
    "value": "A=170.64.166.193",
Это число зарегистрированных в EmerDNS записей IPv6 (тип AAAA):

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git/src$ ./emercoin-cli name_filter "dns:.*" | grep -a value | grep AAAA= | wc -l
470
Записи типа A и AAAA могут пересекаться:

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git/src$ ./emercoin-cli name_filter "dns:.*" | grep -a value | grep \"A= | grep AAAA= | wc -l
428
и т.д.

Аватара пользователя
Olej
Писатель
Сообщения: 21338
Зарегистрирован: 24 сен 2011, 14:22
Откуда: Харьков
Контактная информация:

EmerCoin / EMC

Непрочитанное сообщение Olej » 06 июл 2023, 18:54

Вложения
photo_2023-07-06_12-48-07.jpg
photo_2023-07-06_12-48-07.jpg (29.83 КБ) 407 просмотров

Аватара пользователя
Olej
Писатель
Сообщения: 21338
Зарегистрирован: 24 сен 2011, 14:22
Откуда: Харьков
Контактная информация:

EmerCoin / EMC

Непрочитанное сообщение Olej » 08 авг 2023, 20:15

Сообщение от разработчиков:


Аватара пользователя
Olej
Писатель
Сообщения: 21338
Зарегистрирован: 24 сен 2011, 14:22
Откуда: Харьков
Контактная информация:

EmerCoin / EMC

Непрочитанное сообщение Olej » 09 авг 2023, 01:21

Olej писал(а):
08 авг 2023, 20:15
Сообщение
Чем разбираться с обновлением GIT мне проще "от нуля":

Код: Выделить всё

olej@R420:~/2023/EmerCoin/2$ git clone git@github.com:emercoin/emercoin.git
Клонирование в «emercoin»...
remote: Enumerating objects: 148881, done.
remote: Counting objects: 100% (939/939), done.
remote: Compressing objects: 100% (415/415), done.
remote: Total 148881 (delta 533), reused 869 (delta 523), pack-reused 147942
Получение объектов: 100% (148881/148881), 130.60 МиБ | 1.25 МиБ/с, готово.
Определение изменений: 100% (104514/104514), готово.

Код: Выделить всё

olej@R420:~/2023/EmerCoin$ mv emercoin emercoin.git

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git$ git log -2
commit df26e1a385a29a6bd192ac4fa7a46e1175b219ad (HEAD -> master, tag: v0.8.1emc, origin/master, origin/HEAD)
Author: Oleg Khovayko <khovayko@gmail.com>
Date:   Tue Aug 8 09:17:54 2023 -0400

    FIX: Set bech32_hrp to em

commit 06247aaf2d7bde007cc372756ecfe3a2eb2e5fe0 (tag: v0.8.0emc)
Author: Oleg Khovayko <khovayko@gmail.com>
Date:   Sat Jul 22 13:10:40 2023 -0400

    FIX: Ignore prune
Похоже что оно...

Аватара пользователя
Olej
Писатель
Сообщения: 21338
Зарегистрирован: 24 сен 2011, 14:22
Откуда: Харьков
Контактная информация:

EmerCoin / EMC

Непрочитанное сообщение Olej » 09 авг 2023, 01:23

Olej писал(а):
09 авг 2023, 01:21
Похоже что оно...
Olej писал(а):
09 авг 2023, 01:21
мне проще "от нуля"

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git$ ./autogen.sh
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'.
libtoolize: copying file 'build-aux/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'build-aux/m4'.
libtoolize: copying file 'build-aux/m4/libtool.m4'
libtoolize: copying file 'build-aux/m4/ltoptions.m4'
libtoolize: copying file 'build-aux/m4/ltsugar.m4'
libtoolize: copying file 'build-aux/m4/ltversion.m4'
libtoolize: copying file 'build-aux/m4/lt~obsolete.m4'
configure.ac:45: installing 'build-aux/compile'
configure.ac:45: installing 'build-aux/config.guess'
configure.ac:45: installing 'build-aux/config.sub'
configure.ac:28: installing 'build-aux/install-sh'
configure.ac:28: installing 'build-aux/missing'
Makefile.am: installing 'build-aux/depcomp'
parallel-tests: installing 'build-aux/test-driver'
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'.
libtoolize: copying file 'build-aux/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'build-aux/m4'.
libtoolize: copying file 'build-aux/m4/libtool.m4'
libtoolize: copying file 'build-aux/m4/ltoptions.m4'
libtoolize: copying file 'build-aux/m4/ltsugar.m4'
libtoolize: copying file 'build-aux/m4/ltversion.m4'
libtoolize: copying file 'build-aux/m4/lt~obsolete.m4'
configure.ac:28: warning: The macro `AC_PROG_CC_C89' is obsolete.
configure.ac:28: You should run autoupdate.
./lib/autoconf/c.m4:1652: AC_PROG_CC_C89 is expanded from...
configure.ac:28: the top level
configure.ac:10: installing 'build-aux/compile'
configure.ac:5: installing 'build-aux/config.guess'
configure.ac:5: installing 'build-aux/config.sub'
configure.ac:9: installing 'build-aux/install-sh'
configure.ac:9: installing 'build-aux/missing'
Makefile.am: installing 'build-aux/depcomp'
parallel-tests: installing 'build-aux/test-driver'
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'.
libtoolize: copying file 'build-aux/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'build-aux/m4'.
libtoolize: copying file 'build-aux/m4/libtool.m4'
libtoolize: copying file 'build-aux/m4/ltoptions.m4'
libtoolize: copying file 'build-aux/m4/ltsugar.m4'
libtoolize: copying file 'build-aux/m4/ltversion.m4'
libtoolize: copying file 'build-aux/m4/lt~obsolete.m4'
configure.ac:672: warning: $as_echo is obsolete; use AS_ECHO(["message"]) instead
lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
build-aux/m4/ax_pthread.m4:88: AX_PTHREAD is expanded from...
configure.ac:672: the top level
configure.ac:83: installing 'build-aux/compile'
configure.ac:33: installing 'build-aux/config.guess'
configure.ac:33: installing 'build-aux/config.sub'
configure.ac:43: installing 'build-aux/install-sh'
configure.ac:43: installing 'build-aux/missing'
src/Makefile.am: installing 'build-aux/depcomp'
parallel-tests: installing 'build-aux/test-driver'

Код: Выделить всё

olej@R420:~/2023/EmerCoin/emercoin.git$ ./configure --disable-dependency-tracking --disable-tests --disable-util-tx --disable-gui-tests --enable-bip70 --disable-hardening --disable-debug
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking whether make supports nested variables... (cached) yes
checking for g++... g++
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C++... yes
checking whether g++ accepts -g... yes
checking for g++ option to enable C++11 features... none needed
checking whether make supports the include directive... yes (GNU style)
checking dependency style of g++... none
checking whether g++ supports C++11 features with -std=c++11... yes
checking whether std::atomic can be used without link library... yes
checking whether the compiler supports GNU Objective C++... no
checking whether g++ -std=c++11 accepts -g... no
checking dependency style of g++ -std=c++11... none
checking how to print strings... printf
checking for gcc... gcc
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... none
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... mt
checking if mt is a manifest tool... no
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++ -std=c++11 -E
checking for ld used by g++ -std=c++11... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ -std=c++11 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ -std=c++11 option to produce PIC... -fPIC -DPIC
checking if g++ -std=c++11 PIC flag -fPIC -DPIC works... yes
checking if g++ -std=c++11 static flag -static works... yes
checking if g++ -std=c++11 supports -c -o file.o... yes
checking if g++ -std=c++11 supports -c -o file.o... (cached) yes
checking whether the g++ -std=c++11 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for ar... /usr/bin/ar
checking for ranlib... /usr/bin/ranlib
checking for strip... /usr/bin/strip
checking for gcov... /usr/bin/gcov
checking for lcov... no
checking for python3.5... no
checking for python3.6... no
checking for python3.7... no
checking for python3.8... no
checking for python3... /usr/bin/python3
checking for genhtml... no
checking for git... /usr/bin/git
checking for ccache... no
checking for xgettext... /usr/bin/xgettext
checking for hexdump... /usr/bin/hexdump
checking for readelf... /usr/bin/readelf
checking for c++filt... /usr/bin/c++filt
checking for objcopy... /usr/bin/objcopy
checking for doxygen... no
configure: WARNING: Doxygen not found
checking whether C++ compiler accepts -Werror... yes
checking whether C++ compiler accepts -Wall... yes
checking whether C++ compiler accepts -Wextra... yes
checking whether C++ compiler accepts -Wformat... yes
checking whether C++ compiler accepts -Wvla... yes
checking whether C++ compiler accepts -Wswitch... yes
checking whether C++ compiler accepts -Wformat-security... yes
checking whether C++ compiler accepts -Wthread-safety-analysis... no
checking whether C++ compiler accepts -Wrange-loop-analysis... no
checking whether C++ compiler accepts -Wredundant-decls... yes
checking whether C++ compiler accepts -Wunused-parameter... yes
checking whether C++ compiler accepts -Wself-assign... no
checking whether C++ compiler accepts -Wunused-local-typedef... no
checking whether C++ compiler accepts -Wdeprecated-register... no
checking whether C++ compiler accepts -Wimplicit-fallthrough... yes
checking whether C++ compiler accepts -msse4.2... yes
checking whether C++ compiler accepts -msse4.1... yes
checking whether C++ compiler accepts -mavx -mavx2... yes
checking whether C++ compiler accepts -msse4 -msha... yes
checking for assembler crc32 support... yes
checking for SSE4.1 intrinsics... yes
checking for AVX2 intrinsics... yes
checking for SHA-NI intrinsics... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking whether byte ordering is bigendian... no
checking how to run the C preprocessor... gcc -E
checking whether gcc is Clang... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for g++ -std=c++11 options needed to detect all undeclared functions... none needed
checking whether strerror_r is declared... yes
checking whether strerror_r returns char *... yes
checking whether the linker accepts -Wl,--large-address-aware... no
checking for __attribute__((visibility))... yes
checking for __attribute__((dllexport))... no
checking for __attribute__((dllimport))... no
checking for library containing clock_gettime... none required
checking whether C++ compiler accepts -fPIC... yes
checking whether C++ compiler accepts -fstack-reuse=none... yes
checking for endian.h... yes
checking for sys/endian.h... no
checking for byteswap.h... yes
checking for stdio.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for strings.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for sys/select.h... yes
checking for sys/prctl.h... yes
checking FD_ZERO memcpy dependence... no
checking whether getifaddrs is declared... yes
checking whether freeifaddrs is declared... yes
checking whether strnlen is declared... yes
checking whether daemon is declared... yes
checking whether le16toh is declared... yes
checking whether le32toh is declared... yes
checking whether le64toh is declared... yes
checking whether htole16 is declared... yes
checking whether htole32 is declared... yes
checking whether htole64 is declared... yes
checking whether be16toh is declared... yes
checking whether be32toh is declared... yes
checking whether be64toh is declared... yes
checking whether htobe16 is declared... yes
checking whether htobe32 is declared... yes
checking whether htobe64 is declared... yes
checking whether bswap_16 is declared... yes
checking whether bswap_32 is declared... yes
checking whether bswap_64 is declared... yes
checking whether __builtin_clz is declared... yes
checking whether __builtin_clzl is declared... yes
checking whether __builtin_clzll is declared... yes
checking for getmemoryinfo... yes
checking for mallopt M_ARENA_MAX... yes
checking for visibility attribute... yes
checking for thread_local support... yes
checking for Linux getrandom syscall... yes
checking for getentropy... yes
checking for getentropy via random.h... yes
checking for sysctl KERN_ARND... no
checking for if type char equals int8_t... no
checking for std::system... yes
checking for ::_wsystem... no
checking for Qt5Core Qt5Gui Qt5Network Qt5Widgets... yes
checking for Qt5Test... yes
checking for Qt5DBus... yes
checking for static Qt... no
checking whether -fPIC is needed with this Qt config... yes
checking for moc-qt5... no
checking for moc5... no
checking for moc... /usr/lib/x86_64-linux-gnu/qt5/bin/moc
checking for uic-qt5... no
checking for uic5... no
checking for uic... /usr/lib/x86_64-linux-gnu/qt5/bin/uic
checking for rcc-qt5... no
checking for rcc5... no
checking for rcc... /usr/lib/x86_64-linux-gnu/qt5/bin/rcc
checking for lrelease-qt5... no
checking for lrelease5... no
checking for lrelease... /usr/lib/x86_64-linux-gnu/qt5/bin/lrelease
checking for lupdate-qt5... no
checking for lupdate5... no
checking for lupdate... /usr/lib/x86_64-linux-gnu/qt5/bin/lupdate
checking whether to build Emercoin Core GUI... yes (Qt5)
checking for Berkeley DB C++ headers... default
checking for main in -ldb_cxx-4.8... yes
checking for miniupnpc/miniwget.h... no
checking for miniupnpc/miniupnpc.h... no
checking for miniupnpc/upnpcommands.h... no
checking for miniupnpc/upnperrors.h... no
checking for boostlib >= 1.47.0 (104700)... yes
checking whether the Boost::System library is available... yes
checking for exit in -lboost_system... yes
checking whether the Boost::Filesystem library is available... yes
checking for exit in -lboost_filesystem... yes
checking whether the Boost::Thread library is available... yes
checking for exit in -lboost_thread... yes
checking whether the Boost::Chrono library is available... yes
checking for exit in -lboost_chrono... yes
checking for mismatched boost c++11 scoped enums... ok
checking for libssl... yes
checking for libcrypto... yes
checking for protobuf... yes
checking for libqrencode... no
checking for libevent... yes
checking for libevent_pthreads... yes
checking for libzmq >= 4... yes
checking whether EVP_MD_CTX_new is declared... yes
checking for rapidcheck.h... no
checking for protoc... /usr/bin/protoc
checking whether to build bitcoind... yes
checking whether to build bitcoin-cli... yes
checking whether to build bitcoin-tx... no
checking whether to build bitcoin-wallet... yes
checking whether to build libraries... yes
checking if ccache should be used... no
checking if wallet should be enabled... yes
checking whether to build with support for UPnP... no
checking whether to build GUI with support for D-Bus... yes
checking whether to build GUI with support for QR codes... no
checking whether to build test_bitcoin-qt... no
checking whether to build BIP70 support... yes
checking whether to build test_bitcoin... no
checking whether to reduce exports... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating libbitcoinconsensus.pc
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating doc/man/Makefile
config.status: creating share/setup.nsi
config.status: creating share/qt/Info.plist
config.status: creating test/config.ini
config.status: creating contrib/devtools/split-debug.sh
config.status: creating src/config/bitcoin-config.h
config.status: executing depfiles commands
config.status: executing libtool commands
=== configuring in src/univalue (/home/olej/2023/EmerCoin/emercoin.git/src/univalue)
configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local'  '--disable-dependency-tracking' '--disable-tests' '--disable-util-tx' '--disable-gui-tests' '--enable-bip70' '--disable-hardening' '--disable-debug' '--disable-shared' '--with-pic' '--enable-benchmark=no' '--with-bignum=no' '--enable-module-recovery' '--disable-jni' --cache-file=/dev/null --srcdir=.
checking whether make supports nested variables... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... none
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... mt
checking if mt is a manifest tool... no
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for g++... g++
checking whether the compiler supports GNU C++... yes
checking whether g++ accepts -g... yes
checking for g++ option to enable C++11 features... none needed
checking dependency style of g++... none
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating pc/libunivalue.pc
config.status: creating pc/libunivalue-uninstalled.pc
config.status: creating univalue-config.h
config.status: executing depfiles commands
config.status: executing libtool commands
=== configuring in src/secp256k1 (/home/olej/2023/EmerCoin/emercoin.git/src/secp256k1)
configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local'  '--disable-dependency-tracking' '--disable-tests' '--disable-util-tx' '--disable-gui-tests' '--enable-bip70' '--disable-hardening' '--disable-debug' '--disable-shared' '--with-pic' '--enable-benchmark=no' '--with-bignum=no' '--enable-module-recovery' '--disable-jni' --cache-file=/dev/null --srcdir=.
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking how to print strings... printf
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... none
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... mt
checking if mt is a manifest tool... no
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking whether make supports nested variables... (cached) yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for ar... /usr/bin/ar
checking for ranlib... /usr/bin/ranlib
checking for strip... /usr/bin/strip
checking how to run the C preprocessor... gcc -E
checking for gcc... gcc
checking whether the compiler supports GNU C... (cached) yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking dependency style of gcc... (cached) none
checking how to run the C preprocessor... gcc -E
checking dependency style of gcc... none
checking if gcc supports -std=c89 -pedantic -Wall -Wextra -Wcast-align -Wnested-externs -Wshadow -Wstrict-prototypes -Wno-unused-function -Wno-long-long -Wno-overlength-strings... yes
checking if gcc supports -fvisibility=hidden... yes
checking for __int128... yes
checking if native gcc supports -Wall -Wextra -Wno-unused-function... yes
checking for working native compiler: gcc... yes
checking for x86_64 assembly availability... yes
checking whether byte ordering is bigendian... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libsecp256k1.pc
config.status: creating src/libsecp256k1-config.h
config.status: executing depfiles commands
config.status: executing libtool commands

Build Options:
  with endomorphism   = no
  with ecmult precomp = yes
  with jni            = no
  with benchmarks     = no
  with coverage       = no
  module ecdh         = no
  module recovery     = yes

  asm                 = x86_64
  bignum              = no
  field               = 64bit
  scalar              = 64bit

  CC                  = gcc
  CFLAGS              = -g -O2 -W -std=c89 -pedantic -Wall -Wextra -Wcast-align -Wnested-externs -Wshadow -Wstrict-prototypes -Wno-unused-function -Wno-long-long -Wno-overlength-strings -fvisibility=hidden -O3
  CPPFLAGS            = 
  LDFLAGS             = 

Fixing libtool for -rpath problems.

Options used to compile and link:
  with wallet   = yes
  with gui / qt = yes
    with bip70  = yes
    with qr     = auto
  with zmq      = yes
  with test     = no
  with bench    = yes
  with upnp     = no
  use asm       = yes
  sanitizers    = 
  debug enabled = no
  gprof enabled = no
  werror        = no

  target os     = linux
  build os      = 

  CC            = gcc
  CFLAGS        = -g -O2
  CPPFLAGS      =    -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS
  CXX           = g++ -std=c++11
  CXXFLAGS      =   -fstack-reuse=none  -Wall -Wextra -Wformat -Wvla -Wswitch -Wformat-security -Wredundant-decls  -Wno-unused-parameter -Wno-implicit-fallthrough   -g -O2
  LDFLAGS       = -pthread   
  ARFLAGS       = cr
Конфигурация готова для сборки...

Ответить

Вернуться в «Финансы, деньги, платёжные системы»

Кто сейчас на конференции

Сейчас этот форум просматривают: нет зарегистрированных пользователей и 1 гость