I notice in my kcrash backtrace captures that sometimes I see references to files in "dev/shm." That is the location for tmpfs/$TMP on my system, where I build packages.
Are those "dev/shm" references normal or am I doing something wrong with creating my debugging symbol packages?
It could be rpath references. Last time I built Trinity Qt3 (for 3.5.13) my Qt3 package was f*cked up with /tmp/* rpaths.
Thanks. Does that mean I should build all packages with rpath explicitly disabled?
cmake: -DCMAKE_SKIP_RPATH=OFF
automake: --disable-rpath
Darrell