Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
11f5a9a0
Commit
11f5a9a0
authored
Oct 13, 1998
by
Alexandre Oliva
Committed by
Alexandre Oliva
Oct 13, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lib/old-dejagnu.exp (old-dejagnu): support `Additional sources:'
From-SVN: r23039
parent
5ca2111f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/lib/old-dejagnu.exp
+10
-0
No files found.
gcc/testsuite/ChangeLog
View file @
11f5a9a0
1998-10-13 Alexandre Oliva <oliva@dcc.unicamp.br>
* lib/old-dejagnu.exp (old-dejagnu): support `Additional sources:'
1998-10-12 Alexandre Oliva <oliva@dcc.unicamp.br>
1998-10-12 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.pt/explicit74.C: New test. Explicit
* g++.old-deja/g++.pt/explicit74.C: New test. Explicit
...
...
gcc/testsuite/lib/old-dejagnu.exp
View file @
11f5a9a0
...
@@ -225,6 +225,16 @@ proc old-dejagnu { compiler prog cflagsx default_cflags libs } {
...
@@ -225,6 +225,16 @@ proc old-dejagnu { compiler prog cflagsx default_cflags libs } {
lappend cflags "additional_flags=$cflagsx"
lappend cflags "additional_flags=$cflagsx"
}
}
set tmp [lindex [grep $prog "Additional sources: .*"] 0]
regsub -all "\n\[^\n\]+(\n|$)" $tmp "\n" tmp
set tmp [string trim $tmp]
if ![string match "" $tmp] then {
regsub "^.*Additional.*sources:" $tmp "" tmp
regsub -all " " $tmp " [file dirname $prog]/" tmp
lappend cflags "additional_flags=$tmp"
verbose "Adding sources $tmp"
}
lappend cflags "compiler=$compiler"
lappend cflags "compiler=$compiler"
regsub -all "\[./\]" "$name" "-" output;
regsub -all "\[./\]" "$name" "-" output;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment