File tree Expand file tree Collapse file tree 3 files changed +14
-228
lines changed Expand file tree Collapse file tree 3 files changed +14
-228
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,8 @@ Please see the [CONTRIBUTING.md] file.
75
75
Status
76
76
------
77
77
78
- Please see the [ STATUS.md] file.
78
+ A list of open issues can be viewed on the
79
+ [ issues page] (https://github.com/sourcery institute/opencoarrays/issues).
79
80
80
81
Support
81
82
-------
@@ -137,7 +138,6 @@ to aid in development efforts.
137
138
[ INSTALL.md ] : ./INSTALL.md
138
139
[ GASNet ] : http://gasnet.lbl.gov
139
140
[ CONTRIBUTING.md ] : ./CONTRIBUTING.md
140
- [ STATUS.md ] : ./STATUS.md
141
141
[ GETTING_STARTED.md ] : ./GETTING_STARTED.md
142
142
[ Google Groups ] : https://groups.google.com
143
143
[ Google Group ] : https://groups.google.com/forum/#!forum/opencoarrays
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 79
79
# (3) Parse the usage information (default usage file name: current file's name with -usage appended).
80
80
# (4) Parse the command line using the usage information.
81
81
82
+ set -o errtrace
83
+
84
+ # requires `set -o errtrace`
85
+ __b3bp_err_report () {
86
+ local error_code
87
+ error_code=${?}
88
+ error " Error in ${__file} in function ${1} on line ${2} "
89
+ exit ${error_code}
90
+ }
91
+ # Uncomment the following line for always providing an error backtrace
92
+ trap ' __b3bp_err_report "${FUNCNAME:-.}" ${LINENO}' ERR
93
+
82
94
# ## Start of boilerplate -- do not edit this block #######################
83
95
export OPENCOARRAYS_SRC_DIR=" ${OPENCOARRAYS_SRC_DIR:- ${PWD%/ } / ../ ../ ..} "
84
96
if [[ ! -f " ${OPENCOARRAYS_SRC_DIR} /src/libcaf.h" ]]; then
You can’t perform that action at this time.
0 commit comments