$TenDRA: book.xml 2447 2006-03-23
21:15:51Z verm $
Copyright © 2002, 2003, 2004, 2005, 2006 TenDRA Documentation Team
Copyright © 1997, 1998 Defence Evaluation and Research Agency (DERA)
Berkeley Systems Design License
Redistribution and use in source (SGML DocBook) and 'compiled' forms (SGML, HTML, PDF, PostScript, RTF and so forth) with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code (SGML DocBook) must retain the above copyright notice, this list of conditions and the following disclaimer as the first lines of this file unmodified.
Redistributions in compiled form (transformed to other DTDs, converted to PDF, PostScript, RTF and other formats) must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS DOCUMENTATION IS PROVIDED BY THE TENDRA DOCUMENTATION TEAM "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE TENDRA DOCUMENTATION TEAM BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Crown Copyright (c) 1997, 1998
This TenDRA(r) Computer Program is subject to Copyright owned by the United Kingdom Secretary of State for Defence acting through the Defence Evaluation and Research Agency (DERA). It is made available to Recipients with a royalty-free licence for its use, reproduction, transfer to other parties and amendment for any purpose not excluding product development provided that any such use et cetera shall be deemed to be acceptance of the following conditions:
Its Recipients shall ensure that this Notice is reproduced upon any copies or amended versions of it;
Any amended version of it shall be clearly marked to show both the nature of and the organisation responsible for the relevant amendment or amendments;
Its onward transfer from a recipient to another party shall be deemed to be that party's acceptance of these conditions;
DERA gives no warranty or assurance as to its quality or suitability for any purpose and DERA accepts no liability whatsoever in relation to any use to which it may be put.
This document was generated on 2006-09-07 16:04:04
Abstract
This is the Frequently Asked Questions for TenDRA.
Please email us at <docs@ten15.org> if you see any errors or
omissions.
Table of Contents
| 1.1. |
What is this DERA you speak of? |
|
DERA (formerly RSRE - Royal Signals and Radar Establishment) was, until July 2, 2001, the Defense Evaluation and Research Agency of the United Kingdom. It has since been split into two separate organisations and is now known as QinetiQ. DERA was the logical equivalent of the United States' DARPA. |
|
| 1.2. |
What are ANDF and TDF? |
|
ANDF stands for Architectural Neutral Distribution Format, a format designed to improve portability and distribution of software. TDF stands for Ten15 Distribution Format (though it has more recently become known just as the TenDRA Distribution Format), and is the base technology selected for the ANDF technology by the now-defunct Open Source Foundation (OSF). There is a wealth of information available at the ANDF Home Page at the University of Karlsruhe, as well as at Martin C. Atkins' Personal Retrospective. |
|
| 1.3. |
What does Ten15 mean? |
|
Legend has it that the idea for the Ten15 system, which is at the heart of TenDRA, was proposed at 10:15 in the morning. The Ten15 system was developed by Michael Foster, Ian Currie, Philip Core, et al, at the Royal Signals and Radar Establishment (RSRE, then DERA, now QinetiQ). |
| 3.1. |
Compiling simple C++ programs does not work. |
|
At this point, TenDRA only contains the bare minimum language support library, not the full standard C++ library. See the C++ producer documentation for more details. |
|
| 3.2. |
I tried compiling [insert program here] with TenDRA, but it failed. Am I doing something wrong? |
|
This depends upon the specific issue you are experiencing. The most common issues range from broken standards support on the side of TenDRA or platform of choice to use of compiler-specific features (non-standard features) in the source code. It is prudent to take time to look into possible issues and direct requests to the appropriate place, be it the application author, platform vendor, or the TenDRA team. If you are unsure of where to go, the tendra-help list may be a good place to start. Please consult Google as well as the list archives before mailing the list. |
|
| 3.3. |
Is there support for inline assembly? |
|
Though there is no support for inline assembly at this time, it is being worked on. For now,
we encourage the use of separate |
|
| 3.4. |
Is |
|
As described in section 3.7 of the C Checker Reference Manual, |
|
| 3.5. |
My compilation is breaking due to TenDRA complaining about an "Unknown preprocessing directive, '#warning'". |
|
The #warning preprocessing directive is a GNU C extension to the ISO C standard and its use, although useful, is discouraged. A proper solution would be to wrap its use with the appropriate #define's for singling out supporting compilers. TenDRA supports a pragma which allows you to turn on support for #warning's though. By using the following in your code you should be able to use #warning:
#pragma TenDRA directive warning allow
|
| 4.1. |
We have GCC, so why even bother working on another compiler? |
|
For starters, because we like working on it. In the long run, there are interesting prospects in areas such as research, especially due to the nature of the TenDRA compiler; the ANDF technology for instance. Another point of motivation is the fact that TenDRA is a BSD-licensed compiler, which we consider an asset. Finally, everyone has their own reasons, but the above is a fair representation of interests shared by all developers. For more information on the technical aspect that we consider so important, please see the TenDRA Documentation, as well as the ANDF/TDF FAQ entry. |
| 5.1. |
What does the future hold for TenDRA? |
|
A peek at the task list should give a pretty good picture of what is currently being worked on, or up for grabs if anyone were to be so-inclined. General goals include standards conformance, and research into interesting developments in the world of compiler technology. |
| 6.1. |
I would like to help, but I don't really know where to start. |
|
A peek at the task list is probably a good idea. See if anything lies within your abilities and take it up. It is a great idea to subscribe to the mailing lists to stay up-to-date on current developments. Let the developers know which area you are interested in contributing to via the appropriate list. We always welcome help! |
|
| 6.2. |
I want to work on support for a specific architecture/platform. |
|
Familiarize yourself with the TenDRA source that you want to work on, as well as current development. The easiest way to 'get in touch' is to be subscribed to the mailing lists and check out the task list as well. From there, open a dialogue on tendra-dev, and things should begin to take shape. We hope to see your contributions soon! |
|
| 6.3. |
What is the preferred way of generating diffs? |
|
When creating a patchset, please use diff |