Displaying 9 results from an estimated 9 matches for "peereboom".
2012 Aug 02
0
[LLVMdev] pods
...two specific .1 files one from POD and one from Sphinx
that shows an issue you are concerned about.
I haven't encountered problems with "Sphinx crashing" generating man
pages. This sounds like something that you should file a bug for.
- Daniel
On Wed, Aug 1, 2012 at 8:15 PM, Marco Peereboom <marco at peereboom.us> wrote:
> To my absolute dismay I found out that the latest llvm docs are in rst
> format. I tried a couple of rst to man converters and the results are
> pretty bad. rst2man sort of works but spits out a lot of errors and the
> man pages don't look ve...
2012 Aug 02
2
[LLVMdev] pods
To my absolute dismay I found out that the latest llvm docs are in rst
format. I tried a couple of rst to man converters and the results are
pretty bad. rst2man sort of works but spits out a lot of errors and the
man pages don't look very good. sphinx crashes and is really too heavy.
pandoc, haskell, right.
I'd like to plead with the forces that be to bring back the pods. Pods
2012 Aug 02
1
[LLVMdev] pods
On 08/02/12 13:42, Daniel Dunbar wrote:
> I checked all of the man pages generated using Sphinx and I thought that:
>
> 1. They all looked mostly identical.
>
> 2. When they didn't, I was equally happy with the Sphinx output.
I couldn't get Sphinx to work. It would always bomb out so I gave up.
Also sphinx is pretty heavy weight which is not helpful for our
environment.
2019 Mar 02
0
[ANNOUNCE] xdm 1.1.12
...Jon TURNEY (1):
Link libXdmGreet with -no-undefined libtool flag
Julien Cristau (1):
greeter: link against -lXrender if xft is enabled
Matthieu Herrb (9):
Fix build outside of source dir. Fixes distcheck too.
replace <varargs.h> by <stdarg.h>. Spotted my Marco Peereboom with clang.
Fix format string for systems where time_t is 64 bits long.
Allow the greeter to set the input fields bg color
Remove #if 0'd code
Remove AIXV3, SCO, Unixware, OS/2 support
Unifdef X_NO_SYS_UN
Missed on arc4random() conversion.
chown before...
2006 Mar 23
1
Funding OpenSSH
...products or devices to step up and provide some financial
assistance back to the project. Please note that this request is
intended for *vendors* - our individual userbase already helps us in
every appropriate way.
You may have noticed a similar request for OpenSSH/OpenBSD funding made
by Marco Peereboom in this last couple of days, but I would like to
reiterate: money donated to the project goes directly to development,
either by funding individual developers for medium-long term projects or
by putting developers in a room together, without distractions so they
can improve OpenSSH.
Having long t...
2006 Mar 23
1
Funding OpenSSH
...products or devices to step up and provide some financial
assistance back to the project. Please note that this request is
intended for *vendors* - our individual userbase already helps us in
every appropriate way.
You may have noticed a similar request for OpenSSH/OpenBSD funding made
by Marco Peereboom in this last couple of days, but I would like to
reiterate: money donated to the project goes directly to development,
either by funding individual developers for medium-long term projects or
by putting developers in a room together, without distractions so they
can improve OpenSSH.
Having long t...
2012 Mar 20
0
[LLVMdev] Runtime linker issue wtih X11R6 on i386 with -O3 optimization
...====================================================
xorg output:
$ startx
xauth: file /home/marco/.serverauth.12707 does not exist
X.Org X Server 1.11.4
Release Date: 2012-01-27
X Protocol Version 11, Revision 0
Build Operating System: OpenBSD 5.1 i386
Current Operating System: OpenBSD i386.peereboom.us 5.1 GENERIC.MP#4 i386
Build Date: 20 March 2012 11:29:41AM
Current version of pixman: 0.24.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from c...
2012 Mar 20
0
[LLVMdev] Runtime linker issue wtih X11R6 on i386 with -O3 optimization
...am aware that this might turn a bit religous however I think that
always looking up the function pointer in PLT would eliminate this
issue. I don't see a benefit of using the GOT in this particular case.
The asm of both cases is reproduced at the end of this email.
Code tarball: http://www.peereboom.us/clang_issue.tgz
Code plaintext:
=== Makefile ===
all: app
liba.so: a.c
clang ${CFLAGS} -fpic -c a.c
clang -shared -o liba.so a.o
libb.so: b.c
clang ${CFLAGS} -fpic -c b.c
clang -shared -o libb.so b.o
app: liba.so libb.so
clang ${CFLAGS} -fpic app.c -o app
clean:
rm -f a.o b.o liba.so...
2012 Jun 13
0
[LLVMdev] [Patch] compiler-rt lib/int_endianness.h
Attached is a patch to pull in the correct endian.h file on the BSD'. I
checked all OS' on the defined list and they all require machine
instead of sys. While there I added __Bitrig__ which is a newly
launched OS that uses clang as it's compiler.
diff --git a/lib/int_endianness.h b/lib/int_endianness.h
index 70bd177..f821f9a 100644
--- a/lib/int_endianness.h
+++