-
selsta
kayabaNerve: can you elaborate? I don’t think there was any CCS related criticism from devs yet
-
kayabaNerve
Sorry, managing some IRC stuff on my end
-
kayabaNerve
I was referring to the commentary on that issue, suggesting that his proposal is likely to struggle as he hasn't done XMR work before
-
kayabaNerve
So I love the CCS, yet I feel that's unfortunate. That said, it may still be the best system. I was just commenting there ways to deal with that edge case
-
kayabaNerve
selsta ^^
-
selsta
kayabaNerve: yea in general we prefer CCS from devs who have a history of contributing as there are not unlimited community funds, but it’s not a requirement.. it usually gets decided on a case by case basis
-
kayabaNerve
Right, I get that.
-
kayabaNerve
selsta: To clarify, it wasn't just that they would gain lass traction. It was that they were asked to do work for free to gather good faith, instead of acknowledging escrow and review should be able to balance it out. I don't actually have a stake in the proposal, personally think it may be mispriced, and love developers contributing just to help out. Just commenting on the tone, despite the overall great success of the program
-
fluffypony
xiphon: sure, uploading now
-
fluffypony
-
fluffypony
I don't think this is the platform for CCS discussions, necessarily, but I agree with kayabaNerve - we have a mechanism for dealing with failed proposals, and if it's kept small (eg. a single feature) then it should get pushed through quickly
-
fluffypony
if w don't embrace new devs, how will they ever become "old" devs
-
kayabaNerve
Thanks, fluffypony :) Have a suggestion for a better channel?
-
fluffypony
#monero-community I think
-
TrasherDK
Where do I find source for required library openpgm ?
-
kayront
27blltx6kt26k65umbs2tme6rhv4i7rhagn…n/cake-wallet-more-suggestions.html -- "Ability to save >1 Address For Each Contact" and "Ease Creation of Watch Wallets" are probably of interest to discuss here
-
endogenic
-
TrasherDK
???
-
TrasherDK
I'm trying to build
github.com/vtnerd/monero-lws and it seems I'm missing something. I get "Unable to find required Monero library wallet-crypto"
-
moneromooo
Might be libcncrypto.{a,so}. Check the makefile near that message.
-
moneromooo
Or could be the supercop repo.
-
moneromooo
Maybe it wants submodules, check whether it does and you init/updated them, if any.
-
TrasherDK
A fresh clone recursive, doing submodule init & update does nothing.
-
TrasherDK
The CMakeList.txt is looking for "wallet-crypto" in MONERO_BUILD_DIR. No such file there.
-
moneromooo
Do you have a recent monero tree ? This looks to be the shim over supercop.
-
moneromooo
Which was merged very recently.
-
TrasherDK
Yes. Cloned and build monero release-v0.16 just prior to this.
-
TrasherDK
And "git fetch origin pull/6612/head:pr-6612 && git rebase pr-6612"
-
TrasherDK
head\:pr-6612
-
TrasherDK
:s
-
TrasherDK
I can't build master because the qrcode stuff.
-
TrasherDK
Building master ends with: "monero-src/external/qrcodegen/QrCode.cpp:32:"
-
TrasherDK
/usr/include/c++/5.5.0/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
-
TrasherDK
#error This file requires compiler and library support \
-
iDunk
#6766
-
TrasherDK
I'll take a look at #6766 Thanks.
-
TrasherDK
Okay. Building master....
-
TrasherDK
master done. slow on only 2 threads :)
-
dsc_
TrasherDK: install ccache :)
-
TrasherDK
ccache-3.2.4-x86_64-1
-
TrasherDK
monero-lws : Cannot specify link libraries for target "monero::libraries" which is not built by this project.
-
TrasherDK
monero-lws : CMakeList.txt : 137
-
TrasherDK
target_include_directories(monero::libraries SYSTEM
-
TrasherDK
INTERFACE
-
TrasherDK
${Boost_INCLUDE_DIR}
-
TrasherDK
"${MONERO_BUILD_DIR}/generated_include"
-
TrasherDK
"${MONERO_SOURCE_DIR}/contrib/epee/include"
-
TrasherDK
"${MONERO_SOURCE_DIR}/external/easylogging++"
-
TrasherDK
"${MONERO_SOURCE_DIR}/external/rapidjson/include"
-
TrasherDK
"${MONERO_SOURCE_DIR}/src"
-
TrasherDK
)
-
TrasherDK
Paths to MONERO_BUILD_DIR and MONERO_SOURCE_DIR are pointing to the right directories.
-
vtnerd
TrasherDK : pull latest changes, I fixed the cmake issue for that
-
vtnerd
the error means your build will not have amd64 ASM included (not built on that system)
-
vtnerd
the cmake is sketchy because it tries to read from the monero build directory and rip out some things
-
iDunk
-
vtnerd
for what feature?
-
iDunk
Cannot specify include directories for imported target "monero::libraries".
-
iDunk
Cannot specify link libraries for target "monero::libraries" which is not built by this project.
-
iDunk
-
iDunk
Those errors were with cmake version 3.10.2.
-
vtnerd
hmm cmake 3.11 is fairly new, so I'll try to figure out a workaround to relax that requirement
-
TrasherDK
After a fresh clone, I get same errors.
-
TrasherDK
CMake Error at CMakeLists.txt:144 (target_include_directories):
-
TrasherDK
Cannot specify include directories for imported target "monero::libraries".
-
TrasherDK
CMake Error at CMakeLists.txt:153 (target_link_libraries):
-
TrasherDK
Cannot specify link libraries for target "monero::libraries" which is not
-
TrasherDK
built by this project.
-
TrasherDK
$ cmake -DMONERO_SOURCE_DIR=$(realpath $(pwd)/../../monero/monero-src/) -DMONERO_BUILD_DIR=$(realpath $(pwd)/../../monero/monero-build/) $(realpath $(pwd)/../monero-lws-source/)
-
TrasherDK
If cmake version is important, the version on Slackware 14.2 is cmake-3.5.2
-
TrasherDK
.time
-
vtnerd
the fix I pushed was for the wallet-crypto library issue
-
iDunk
vtnerd: I tried to build on Ubuntu 20.04 and there's also this
paste.ubuntu.com/p/sxxY4mgRYX
-
iDunk
If I comment out the test, there are undefined references to boost libs, openssl, etc.
-
iDunk
If I add `set(Boost_NO_BOOST_CMAKE ON)` to CMakeLists.txt, the test passes but not the linking. There are the same undefined references to system libs.
-
TrasherDK
vtnerd: The wallet-crypto library issue was fixed by building monero master. I had release-v0.16 before that.
-
TrasherDK
Or maybe you fixed the wallet-crypto thing while I was building monero :)
-
vtnerd
yeah it might not work with release-v0.16 at all due to internal changes
-
vtnerd
I'll likely create a develop-0.17 branch separate from the develop branch for this reason