Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gcc-cobol
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COBOLworx
gcc-cobol
Commits
11f5a9a0
Commit
11f5a9a0
authored
26 years ago
by
Alexandre Oliva
Committed by
Alexandre Oliva
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
* lib/old-dejagnu.exp (old-dejagnu): support `Additional sources:'
From-SVN: r23039
parent
5ca2111f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gcc/testsuite/ChangeLog
+4
-0
4 additions, 0 deletions
gcc/testsuite/ChangeLog
gcc/testsuite/lib/old-dejagnu.exp
+10
-0
10 additions, 0 deletions
gcc/testsuite/lib/old-dejagnu.exp
with
14 additions
and
0 deletions
gcc/testsuite/ChangeLog
+
4
−
0
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
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/lib/old-dejagnu.exp
+
10
−
0
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;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment