pederch@daimi.UUCP (Peder Chr. N|rgaard) (05/19/87)
The C++ translator comes from AT&T with a set of system header files that makes it quite easy to install on guarantees portability between any System V-based UNIX version. This is as it should be, not because C++ is an AT&T product, but because the System V UNIX is. But this causes some minor problems for people who work in other environments like BSD 4.n and, even worse, MS-DOS. One problem is that it is some work to build up a complete set of C++ header files from the C header files and the descriptions of function parameters in the manuals. Another problem is that is error-prone. The worst problem is that the result is not unique, at least not when you come to some more complicated system interfaces, like the SunView system from Sun Microsystems. So if you use your own C++ header files you risk end up with a program which is not even source level portable to another perfectly identical system. All these problems would be solved if someone, preferably the manufacturer of the systems (that is, the Berkeley people for BSD, Sun Microsystems for SunView etc), would annouce a specific set of C++ header files and say: this is THE C++ header files to use. They need not even be very fancy; the most important thing is that they are complete and correct. So my question is: do anyone know of any work of this kind from any manu- facturer? Please answer by mail, and I will summarize the answers. A secondary question, less general: has anyone produced for himself a set of C++ header files for a SUN UNIX system (that's the system I work on daily)? If no satisfactory answer is found to the first question, I will be willing to compare sets of privately produced C++ header files for SUN systems, and publicize the most correct and useful. I work with C++ translator Release 1.1 and SUN UNIX 3.0, but expect to upgrade to 1.2 and 3.2, respectively, in near future. Sincerely Peder Chr. Norgaard Computer Science Department Aarhus University DENMARK (pederch@daimi.UUCP)
seindal@diku.UUCP (Rene Seindal) (05/22/87)
In article <736@daimi.UUCP> pederch@daimi.UUCP (Peder Chr. N|rgaard) writes: >But this causes some minor problems for people who work in other environments >like BSD 4.n and, even worse, MS-DOS. One problem is that it is some work to >build up a complete set of C++ header files from the C header files and >the descriptions of function parameters in the manuals. Another problem >is that is error-prone. The worst problem is that the result is not unique, >at least not when you come to some more complicated system interfaces, >like the SunView system from Sun Microsystems. So if you use your own >C++ header files you risk end up with a program which is not even source >level portable to another perfectly identical system. >All these problems would be solved if someone, preferably the manufacturer >of the systems (that is, the Berkeley people for BSD, Sun Microsystems >for SunView etc), would annouce a specific set of C++ header files and >say: this is THE C++ header files to use. They need not even be very >fancy; the most important thing is that they are complete and correct. I have made a complete set of header files for C++ under BSD 4.3. I have considered distributing them, but a lot of them contains code from our standard header files, so how can I get around the various copyrights. If some of you out there are interested, there must be some way to get them around (as ed-scripts, for example). There is no point in redoing the work I did (it was dead boring), so mail me a note if you want a copy. Our files hasn't been tested extensively, but they should be both correct and complete. Rene' Seindal (seindal@diku.UUCP) The Computer Department, Institute of Datalogy, U. of Copenhagen.
keld@diku.UUCP (Keld J|rn Simonsen) (05/22/87)
Concerning the discussion about C++ header files and source code problems, may I suggest that the C++ distributers at AT&T collect these headers and distribute them on the normal C++ distribution tapes! Keld Simonsen, University of Copenhagen keld@diku.uucp
wedgingt@udenva.UUCP (06/03/87)
In article <736@daimi.UUCP> pederch@daimi.UUCP (Peder Chr. N|rgaard) writes: >But this causes some minor problems for people who work in other environments >like BSD 4.n and, even worse, MS-DOS. One problem is that it is some work to >build up a complete set of C++ header files from the C header files and >the descriptions of function parameters in the manuals. Another problem >is that is error-prone. The worst problem is that the result is not unique, >at least not when you come to some more complicated system interfaces, >like the SunView system from Sun Microsystems. So if you use your own >C++ header files you risk end up with a program which is not even source >level portable to another perfectly identical system. I'm missing something. 90% of the work involved is converting the function declarations to include the types of the arguments, right ? If not, maybe someone should post what the other major change(s) is. If yes, why not write a program that takes the human-readable lint libraries and massages them into the correct C++ #include files ? The messiest part here is dealing with functions that take a variable number of arguments, but don't use the "varargs" methods. Then the option ('-C' on BSD) most (all ?) lints have to *create* the human readable lint libraries (from the original C source) can be used to go all the way from C to C++ declarations (assuming the C functions were reasonably well defined, argument-wise) ... ----- Will Edgington, Computing and Information Resources, University of Denver System Administrator for udenva (== dueos), dutyche, duorion, dunike, ... {{hplabs,seismo}!hao,ucbvax!nbires,boulder,cires,ssds}!udenva!wedgingt, WEDGINGT@DUCAIR (BITNET), wedgingt@ccndu (CSN/CCN), ... COMING SOON: wedgingt@du.edu (all nets)|"No two addresses are the same ..."
guy@gorodish.UUCP (06/05/87)
> Then the option ('-C' on BSD) most (all ?) lints have to *create* > the human readable lint libraries (from the original C source) Try "Few, if any", rather than "most" or "all". The "-C" option on 4.[23]BSD, and the "-c" option in System V, turn C source into *machine*-readable "lint" libraries; they are not very human-readable unless you are *very* familiar with the format of intermediate files used to pass information between passes 1 and 2 of "lint". Guy Harris {ihnp4, decvax, seismo, decwrl, ...}!sun!guy guy@sun.com