04:02:54 heh, I just got my first email promoting "Bitcoin Billionaire" program. How does this scam work? I am failing to see the angle 06:43:39 hello 06:51:09 do anyone know how to make a debug version from depends 06:51:30 make depends target-debug.... 07:24:58 anyone know howto compile a debug version from depends 07:25:11 make depends target=x86_64-linux-gnu-debug?? 07:25:18 didnt work until now 08:04:53 how to make depends debug version? 09:27:45 how to make debug version from depends 09:27:57 make depends target=linux-debug? 09:33:14 any help please 09:33:48 the only version possible is release? 11:53:16 can anyone help on how to compile from depends monero debug version 11:54:04 for version release make depends target=x86..linux works but how to compile debug version 11:56:45 newyearday: don’t use depends for debug version 11:56:57 why 11:57:13 because it’s easier 11:57:24 if you want to use depends for debug you have to figure it out 11:58:23 i tried to understand how but no success after many hours... 11:59:36 and because boost is installed wrong on base system is easier to install with depends 19:10:58 vtnerd: Having some issues with the build for Testnet Dandelion++ 19:11:19 Verifying a normal Monero build works today, but haven’t had any issues in the past 19:11:27 Any new deps for the branch? 19:11:42 I noticed readline-devel was missing on my system, which hadn’t been an issue in the past 19:11:46 Can you post a build log? 19:11:54 Yeah I’ll dump one shortly 19:12:09 What’s the best way to capture from the make command? 19:12:17 Piping seems to not work properly 19:13:10 i just copy it by selection :) but piping should work I guess 19:13:19 It’s quite long but Ill try haha 19:14:01 Pipe is capturing most output so far 19:14:14 But not notes or errors 19:14:18 So Idk if that will be helpful 19:14:57 Just gonna try a copy and paste. 19:15:02 https://stackoverflow.com/questions/2297536/how-do-i-capture-all-of-my-compilers-output-to-a-file/2297552 19:15:29 Duh so simple, not sure why I didn’t think of that 19:19:42 https://paste.centos.org/view/95274c85 19:25:37 fort3hlulz: what OS are you using? 19:26:07 can you try to update boost and maybe your compiler? 19:26:27 Ubuntu 18.04 has boost 1.65 19:30:06 first time this happened in a long time 19:30:18 * selsta wrong chat 19:30:28 CentOS 7 19:30:42 Boost is 1.70 manually compiled, GCC is 9.2.0 19:30:46 What should I be on? 19:31:05 That has worked perfectly for Master Monero builds previously 19:31:26 ah I didn’t look properly, it said Boost 1.58 found. but it used 1.71 19:31:47 Yeah I manually set the boost/gcc versions to get past the old ones in CentOS 7 19:32:12 boost 1.70 and GCC 9.2.0 should be good 19:32:43 was this with a fresh git clone? 19:32:47 Yes 19:33:35 Just running a make -j$(nproc) release within the dandelionpp folder 19:33:38 Nothing fancy 19:34:18 dandelionpp folder? 19:34:34 The git clone makes a weird structure 19:34:41 Feature/dandelionpp 19:35:36 Trying to ignore the folder structure he has in the Reddit post and just cloning his repo 19:36:29 `git clone --recursive https://github.com/vtnerd/monero.git` and then `git checkout feature/dandelionpp` should be enough. 19:38:13 Doing git submodule update --init --force as well 19:39:10 That seems to be working 19:39:23 Reddit post wasn’t clear and I missed the step to checkout the right branch 19:39:29 Thanks selsta :) 19:40:17 ok nice :D 19:41:54 fort3hlulz: you are right, the command i posted is wrong, i forgot to add --branch. Fixing now 19:42:29 Thanks! 19:42:41 Couldn’t figure out what I was doing wrong haha 19:44:13 My bad :) 19:50:54 FYI the command to clone the correct branch is: git clone --recursive https://github.com/vtnerd/monero.git --branch feature/dandelionpp