diff options
author | camthesaxman <camthesaxman@users.noreply.github.com> | 2020-01-29 18:17:43 -0600 |
---|---|---|
committer | camthesaxman <camthesaxman@users.noreply.github.com> | 2020-01-29 18:17:43 -0600 |
commit | cdc6e2c50f96119bdc4c1205ff5901ca82ec8357 (patch) | |
tree | 3e9217eabcf444e166008411f445315606dded59 /gcc_arm/testsuite/README.g++ | |
parent | 27176890c4a688ea7de44d3f55af32827016a9fd (diff) |
add old compiler with ARM support
Diffstat (limited to 'gcc_arm/testsuite/README.g++')
-rwxr-xr-x | gcc_arm/testsuite/README.g++ | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gcc_arm/testsuite/README.g++ b/gcc_arm/testsuite/README.g++ new file mode 100755 index 0000000..7ded0fd --- /dev/null +++ b/gcc_arm/testsuite/README.g++ @@ -0,0 +1,33 @@ +Here are some random last minute notes by this file's original maintainer, +Mike Stump <mrs@cygnus.com>: + +> and the command + +> runtest --tool g++ --srcdir ./testsuite + +> doesn't work. I got it to work by explicitly setting CXX and CXXFLAGS +> on the command line, e.g. + +> runtest --tool g++ --srcdir ./testsuite CXX=g++ CXXFLAGS="" + +site.exp updated to have right CXXFLAGS and CXX, but not at the FSF yet. + + + To run the tests, first change to the gcc-2.7.1 directory, then type: + + runtest --tool g++ --srcdir ./testsuite + +Here's a brief explanation. + +runtest - Is the name used to invoke DejaGnu. If DejaGnu is not + install this will be the relative path name for runtest. + +--tool - This tells DejaGnu which tool you are testing. It is + mainly used to find the testsuite directories for a + particular tool when several testsuites are in the + same directory. (like the gcc and g++ testsuites) + +--srcdir - This points to the top level of the directory + containing the sources of the testsuite. This is + ./testsuite if you are in the directory that has the + testsuite directory. |