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.
7575Status
7676------
7777
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).
7980
8081Support
8182-------
@@ -137,7 +138,6 @@ to aid in development efforts.
137138[ INSTALL.md ] : ./INSTALL.md
138139[ GASNet ] : http://gasnet.lbl.gov
139140[ CONTRIBUTING.md ] : ./CONTRIBUTING.md
140- [ STATUS.md ] : ./STATUS.md
141141[ GETTING_STARTED.md ] : ./GETTING_STARTED.md
142142[ Google Groups ] : https://groups.google.com
143143[ 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 7979# (3) Parse the usage information (default usage file name: current file's name with -usage appended).
8080# (4) Parse the command line using the usage information.
8181
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+
8294# ## Start of boilerplate -- do not edit this block #######################
8395export OPENCOARRAYS_SRC_DIR=" ${OPENCOARRAYS_SRC_DIR:- ${PWD%/ } / ../ ../ ..} "
8496if [[ ! -f " ${OPENCOARRAYS_SRC_DIR} /src/libcaf.h" ]]; then
You can’t perform that action at this time.
0 commit comments