JLinX – Blog

Weblog von Jan Linxweiler

Linux-Befehle zur Ausgabe von Systeminformationen

Filed under: Linux — Jannis at 9:06 am on Tuesday, June 27, 2006

uname -a

StickOut: Entstehung einer Kurznotiz-Anwendung in .NET 2.0

Filed under: Development,Windows — Jannis at 9:15 pm on Friday, June 23, 2006

Threading in C#

Filed under: Bücher,Development,Windows — Jannis at 10:01 am on Friday, June 23, 2006

open eBook

Welcome to the MSDN Wiki Beta!

Filed under: Development,Windows — Jannis at 9:59 am on Friday, June 23, 2006

http://msdnwiki.microsoft.com/

Windows Mobile Starter Kits

Filed under: Development,Windows — Jannis at 9:57 am on Friday, June 23, 2006

http://msdn.microsoft.com/mobility/windowsmobile/howto/starterkits/default.aspx

Resources for IM Client Developers

Filed under: Development — Jannis at 2:31 pm on Friday, June 9, 2006

Joust is a library to use AOL instant messenger services.

Daim supports AOL & ICQ.

To use MSN Messenger:

Usefull information about the MSN Messneger protocol.

Static linking libstdc++ under Linux

Filed under: Development,Linux — Jannis at 12:00 pm on Wednesday, June 7, 2006

I had a problem linking the libstdc++ staticly under Linux.

Here I found a solution.

To build a staticly linked binary use:

-static

To link the STL staticly use:

-static-libgcc -L.

and ad a symbolic Link to the local directory:

ln -s `g++ -print-file-name=libstdc++.a`