We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a0185b commit 667f7e5Copy full SHA for 667f7e5
experiments/list_unsupported.sh
@@ -1,5 +1,8 @@
1
#!/bin/sh
2
3
+# First check some environment prerequisites
4
+echo >&2 "Checking environment..."
5
+
6
# gnat2goto on the path?
7
if ! command -v gnat2goto > /dev/null; then
8
echo >&2 "gnat2goto not on PATH!"
@@ -104,6 +107,10 @@ if ! ${gplusplus} --std=c++14 "${experiment_dir}/collect_unsupported.cpp" -o Col
104
107
fi
105
108
export PATH="${saved_path}"
106
109
110
+echo >&2 "...environment is OK."
111
112
+# Finally start work
113
114
# Enumerate all the sub directories of ADA_INCLUDE_PATH
115
for include_folder in `echo "$ADA_INCLUDE_PATH" | tr ':' ' '` ; do
116
echo "Expanding $include_folder..."
0 commit comments