Stories
Slash Boxes
Comments

News for nerds, stuff that matters

GCC Compiler Finally Supplanted by PCC?

Posted by ScuttleMonkey on Mon Sep 17, 2007 11:03 AM
from the all-good-things-must-end dept.
Sunnz writes "The leaner, lighter, faster, and most importantly, BSD Licensed, Compiler PCC has been imported into OpenBSD's CVS and NetBSD's pkgsrc. The compiler is based on the original Portable C Compiler by S. C. Johnson, written in the late 70's. Even though much of the compiler has been rewritten, some of the basics still remain. It is currently not bug-free, but it compiles on x86 platform, and work is being done on it to take on GCC's job."

Related Stories

This discussion has been archived. No new comments can be posted.
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • by RLiegh (247921) on Monday September 17, @11:06AM (#20637571)
    (http://slashdot.org/ | Last Journal: Sunday July 29, @04:31PM)
    I notice that TFS doesn't say that anyone is actually able to compile anything (other than PCC) with it. The BSD folks would love to have a BSD-licensed drop-in replacement for GCC; but it doesn't sound like this is it. Not yet at least.

    Wake me up when you're able to use PCC instead of GCC to do a 'make world' (or ./build.sh or whatever).
    • Re:"Nothing for you to see here" indeed... by DiegoBravo (Score:3) Monday September 17, @11:10AM
    • Interesting... (Score:5, Insightful)

      by cromar (1103585) on Monday September 17, @11:12AM (#20637669)
      I really don't see any point in implementing a new C compiler under the BSD lisence. There's no reason to duplicate effort: it's not like the compiled binaries would be under the GPL. And any GPL libraries you link to, you wouldn't need to distribute (thus avoiding the GPL). So, really, there's no point in duplicating effort on a BSD lisenced compiler. Correct me if I'm wrong.
      [ Parent ]
      • Re:Interesting... (Score:5, Insightful)

        by everphilski (877346) on Monday September 17, @11:20AM (#20637807)
        (Last Journal: Tuesday June 06 2006, @01:50PM)
        Principle?

        I don't know, I'm not a BSD user, but as much as RMS likes to claim that 'linux' is GNU/linux, maybe BSD users want their OS to be self reliant?

        Would you like to compile Linux using a microsoft compiler? :)
        [ Parent ]
        • Re:Interesting... (Score:5, Insightful)

          by Anonymous Coward on Monday September 17, @11:29AM (#20637983)

          Would you like to compile Linux using a microsoft compiler? :)
          If it produced the best code, why not? People already compile Linux using the Intel compiler.

          [ Parent ]
          • Re:Interesting... by everphilski (Score:2) Monday September 17, @11:39AM
            • Re:Interesting... (Score:5, Interesting)

              by sunwukong (412560) on Monday September 17, @11:51AM (#20638399)
              I believe it was de Raadt that once mentioned he'd prefer a non-optimizing compiler that produced simple, bullet-proof, bug-free code, i.e., in terms of the OS and its base tools, he prefers correct to fast.
              [ Parent ]
              • Re:Interesting... (Score:4, Funny)

                by Anonymous Coward on Monday September 17, @11:58AM (#20638547)
                And he continues to write code in C...why?
                [ Parent ]
              • Re:Interesting... (Score:4, Insightful)

                by Austerity Empowers (669817) on Monday September 17, @01:05PM (#20639837)
                But modifying, even forking GCC is practical and rational, whereas making your own, new, compiler and supporting it for all eternity is not. I can understand much of the BSD bent on licenses, but in this case...I don't see it. Compilers are never "done", and writing one with a license that does not ensure other people's updates make it in is just ensuring that the author is perpetually supporting this himself.

                I can understand some applications having closed source licenses...but a compiler is a means, not an end...it really just seems painful.

                [ Parent ]
              • Re:Interesting... by Splab (Score:3) Monday September 17, @01:45PM
              • Re:Interesting... by Cyclops (Score:2) Wednesday September 19, @06:23PM
              • And he continues to write code in C...why?

                Auctually if I could write in C as well as him, I would do so more often. The problem is not him writing in C, its other people writing in C that are not as good as him. Do to the scope of his work, him writing in C does not lead to more bad C being written. So I'm auctually thankful he is coding in C.

                That being said, he should encourage lesser programmers (including myself) to specifically not code in C.

                [ Parent ]
              • Re:Interesting... by Anonymous Coward (Score:1) Monday September 17, @12:38PM
              • Re:Interesting... (Score:5, Insightful)

                by Anonymous Coward on Monday September 17, @01:36PM (#20640415)

                I am the GPP, incidentally, and while I'm pleased I got modded up, I certainly wasn't going for funny :). I'm sorry, but C is just a poor choice for ensuring correctness.

                First of all, open up your copy of the C standard (any of them will do) and grep for the phrase "undefined behaviour". C was standardized in a time when everyone and their dog had their own C compiler. Each C compiler did things in a different way, often in contradictory ways. The C standard came along and said "hey, you know what? You're ALL right". I'm being facetious, and the C standard has done a great job in promoting C, but the C standard has really not evolved very far in terms of guaranteeing semantics.

                I don't mean to bring this up to say that "you can't write correct code" in C or such nonsense. Obviously it's easy with good habits (I recommend comp.lang.c as the best place to pick up these habits) to write conforming and well-defined code. But, if you're trying to verify code that's already been written, either by hand or via some automated tool like a static analyzer, it is painful.

                The second problem with C is that it allows a lot of features that make verification of semantics difficult. Pointer aliasing, global variables (even "extern" global variables!!), etc. make static analysis dreadful. If you want to perform static analysis properly on C programs, it's hard to get around whole-program analysis, which is why no one uses static analysis with C code :). Seriously, what does C have beyond lint? How many people even use lint? It's not very useful.

                Of course static analysis is not the end-all be-all of ensuring correct code. There's good coding habits and testing and profiling and whatnot too. But, I would argue that whatever effort can be put into verifying C code can be better put into code in other languages. The semantics of C are sometimes loosely defined, and very often far-reaching, preventing the use of modular reasoning. Whole-program analysis is not your friend.

                What would be really cool is to see from someone like the OpenBSD crowd, if they're so keen on C, develop some verification tools that maybe only work on a very, very restricted subset of C. Any code which does not conform to this restricted "more easily verifiable" subset of C in the core OS would be rejected. I don't know how practical it would be, but it would be cool to see :). I mean as an academic, obviously I think we should all be using Z [wikipedia.org], but I understand this doesn't make good sense in a lot of real-world projects. But you want to get serious about correctness, don't pussy foot around: get serious about correctness.

                [ Parent ]
              • Re:Interesting... (Score:4, Informative)

                by Goaway (82658) on Monday September 17, @02:11PM (#20640989)
                (http://wakaba.c3.cx/)

                But modifying, even forking GCC is practical
                You haven't looked at the gcc codebase, have you?
                [ Parent ]
              • Re:Interesting... by lyberth (Score:2) Monday September 17, @02:49PM
              • Re:Interesting... by Cro Magnon (Score:3) Monday September 17, @02:57PM
              • Re:Interesting... by j-pimp (Score:3) Monday September 17, @03:20PM
              • Mod Parent Up by Spy Hunter (Score:1) Monday September 17, @03:29PM
              • Re:Interesting... by fatal wound (Score:3) Monday September 17, @03:33PM
              • Re:Interesting... by pthisis (Score:3) Monday September 17, @03:37PM
              • Re:Interesting... by Bluesman (Score:3) Monday September 17, @03:43PM
              • Re:Interesting... by Goaway (Score:3) Monday September 17, @04:16PM
              • Re:Interesting... by SanityInAnarchy (Score:2) Monday September 17, @04:58PM
              • Re:Interesting... by Estanislao Martínez (Score:1) Monday September 17, @05:15PM
              • Re:Interesting... by nuckfuts (Score:2) Monday September 17, @07:15PM
              • Re:Interesting... by Mantaar (Score:1) Monday September 17, @07:32PM
              • c++ is where it's at by sentientbrendan (Score:2) Monday September 17, @09:09PM
              • Re:Interesting... by Pseudonym (Score:2) Monday September 17, @11:00PM
              • We've had safe arrays since i286 by tepples (Score:2) Monday September 17, @11:05PM
              • Relative effort of knowing what one is doing? by tepples (Score:1) Monday September 17, @11:11PM
              • Re:Interesting... by Anonymous Coward (Score:1) Monday September 17, @11:59PM
              • Re:Interesting... by ClosedSource (Score:2) Tuesday September 18, @12:05AM
              • Re:Interesting... by majiCk (Score:1) Tuesday September 18, @12:27AM
              • Re:Interesting... by Secret Rabbit (Score:2) Tuesday September 18, @12:54AM
              • Re:Interesting... by sfraggle (Score:2) Tuesday September 18, @02:28AM
              • Re:Interesting... by Hal_Porter (Score:2) Tuesday September 18, @02:48AM
              • Re:Interesting... by delt0r (Score:2) Tuesday September 18, @03:02AM
              • Nothing wrong with UB by PhilHibbs (Score:2) Tuesday September 18, @03:20AM
              • Bullshit. by SanityInAnarchy (Score:2) Tuesday September 18, @04:11AM
              • Re:Interesting... by thogard (Score:1) Tuesday September 18, @05:17AM
              • Re:Interesting... by Viol8 (Score:2) Tuesday September 18, @05:46AM
              • Mod parent insightful! by Eivind Eklund (Score:2) Tuesday September 18, @09:14AM
              • Re:Mod parent insightful! by Goaway (Score:2) Tuesday September 18, @09:28AM
              • Re: Right on by Douglas Goodall (Score:1) Tuesday September 18, @08:20PM
              • Re: Right on by Hal_Porter (Score:2) Tuesday September 18, @10:22PM
              • Re:Mod parent insightful! by Eivind Eklund (Score:2) Wednesday September 19, @02:46AM
              • Re:Forking, then maintaining... by antoineL (Score:1) Monday September 24, @08:05AM
              • learn to write correct C by Joseph_Daniel_Zukige (Score:1) Thursday September 27, @06:34AM
              • but what language do you propose? by Joseph_Daniel_Zukige (Score:1) Thursday September 27, @06:48AM
              • 9 replies beneath your current threshold.
          • Re:Interesting... by BokLM (Score:2) Monday September 17, @11:58AM
          • If it produced the best code, why not? by benhocking (Score:2) Monday September 17, @01:09PM
          • 1 reply beneath your current threshold.
        • Re:Interesting... by Jeff DeMaagd (Score:3) Monday September 17, @11:42AM
          • Re:Interesting... (Score:4, Insightful)

            by Tim C (15259) on Monday September 17, @11:47AM (#20638329)
            The GNU/Linux thing was kind of retarded given that Linux distributions feature code from a lot of different licenses, and GNU is the only one that's mentioned?

            The justification I've usually seen for that is that GNU is the single biggest "contributor", as it were, particularly with respect to gcc, the command tools, etc. More than just that, though, it could be argued that without GNU, Linux would just be a kernel, with no user space to run. Of course, it could equally be argued that without Linux, the GNU user space tools would just be a nice collection of tools with no OS to run on...
            [ Parent ]
          • Re:Interesting... by Chandon Seldon (Score:3) Monday September 17, @01:00PM
            • Re:Interesting... (Score:5, Insightful)

              by Nevyn (5505) * on Monday September 17, @01:47PM (#20640607)
              (http://www.and.org/ | Last Journal: Thursday December 07 2006, @05:00PM)

              Let's at least get RMS's position right:

              Better idea, let's just get history correct.

              The GNU project was founded in 1984 to create a free operating system.

              Ok, true enough.

              In 1991, they were almost completely finished - they had written every essential component of a Unix-like operating system except for a kernel.

              Sure, and I've almost created a free engery device ... I've done everything apart from this one bit that creates energy for free. Also, GNU did not "create" everything else apart from the kernel ... they created some pieces and were doing the distribution work, so other people "donated" their work.

              Linus came along, wrote the Linux kernel,

              True enough.

              combined it with the almost-complete GNU system, and called the whole thing Linux.

              Not even close to true, Linux has only ever distributed the kernel ... other people combined it and called the whole things like "Red Hat Linux" or "Slackware Linux", GNU should/could have done this but had not bothered to do the work to make a usable distribution (as more than a collection of tarballs) and were happily ignoring Linux and telling everyone else to ignore it and use GNU-Hurd when it would be ready "any time now". This was pretty obvious naming at the time, we didn't call Solaris "GNU/Solaris" when we installed GCC, GNU-tar etc. on it.

              The GNU people were rightly upset that they were getting no credit for their work (to build a complete Unix-like OS).

              They got a huge amount of credit, for the work they did. They just didn't get their name in lights ... because they refused to do the work required for that. Then they complained and wanted more recognition than anyone else got who'd done the same amount of work as they had (like Perl or Xorg etc.) ... this created a "slight" backlash by people who actually know what happened.

              [ Parent ]
            • Re:Interesting... by mdielmann (Score:2) Monday September 17, @02:00PM
            • Re:Interesting... by SEE (Score:2) Monday September 17, @02:41PM
            • Re:Interesting... by Bluesman (Score:2) Monday September 17, @03:49PM
          • Re:Interesting... by Mr. Slippery (Score:1) Monday September 17, @01:28PM
          • The wisdom of RMS' "hot air" by jbn-o (Score:2) Monday September 17, @03:45PM
          • 1 reply beneath your current threshold.
        • OpenRCS by James Youngman (Score:2) Monday September 17, @04:25PM
        • Re:Interesting... by TehZorroness (Score:1) Monday September 17, @05:30PM
        • No Microsoft compiler should ever be used by SpaceLifeForm (Score:2) Monday September 17, @11:52PM
        • 1 reply beneath your current threshold.
      • The licence is just the top of the iceberg by DiegoBravo (Score:3) Monday September 17, @11:24AM
        • Re:The licence is just the top of the iceberg by tknd (Score:1) Monday September 17, @11:31AM
          • by Anonymous Conrad (600139) on Monday September 17, @11:52AM (#20638401)

            The whole design of GCC is perverted so that someone cannot easily extract a front-end or back-end. This is broken by design, as the GPL people do believe this would make it easier for commercial entities to `steal' a front-end or back-end and attach it to a proprietary code-generator (or language).
            That's entirely wrong. RMS has been worried about this, and he (through the FSF who own the copyright) have previously objected to any patches that serialize the GCC's intermediate state for just this reason. (Although GCC's new link-time optimization work will change this.)

            GCC's intermediate formats GIMPLE and GENERIC are based on a research compiler, not a deliberate perversion. There's no technical steps to stop reuse, and indeed it has been done - Sun distribute the GCC 4.0.4 front-end altered to use their own SPARC code generator as a back-end.
            [ Parent ]
          • by julesh (229690) on Monday September 17, @11:53AM (#20638443)
            Well that explains a lot. And here I was thinking that all modern compilers were designed correctly with a front-end and back-end. So much for academics.

            Actually, the post you're replying to is total bollocks. GCC has had a clear divide between front and back end (not to mention a source-language independent middle layer for performing optimizations) since I first looked at it in about 1996. Each layer is hideously complex, but they are all there.
            [ Parent ]
          • Re:The licence is just the top of the iceberg by bockelboy (Score:3) Monday September 17, @12:05PM
          • Re:The licence is just the top of the iceberg by jc42 (Score:2) Monday September 17, @12:16PM
      • Re:Interesting... (Score:5, Interesting)

        by Anonymous Coward on Monday September 17, @11:28AM (#20637951)
        It has less to do with the license and more to do with GCC's increasingly spotty support for some of the hardware platforms that NetBSD and OpenBSD run on. That and GCC internals are a maintenance nightmare, and its development process is getting even less commmunity-driven than it was before (which was never that much). Asking for a new compiler warning might take anywhere from a day to years just to get a response. The license is definitely gravy though.

        The BSD license that PCC is under, I understand, is actually a problem even to the BSD folks: PCC is actually extremely old (it was originally written for the PDP11!) and apparently it still carries the advertising clause.
        [ Parent ]
      • Re:Interesting... (Score:4, Insightful)

        by Brandybuck (704397) on Monday September 17, @11:33AM (#20638077)
        (http://www.usermode.org/ | Last Journal: Tuesday April 17 2007, @09:13PM)
        Reason 1) Avoid a monoculture

        Reason 2) Competition

        Reason 3) Choice

        Reason 4) Tweak Stallman's nose
        [ Parent ]
      • Why not? by LWATCDR (Score:2) Monday September 17, @11:34AM
      • Re:Interesting... by Antony.Muss (Score:1) Monday September 17, @12:00PM
      • Re:Interesting... by Nicolay77 (Score:2) Monday September 17, @01:30PM
      • Re:Interesting... by jellomizer (Score:2) Monday September 17, @02:14PM
      • Re:Interesting... by PremiumCarrion (Score:1) Monday September 17, @02:42PM
      • Re:Interesting... by numo (Score:1) Monday September 17, @04:15PM
      • Re:Interesting... by jesterzog (Score:2) Monday September 17, @04:43PM
      • There's no reason to duplicate effort (WRONG) by bug1 (Score:2) Monday September 17, @06:35PM
      • Re:Interesting... by WindBourne (Score:3) Monday September 17, @11:29AM
      • Re:Interesting... by peterpi (Score:2) Monday September 17, @11:37AM
      • Re:Interesting... by jc42 (Score:2) Monday September 17, @12:11PM
      • Re:Interesting... by JWSmythe (Score:2) Monday September 17, @02:24PM
      • Re:Interesting... by nuzak (Score:2) Monday September 17, @03:18PM
      • 5 replies beneath your current threshold.
    • Re:"Nothing for you to see here" indeed... by Anonymous Coward (Score:1) Monday September 17, @11:12AM
    • Re:"Nothing for you to see here" indeed... by Sigismundo (Score:2) Monday September 17, @11:13AM
    • Re:"Nothing for you to see here" indeed... by MissP (Score:3) Monday September 17, @11:16AM
      • by TheRaven64 (641858) on Monday September 17, @11:46AM (#20638303)
        (http://theravensnest.org/ | Last Journal: Sunday October 07, @07:05AM)
        This has been on Undeadly for a few days now. There was a very informative post by Marc Espie [undeadly.org] (who maintains GCC on OpenBSD) explaining this.

        This has been a long time coming. If you've ever looked at GCC code, you'll be familiar with the feeling of wanting to claw your eyes out (I had to for an article on the new Objective-C extensions *shudder*). I am somewhat surprised it's PCC not LLVM, but it makes sense. OpenBSD wants a C compiler in the base system, that can compile the base system and produces correct code. Support for C++, Objective-C, Java and Fortran would all be better off in ports. PCC is faster than GCC, smaller than GCC, more portable than GCC, easier to audit than GCC, and already compiles the OpenBSD userspace. I wouldn't be surprised if it replaces GCC in the OpenBSD base system soon. If it does, GCC (or maybe LLVM) will still probably be one of the first things I install from ports, but I'd still regard it as a good idea.

        [ Parent ]
        • by synthespian (563437) on Monday September 17, @01:26PM (#20640215)
          Here's the content (just so it stays in this Slashdot thread and gets archived here).

          Re: BSD Licensed PCC Compiler Imported (mod 21/25)
          by Marc Espie (213.41.185.88) (espie@openbsd.org) on Sun Sep 16 13:28:48 2007 (GMT)
          > > I am saying think this through and carefully. Rewriting a giant suite of programs just because you don't agree with the philosophy behind it sounds awful to people who have no stakes in BSD licenses.
          >
          > It's not just the licence that is a concern about the GCC suite, it's dropping support for hardware that OpenBSD supports, it's fluctuating compilation quality and it's licence are all matters for concern to users.

          The licence is just the top of the iceberg.

          GCC is developed by people who have vastly different goals from us. If you go back and read the GCC lists, you'll notice several messages by me where I violently disagree with the direction it's following. Here is some *more* flame material.

          - GCC is mostly a commercial compiler, these days. Cygnus software has been bought by redhat. Most GCC development is done by commercial linux distributors, and also Apple. They mostly target *fast* i386 architectures and PowerPC. A lot of work has been done on specmarks, *but* the compiler is getting bigger and bigger, and slower and slower (very much so).

          - GCC warnings are not *really* useful. The -Wall flag shows many right things, and quite a few wrong issues.

          - There is a lot of churn in GCC which ends up with it no longer supporting some architectures that are still relevant to us.

          - The whole design of GCC is perverted so that someone cannot easily extract a front-end or back-end. This is broken by design, as the GPL people do believe this would make it easier for commercial entities to `steal' a front-end or back-end and attach it to a proprietary code-generator (or language). This is probably true. This also makes it impossible to write interesting tools, such as intermediate analyzers. This also makes it impossible to plug old legacy back-ends for old architectures into newer compilers.

          - As a result, you cannot have the new interesting stuff from newer GCC without also losing stuff... every GCC update is an engineering nightmare, because there is NO simple choice. You gain some capabilities, and you also lose some important stuff.

          - it's also very hard to do GCC development. Their branching system makes it very likely that some important work is falling between the cracks (and this happens all the time). If you develop code for GCC, you must do it on the most recent branch, which is kind of hard to do if your platform is currently broken (happens *all the time* if you're not running linux/i386). Even when you conform, it's hard to write code to the GNU coding standards, which are probably the most illegible coding guidelines for C. It's so obvious it was written by a lisp programmer. As a result, I've even lost interest into rewriting and getting in the GCC repository a few pieces.

          - some of their most recent advances do not have a chance to work on OpenBSD, like preparsed includes, which depend on mmap() at a fixed location.

          - there are quite a few places in GCC and G++ where you cannot have full functionality without having a glibc-equivalent around.

          - some of the optimisation choices are downright dangerous, and wrong for us (like optimizing memory fills away, even if they deal with crypto keys).

          - don't forget the total nightmare of autoconf/libtool/automake. Heck, even the GCC people have taken years to update their infrastructure to a recent autoconf. And GCC is *the only program in the ports tree* that actually uses its own libtool. Its configuration and reconfiguration fails abysmally when you try to use a system-wide libtool.

          I could actually go on for pages...

          I've actually been de facto maintainer of GCC on OpenBSD for a few years by now, and I will happily switch to another compiler, so frustrating has
          [ Parent ]
        • Re:"Nothing for you to see here" indeed... by VENONA (Score:2) Wednesday September 19, @09:51PM
    • Re:"Nothing for you to see here" indeed... by Oswald (Score:2) Monday September 17, @11:55AM
    • Re:"Nothing for you to see here" indeed... by Sam (Score:2) Monday September 17, @12:28PM
    • Re:"Nothing for you to see here" indeed... by budgenator (Score:2) Monday September 17, @01:07PM
    • The LLVM Compiler Infrastructure - BSD by itsybitsy (Score:1) Monday September 17, @01:47PM
    • Re:"Nothing for you to see here" indeed... by Kartoffel (Score:2) Monday September 17, @03:13PM
    • until then... by toby (Score:2) Monday September 17, @04:19PM
    • Re:"Nothing for you to see here" indeed... by GooberToo (Score:2) Monday September 17, @06:02PM
    • Re:"Nothing for you to see here" indeed... by andreyw (Score:2) Monday September 17, @09:37PM
    • Re:"Nothing for you to see here" indeed... by Antique Geekmeister (Score:2) Tuesday September 18, @03:12AM
    • 1 reply beneath your current threshold.
  • Kind of depends... (Score:5, Insightful)

    by KingSkippus (799657) * on Monday September 17, @11:07AM (#20637585)
    (http://skippus.blogspot.com/ | Last Journal: Sunday June 19 2005, @07:25AM)

    ...and most importantly, BSD Licensed...

    Kind of depends on who you ask, doesn't it?

  • Not for NetBSD for sure (Score:5, Funny)

    by gambolt (1146363) on Monday September 17, @11:09AM (#20637621)
    OK, so it compiles C on x86. What do I use when I want to compile objective C on my microwave?
    • Re:Not for NetBSD for sure (Score:5, Informative)

      by Aladrin (926209) on Monday September 17, @11:28AM (#20637961)
      This got modded funny, but I'm sure it deserves insightful instead.

      GCC compiles on a LOT of different architectures. Does PCC? Does it do as good a job at compiling? Can we plop our current GCC-compiled source on PCC and have it compile without huge headaches?

      And what about these bugs that are even referenced in the summary? How could it POSSIBLY supplant GCC if it's that buggy? In fact, how could it have supplanted GCC if it hasn't taken GCC's place AT ALL yet?

      Try these headlines:

      GCC Compiler Finally Has 'Free' Competition
      New Compiler To Supplant Gnu Compiler?
      Battle of the licenses: Does the license of your compiler MATTER AT ALL!?
      [ Parent ]
    • Re:Not for NetBSD for sure by Brandybuck (Score:2) Monday September 17, @11:48AM
    • Re:Not for NetBSD for sure by the_lesser_gatsby (Score:1) Monday September 17, @11:53AM
      • 1 reply beneath your current threshold.
    • Re:Not for NetBSD for sure by TheRaven64 (Score:2) Monday September 17,