David Fang
David Fang
This is on linux. Not sure if it looks the same on other platforms.
[Sorry, I've been out for a few weeks.] From the original comment, this might seem more reasonable: ``` $ touch foo $ ln -s foo bar $ fsatrace erwdtmq /dev/stdout...
Using the above `rm` example, what would your proposed trace look like?
> ``` > r|/usr/bin/rm > q|/home/fangism/foo > d|/home/fangism/bar > ``` This is an improvement, and should let us proceed further.
Thanks for filing this request! Pasting some of my earlier notes from chat: Right now, syntactically, device type looks like this in PRS: ``` [hvt] x -> y- ``` The...
I'm thinking that an alternative to ingesting a config file would be to emit generic transistor attributes that could be post-processed. Let's say we enumerate your transistor types like: ```...
Actually, this is fallout from an erroneous call to tr from the libtool script. libhacktcommon.la _should_ have libltdl in its dependent libraries. See http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12156
The faulty libtool script contains: (turn spaces into newlines.) SP2NL="tr " (turn newlines into spaces.) NL2SP="tr ^M " I grabbed an excerpt from a working libtool script: (turn spaces into...
autoconf 2.69 vs. 2.68 made no difference. POSIXLY_CORRECT made no difference. locale though: Jon: jtse@ephemeral:~$ locale LANG="en_US.utf-8" LC_COLLATE="en_US.utf-8" LC_CTYPE="en_US.utf-8" LC_MESSAGES="en_US.utf-8" LC_MONETARY="en_US.utf-8" LC_NUMERIC="en_US.utf-8" LC_TIME="en_US.utf-8" LC_ALL= me:LANG= LC_COLLATE="C" LC_CTYPE="C" LC_MESSAGES="C" LC_MONETARY="C" LC_NUMERIC="C"...
forcing my LC_ALL and LANG to en_US.utf-8 didn't fix NL2SP/SP2NL in my config.status either /me scratches head Anyways, my goal is to fix so that my config.status produces reasonable values...