Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a2657270dcb4a53e

Jump to content

Talk:LCC (compiler)

Page contents not supported in other languages.
Add topic
From Wikipedia, the free encyclopedia
Latest comment: 7 years ago by 201.124.180.125 in topic "Well documented"?

LCC-win host page gone?

[edit]

The linked host page ( http://www.cs.virginia.edu/~lcc-win32/ ) has been returning a "403 Forbidden" for several months now. Multiple attempts to contact the department or a webmaster have gone unanswered. It is possible the page has been deleted or moved, but it is unclear how to get in contact with anyone who would know anything about this.  Preceding unsigned comment added by 98.102.150.67 (talk) 18:26, 11 April 2018 (UTC)Reply

Tiny CC LOC

[edit]

It's not clear that tcc has less LOC than LCC. Ohloh says Tiny CC has approximately 60000 C LOC - http://www.ohloh.net/p/tcc/analyses/latest/languages_summary . 46.208.141.161 (talk) 13:54, 16 February 2014 (UTC)Reply

In fact looking at https://www.openhub.net/p/tinycc/analyses/latest/languages_summary shows TCC was around or under 20000 C LOC until April 2005 when it jumped to around 40000 so I'd argue the claim should be removed.
51.9.218.135 (talk) 11:12, 26 March 2018 (UTC)Reply

"Well documented"?

[edit]

lcc/src% wc -l *.c

  10764 total

lcc/src% ack "\/\*" *.c | wc -l

    483

I think not. It appears that _all_ of the useful comments in the compiler were stripped out and put into the book.  Preceding unsigned comment added by 67.214.93.178 (talk) 23:04, 21 February 2018 (UTC)Reply

The real source of the compiler is a literate program that is processed with noweb and/or notangle precisely to either produce the TeX code for the book or the C sources for compilation. Did you expected to find the web sources in the github repository?
The book is the documented source available to us, the readers. Of course it is well documented.
Besides that, your awk (you wrote ack) filter doesn't count all the words in a multi-line comment, only the words in the first row. It also ignores the non standard // comments,  Preceding unsigned comment added by 201.124.180.125 (talk) 09:11, 6 October 2018 (UTC)Reply