Daniel R Stromberg

Results 35 comments of Daniel R Stromberg

Hi folks. I think as one of the first integrations, if you can call it that, it might be worthwhile to just output graphviz from a standalone version of Cyberbrain....

I just noticed (I'm a relative macOS newb) that the "problem report" under "Show details" in the GUI gives a stack trace: ``` Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0...

Here's something interesting. This works: `DYLD_LIBRARY_PATH=/Applications/hello.app/Contents/Frameworks /Applications/hello.app/Contents/MacOS/hello` ...but running the same command without DYLD_LIBRARY_PATH, as before, segfaults. This might be useful for setting the executable's rpath: https://stackoverflow.com/questions/4513799/how-to-set-the-runtime-path-rpath-of-an-executable-with-gcc-under-mac-osx

Neither of these appeared to help: `install_name_tool -add_rpath "@loader_path/Applications/hello.app/Contents/Frameworks" /Applications/hello.app/Contents/MacOS/hello ` `install_name_tool -add_rpath "/Applications/hello.app/Contents/Frameworks" /Applications/hello.app/Contents/MacOS/hello `

I'm getting "recursion limit exceeded" as well, but it's on a local XFS filesystem - no CIFS or NFS involved. The directory hierarchy it's scanning is large, but shouldn't be...

BTW, I got the error in a dry run.

Here are the statistics for my XFS. The numbers summarized are just the count of /'s in each file in the filesystem. 239 (the maximum) is deeper than I expected,...

...that is, unless there are some large locals in many stack frames.

I increased maxdepth with: --- Dirlist.cc.t 2020-05-30 08:36:08.621031666 -0700 +++ Dirlist.cc 2020-05-30 08:36:11.109063875 -0700 @@ -22,7 +22,7 @@ #include "Dirlist.hh" #include "RdfindDebug.hh" //debug macros -static const int maxdepth = 50;...

On Fri, Jul 2, 2021 at 6:34 AM kwhitefoot ***@***.***> wrote: > I have a similar problem on a USB connected Toshiba Canvio 4TB disk that I > use for...