Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
mpim-sw
libcdi
Commits
b670efca
Commit
b670efca
authored
11 years ago
by
Thomas Jahns
Browse files
Options
Downloads
Patches
Plain Diff
Update pre-processing wrappers to latest version from ScalES-PPM.
parent
0e8927d7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
util/sunf95preproc-wrapper
+53
-1
53 additions, 1 deletion
util/sunf95preproc-wrapper
util/sxpreproc-wrapper
+51
-1
51 additions, 1 deletion
util/sxpreproc-wrapper
util/xlfpreproc-wrapper
+37
-0
37 additions, 0 deletions
util/xlfpreproc-wrapper
with
141 additions
and
2 deletions
util/sunf95preproc-wrapper
+
53
−
1
View file @
b670efca
#! /bin/sh
#
# sunf95preproc-wrapper --- wrapper to produce Sun F95 style front-end
# preprocessor output on stdout
#
# Copyright (C) 2010, 2012 Thomas Jahns <jahns@dkrz.de>
#
# Version: 1.0
# Keywords:
# Author: Thomas Jahns <jahns@dkrz.de>
# Maintainer: Thomas Jahns <jahns@dkrz.de>
# URL: https://www.dkrz.de/redmine/projects/scales-ppm
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# Redistributions in binary form 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.
#
# Neither the name of the DKRZ GmbH nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER
# OR CONTRIBUTORS 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
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Commentary:
#
#
#
# Code:
#
if
[
"
${
DEBUG
+set
}
"
=
set
]
;
then
set
-x
outputRedir
=
">&2"
...
...
@@ -13,7 +58,6 @@ TRAPCMD=':'
trap
'eval $TRAPCMD'
0
set
-e
test
"
${
DEBUG
+set
}
"
=
set
&&
echo
"
$FPPFLAGS
"
>
&2
FCFLAGS
=
${
FCFLAGS
--EP
}
if
[
"
${
FC
+set
}
"
!=
set
]
;
then
for
F90C
in
sunf95
''
;
do
test
-n
"
$F90C
"
||
exit
1
...
...
@@ -24,6 +68,9 @@ if [ "${FC+set}" != set ]; then
done
fi
FC
=
${
FC
-
$F90C
}
# nagfor 5.3 up chokes on -EP flag
nag
=
`
$FC
-V
2>&1 |
sed
-n
'/^NAG/s/NAG Fortran Compiler.*/NAG/;t print;b;: print; p'
`
[
x
"
$nag
"
=
xNAG
]
||
FCFLAGS
=
${
FCFLAGS
--EP
}
# append -fpp if necessary
IFStr
=
`
echo
"
$IFS
"
|
sed
-n
'$!s/$/\\\\n/
H
...
...
@@ -74,3 +121,8 @@ s:\.F90:.f90:'`
fi
done
done
#
# Local Variables:
# license-project-url: "https://www.dkrz.de/redmine/projects/scales-ppm"
# license-default: "bsd"
# End:
This diff is collapsed.
Click to expand it.
util/sxpreproc-wrapper
+
51
−
1
View file @
b670efca
#! /bin/sh
#
# sxpreproc-wrapper --- capture preprocessed output from frontends of
# NEC SX series Fortran 90 compiler
#
# Copyright (C) 2010 Thomas Jahns <jahns@dkrz.de>
#
# Version: 1.0
# Keywords:
# Author: Thomas Jahns <jahns@dkrz.de>
# Maintainer: Thomas Jahns <jahns@dkrz.de>
# URL: https://www.dkrz.de/redmine/projects/show/scales-ppm
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# Redistributions in binary form 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.
#
# Neither the name of the DKRZ GmbH nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER
# OR CONTRIBUTORS 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
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Commentary:
#
#
#
# Code:
#
if
[
"
${
DEBUG
+set
}
"
=
set
]
;
then
set
-x
outputRedir
=
">&2"
...
...
@@ -56,4 +101,9 @@ s:^:'"$tmp/"'i.:'`
test
"
${
DEBUG
+set
}
"
=
set
&&
cat
"
$fppOutput
"
>
&2
rm
"
$fppOutput
"
done
rm
-rf
"
$tmp
"
\ No newline at end of file
rm
-rf
"
$tmp
"
#
# Local Variables:
# license-project-url: "https://www.dkrz.de/redmine/projects/show/scales-ppm"
# license-default: "bsd"
# End:
This diff is collapsed.
Click to expand it.
util/xlfpreproc-wrapper
+
37
−
0
View file @
b670efca
#! /bin/sh
#
# xlfpreproc-wrapper --- wrapper to produce IBM xlf style front-end
# preprocessor output on stdout
#
# Copyright (C) 2010 Thomas Jahns <jahns@dkrz.de>
#
# Version: 1.0
# Keywords:
# Author: Thomas Jahns <jahns@dkrz.de>
# Maintainer: Thomas Jahns <jahns@dkrz.de>
# URL: http://
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Commentary:
#
#
#
# Code:
#
if
[
"
${
DEBUG
+set
}
"
=
set
]
;
then
set
-x
outputRedir
=
">&2"
...
...
@@ -16,7 +47,13 @@ for srcfile in "$@" ; do
eval
\$
FC
\$
FCFLAGS
\$
FPPFLAGS
-d
-qnoobject
\"\$
srcfile
\"
$outputRedir
set
-e
FPPOUTNAME
=
`
echo
$srcfile
|
sed
-e
's:\(.*/\)*\([^/]*\)\.[^./]*$:F\2.f:'
`
test
-r
"
$FPPOUTNAME
"
||
FPPOUTNAME
=
"
${
FPPOUTNAME
}
90"
cat
"
$FPPOUTNAME
"
2>/dev/null
test
"
${
DEBUG
+set
}
"
=
set
&&
cat
"
$FPPOUTNAME
"
>
&2
rm
"
$FPPOUTNAME
"
done
#
# Local Variables:
# license-project-url: "https://www.dkrz.de/redmine/projects/show/scales-ppm"
# license-default: "bsd"
# End:
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