Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #6473
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder3.hal-mli.net!news.glorb.com!postnews.google.com!r5g2000prf.googlegroups.com!not-for-mail |
|---|---|
| From | lewbloch <lewbloch@gmail.com> |
| Newsgroups | comp.lang.java.programmer |
| Subject | Re: Passing a Method Name to a Method, Redux |
| Date | Sat, 23 Jul 2011 11:43:53 -0700 (PDT) |
| Organization | http://groups.google.com |
| Lines | 81 |
| Message-ID | <66de694c-382e-473c-a9c3-2c8433bc837c@r5g2000prf.googlegroups.com> (permalink) |
| References | <fpg7079ca2dtgipdphr8rm234kgmkd1t3l@4ax.com> <iu0t8a$kqc$1@dont-email.me> <dsm9071kpkj0s4uabgupfmg49evfmhvs6h@4ax.com> <iu2v22$6nh$1@dont-email.me> <3uuf071k5c0b32cdlv31s7p1u6cjn3t11j@4ax.com> <iu9a1b$8h4$1@dont-email.me> <71ph07l246l93uf4umn5tjgp6dtfgnr4a9@4ax.com> <4e28c7a0$0$308$14726298@news.sunsite.dk> <c5kj27pehob8m91ilr27gq4ndg853j3h56@4ax.com> <j0ehp2$l3l$1@localhost.localdomain> <4e2ae67d$0$303$14726298@news.sunsite.dk> <2aca8f06-1dc8-4fff-b7f1-0e35eea32d2f@f39g2000prb.googlegroups.com> <4e2b05e3$0$310$14726298@news.sunsite.dk> |
| NNTP-Posting-Host | 216.239.45.130 |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=ISO-8859-1 |
| Content-Transfer-Encoding | quoted-printable |
| X-Trace | posting.google.com 1311446634 23214 127.0.0.1 (23 Jul 2011 18:43:54 GMT) |
| X-Complaints-To | groups-abuse@google.com |
| NNTP-Posting-Date | Sat, 23 Jul 2011 18:43:54 +0000 (UTC) |
| Complaints-To | groups-abuse@google.com |
| Injection-Info | r5g2000prf.googlegroups.com; posting-host=216.239.45.130; posting-account=CP-lKQoAAAAGtB5diOuGlDQk0jIwmH0T |
| User-Agent | G2/1.0 |
| X-Google-Web-Client | true |
| X-Google-Header-Order | ASELCHRU |
| X-HTTP-UserAgent | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.99 Safari/535.1,gzip(gfe) |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.java.programmer:6473 |
Show key headers only | View raw
On Jul 23, 10:33 am, Arne Vajhøj <a...@vajhoej.dk> wrote: > On 7/23/2011 12:20 PM, lewbloch wrote: > > > > > > > > > > > On Jul 23, 8:19 am, Arne Vajh j<a...@vajhoej.dk> wrote: > >> On 7/23/2011 9:19 AM, Martin Gregorie wrote: > >>> On Fri, 22 Jul 2011 12:35:00 -0700, Gene Wirchenko wrote: > > >>>> On Thu, 21 Jul 2011 20:43:10 -0400, Arne Vajh j<a...@vajhoej.dk> wrote: > > >>>>> On 6/27/2011 4:12 PM, Gene Wirchenko wrote: > >>>>>> On Mon, 27 Jun 2011 03:04:11 -0400, Joshua Cranmer > >>>>>> <Pidgeo...@verizon.invalid> wrote: > > >>>>>>> On 06/26/2011 11:42 PM, Gene Wirchenko wrote: > >>>>>>>> Think simple version of the C preprocessor. > > >>>>>>> Then why not use the C preprocessor? > > >>>>>> I could not find one that would run standalone on my system. > > >>>>> Almost all C compiler has a way to do only preprocessing. > > >>>>> GCC, MS, DEC/CPQ/HP etc. has. > > >>>> I did not want a C compiler. I simply wanted a preprocessor. > > >>> The last C compilers I remember that had separate preprocessors were K&R, > >>> so were very old. In these, cc was effectively a shell that invoked the > >>> preprocessor, the C --> assembler translator, the assembler and the > >>> linker in turn. Actually, I'm still using one - the standard OS/9 v2.4 C > >>> compiler, which dates from 1992 and runs on 68xxx hardware. > > >>> I don't remember any ANSI C compilers I've used being structured this > >>> way: certainly I've not seen any version of the GNU compiler or its > >>> derivatives that aren't a monolithic chunk that includes all compilation > >>> stages except the linker. AFAICR this also applied to the Borland > >>> compilers. > > >>> So, if that's really what you want, go and find a old K&R compiler or its > >>> source. > > >> GCC still has a separate executable for preprocessing! > > >> The driver gcc or g++ calls cpp, cc1 or cc1plus, as and ld. > > > <http://gcc.gnu.org/onlinedocs/gcc-4.6.1/gcc/Preprocessor- > > Options.html#Preprocessor-Options> > > "If you use the -E option, nothing is done except preprocessing. Some > > of these options make sense only together with -E because they cause > > the preprocessor output to be unsuitable for actual compilation." > > > Ain't the FM (of "RTFM") a marvel? Amazing what one can learn by > > reading the documentation! > > Is is great reading the FM. > > In this case the FM (at least not in what you quote) does not cover > the topic of discussion - whether it is a monolithic executable > or a series of executables. A difference that makes no difference is no difference. -- Lew
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar
Re: Passing a Method Name to a Method, Redux Arne Vajhøj <arne@vajhoej.dk> - 2011-07-21 20:43 -0400
Re: Passing a Method Name to a Method, Redux Gene Wirchenko <genew@ocis.net> - 2011-07-22 12:35 -0700
Re: Passing a Method Name to a Method, Redux Patricia Shanahan <pats@acm.org> - 2011-07-22 13:09 -0700
Re: Passing a Method Name to a Method, Redux lewbloch <lewbloch@gmail.com> - 2011-07-22 13:35 -0700
Re: Passing a Method Name to a Method, Redux Arne Vajhøj <arne@vajhoej.dk> - 2011-07-22 16:53 -0400
Re: Passing a Method Name to a Method, Redux Martin Gregorie <martin@address-in-sig.invalid> - 2011-07-23 13:19 +0000
Re: Passing a Method Name to a Method, Redux Arne Vajhøj <arne@vajhoej.dk> - 2011-07-23 11:19 -0400
Re: Passing a Method Name to a Method, Redux lewbloch <lewbloch@gmail.com> - 2011-07-23 09:20 -0700
Re: Passing a Method Name to a Method, Redux Arne Vajhøj <arne@vajhoej.dk> - 2011-07-23 13:33 -0400
Re: Passing a Method Name to a Method, Redux lewbloch <lewbloch@gmail.com> - 2011-07-23 11:43 -0700
Re: Passing a Method Name to a Method, Redux lewbloch <lewbloch@gmail.com> - 2011-07-23 12:14 -0700
Re: Passing a Method Name to a Method, Redux Arne Vajhøj <arne@vajhoej.dk> - 2011-07-23 19:19 -0400
Re: Passing a Method Name to a Method, Redux Arne Vajhøj <arne@vajhoej.dk> - 2011-07-23 19:12 -0400
Re: Passing a Method Name to a Method, Redux Martin Gregorie <martin@address-in-sig.invalid> - 2011-07-23 17:24 +0000
Re: Passing a Method Name to a Method, Redux Arne Vajhøj <arne@vajhoej.dk> - 2011-07-23 19:22 -0400
Re: Passing a Method Name to a Method, Redux Martin Gregorie <martin@address-in-sig.invalid> - 2011-07-24 10:02 +0000
csiph-web