06:04:10 o/ 06:04:18 anyone recognize this coredump? https://dpaste.com/996JFRWYV 06:06:06 this is on a 13.4 stable from last week ish but I see an old issue with a similar looking panic https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=225528 08:19:01 Anyone using sanoid and syncoid on FreeBSD? They are respectively ZFS Snapshot management tools and remote upload tools 08:19:14 I hear many good things about it but then I see stuff like this: https://github.com/jimsalterjrs/sanoid/blob/master/FREEBSD.readme 08:19:35 "Please change your root shell and make symlinks in paths", doesn't sound like very well made software :/ 08:20:04 So I'm not really sure whether it's worth the hassle 08:20:18 And if the changing of the root shell has side-effects 08:24:44 ugen2.2: at usbus2 <- how to use this as CDC-NCM device? 08:32:44 # usbconfig -d ugen2.2 set_config 1 08:32:44 cdce0 on uhub1 08:32:44 cdce0: on usbus2 08:32:48 hmm 09:12:44 ah, it's if_ure... 10:48:37 Realtek USB lan if, because bad * bad = probably good :D 10:58:41 * Alver snickers @ vkarlsen 14:37:24 Is #freebsd-pulse dead or is it just my IRC client acting up? 15:12:30 the bot left some time ago 15:13:19 geezabiscuit: ^^^ 15:15:26 Ah, thanks. 15:16:17 Is there a way to install vscode in FreeBSD? 15:18:42 I know that I can compile vscode but it asks for configuring options very frequently so I can't just leave the computer compiling for night 15:25:57 ghodawalaaman: It should be available as a pkg 15:26:51 $ pkg search vscode / vscode-1.96.2 Visual Studio Code - Open Source ("Code - OSS") 15:26:56 vkarlsen: yeah, I checked last time it wasn't available 15:27:27 Thanks 15:33:37 ghodawalaaman, only MS could fuck-up a build process like that. 15:34:16 Though I guess you could build it in a screen session and just check on it every now and again. 15:34:45 Or script something that texted or E-mailed you when CPU usage dropped. 15:34:58 Prolly both, actually. 15:35:20 yeah, I could try these. 15:35:29 surely the freebsd have already figured something out, no need to speculate :O 15:35:36 s/the freebsd/& packagers/ 15:39:51 stuff like that just isn't an issue for me 15:41:47 With the AI integration in Warp I can just run the command and let the AI interact with it, based on the instructions i provide for it at the start 15:50:18 You can avoid paused builds asking for options by doing 'make config-recursive' before starting the build. Just keep in mind your choices can pull in more dependencies with their own options, so repeat until it stops asking. 15:51:51 If you want default options all the way down, start it off with 'make -DBATCH' 19:36:17 wildeboskat: the default shell is sh now 19:57:14 yes, but that's only a mild regression 19:57:46 ah ok I didn't notice, I normally use zsh 20:08:41 but it does seem very linux centric, i probably wouldn't bother with it 20:17:48 wildeboskat: I've used sanoid and syncoid on FreeBSD since before the default shell got changed. I used the toor user instead of root. But nowadays, with root using /bin/sh this isn't a problem 20:18:01 Huh that's a good idea 20:18:05 Making another user with uid 0 20:18:41 i don't recall ever having to fiddle with symlinking perl. been using sanoid/syncoid close to 1.5 years now, before the release of 14.0-RELEASE. hm 20:19:59 The port takes care of the shebang to /usr/local/bin/perl, this becomes an issue only if you install it outside of ports/pkgs 20:23:15 I still have root's shell set to csh in some places, because I haven't seen a good reason to change it 20:44:21 Ohhh there is a port 20:44:23 I didn't realise 20:44:42 It looks like a great option, a bit like Apple timemachine 20:44:52 Except not on an external volume of course 20:44:57 But that's where syncoid can come in 20:45:21 Besides, I do a full image every month or so 22:33:40 Hi, I compiled a library on FreeBSD 13.1 that uses libhwy.so.1 and raises this error when loading: '/usr/local/lib/libhwy.so.1: Undefined symbol \"_ZNSt3__122__libcpp_verbose_abortEPKcz\"'". 22:34:19 The library I'm compiling is called vix: https://github.com/akash-akya/vix 22:34:48 It builds ok, but I get this error when the Erlang runtime tries to load. 22:36:33 Does anyone know if it's possible to avoid that "_libcpp_verbose_abort" error? 22:53:03 well you avoid that by linking the library with that symbol 22:54:35 https://releases.llvm.org/16.0.0/projects/libcxx/docs/UsingLibcxx.html i suspect the makefile for hwy creates a file with that function 22:58:02 when i'm using ocaml with opam to build/install packages, i occasionally need to prefix my `opam install` command with `C_INCLUDE_PATH=$C_INCLUDE_PATH:/usr/local/include` and/or `CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:usr/local/include` and/or `LIBRARY_PATH=$LIBRARY_PATH:/usr/local/lib` .. i wouldn't be surprised to hear that's needed there as well 22:58:40 scoobybejesus: let's try that 22:59:35 `C_INCLUDE_PATH=$C_INCLUDE_PATH:/usr/local/include CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:usr/local/include LIBRARY_PATH=$LIBRARY_PATH:/usr/local/lib opam install liquidsoap` for example 23:01:17 Mmm, no, same issue 23:04:07 Btw, this is compiled with clang 13.0.0 23:22:35 Mm, it looks like the issue is related to something else. When I try to install a dependency (libvips) I get this error: g_module_open() failed for /usr/local/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-jxl.so: /usr/local/lib/libjxl.so.0.11: Undefined symbol "_ZNSt3__122__libcpp_verbose_abortEPKcz" 23:24:43 upgrading packages before trying again... 23:39:11 that seems like an old clang 23:39:22 elliot@phil:~/$ cc -v 23:39:24 FreeBSD clang version 18.1.5 (https://github.com/llvm/llvm-project.git llvmorg-18.1.5-0-g617a15a9eac9) 23:43:43 rtprio: this is a FreeBSD 13.1, clang version 13.0.0 23:44:24 I need this version because the target platform is a jail running on TrueNAS Core that as far as I understand it supports FreeBSD 13.1 23:46:23 martinrame: You can update TrueNAS to the latest 13.3-U1 and update your jails to 13.4, if you'd like. 23:47:39 ek: thanks. First I'll create a new 13.3 jail in the dev machine to see if this builds, then copy to TrueNAS. 23:48:31 martinrame: Okey dokey. In 13.4 you'll at least get clang 18.1.6. 23:48:58 ek: let's try 13.4, then!. 23:55:26 martinrame: Likely your best bet. You may also need to make some adjustments to your compilation options. That's only a maybe, though, as I'm not familiar with the software or what it requires to successfully build and run on FBSD.