From 7a918cc5e4edf07ccd439090894b461615e72a2a Mon Sep 17 00:00:00 2001 From: James Gallagher Date: Wed, 11 Feb 2026 09:11:15 +1300 Subject: [PATCH 1/7] First hacked attempt at vscode support. --- .vscode/launch.json | 24 + .vscode/settings.json | 18 + .vscode/tasks.json | 137 + compile_commands.json | 9911 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 10090 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json create mode 100644 .vscode/tasks.json create mode 100644 compile_commands.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..910005c9c --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug getdap4", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/.libs/getdap4", + "args": ["-d", "http://test.opendap.org/opendap/data/nc/fnoc1.nc"], + "cwd": "${workspaceFolder}", + "environment": [ + { + "name": "prefix", + "value": "/Users/jhrg/src/hyrax/build" + }, + { + "name": "PATH", + "value": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + } + ], + "MIMode": "lldb" + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..7f0ec6534 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,18 @@ +{ + "C_Cpp.default.configurationProvider": "ms-vscode.makefile-tools", + "C_Cpp.default.compileCommands": "${workspaceFolder}/compile_commands.json", + "C_Cpp.default.cppStandard": "c++14", + "C_Cpp.default.intelliSenseMode": "macos-clang-arm64", + "terminal.integrated.env.osx": { + "prefix": "/Users/jhrg/src/hyrax/build", + "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + }, + "makefile.configurations": [ + { + "makeArgs": [ + "-j" + ], + "name": "Unnamed configuration 1" + } + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 000000000..6333cd5f7 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,137 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "autotools: configure", + "type": "shell", + "command": "autoreconf -fvi && ./configure --prefix=$prefix --enable-developer", + "options": { + "cwd": "${workspaceFolder}", + "env": { + "prefix": "/Users/jhrg/src/hyrax/build", + "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + }, + "shell": { + "executable": "/bin/zsh", + "args": [ + "-c" + ] + } + }, + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "autotools: build", + "type": "shell", + "command": "make -j", + "options": { + "cwd": "${workspaceFolder}", + "env": { + "prefix": "/Users/jhrg/src/hyrax/build", + "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + }, + "shell": { + "executable": "/bin/zsh", + "args": [ + "-c" + ] + } + }, + "problemMatcher": [ + "$gcc" + ], + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "autotools: check", + "type": "shell", + "command": "make -j check", + "options": { + "cwd": "${workspaceFolder}", + "env": { + "prefix": "/Users/jhrg/src/hyrax/build", + "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + }, + "shell": { + "executable": "/bin/zsh", + "args": [ + "-c" + ] + } + }, + "problemMatcher": [ + "$gcc" + ], + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "autotools: install", + "type": "shell", + "command": "make install", + "options": { + "cwd": "${workspaceFolder}", + "env": { + "prefix": "/Users/jhrg/src/hyrax/build", + "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + }, + "shell": { + "executable": "/bin/zsh", + "args": [ + "-c" + ] + } + }, + "problemMatcher": [] + }, + { + "label": "autotools: clean", + "type": "shell", + "command": "make clean", + "options": { + "cwd": "${workspaceFolder}", + "env": { + "prefix": "/Users/jhrg/src/hyrax/build", + "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + }, + "shell": { + "executable": "/bin/zsh", + "args": [ + "-c" + ] + } + }, + "problemMatcher": [] + }, + { + "label": "autotools: compile_commands", + "type": "shell", + "command": "make clean && bear -- make -j && bear --append -- make -j check", + "options": { + "cwd": "${workspaceFolder}", + "env": { + "prefix": "/Users/jhrg/src/hyrax/build", + "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + }, + "shell": { + "executable": "/bin/zsh", + "args": [ + "-c" + ] + } + }, + "problemMatcher": [ + "$gcc" + ] + } + ] +} diff --git a/compile_commands.json b/compile_commands.json new file mode 100644 index 000000000..a39ff604b --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,9911 @@ +[ + { + "file": "tempname.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "tempname.lo", + "-MD", + "-MP", + "-MF", + ".deps/tempname.Tpo", + "-c", + "tempname.c", + "-fno-common", + "-DPIC", + "-o", + ".libs/tempname.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": ".libs/tempname.o" + }, + { + "file": "localcharset.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "localcharset.lo", + "-MD", + "-MP", + "-MF", + ".deps/localcharset.Tpo", + "-c", + "localcharset.c", + "-fno-common", + "-DPIC", + "-o", + ".libs/localcharset.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": ".libs/localcharset.o" + }, + { + "file": "tempname.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "tempname.lo", + "-MD", + "-MP", + "-MF", + ".deps/tempname.Tpo", + "-c", + "tempname.c", + "-o", + "tempname.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": "tempname.o" + }, + { + "file": "malloca.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "malloca.lo", + "-MD", + "-MP", + "-MF", + ".deps/malloca.Tpo", + "-c", + "malloca.c", + "-fno-common", + "-DPIC", + "-o", + ".libs/malloca.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": ".libs/malloca.o" + }, + { + "file": "localcharset.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "localcharset.lo", + "-MD", + "-MP", + "-MF", + ".deps/localcharset.Tpo", + "-c", + "localcharset.c", + "-o", + "localcharset.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": "localcharset.o" + }, + { + "file": "malloca.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "malloca.lo", + "-MD", + "-MP", + "-MF", + ".deps/malloca.Tpo", + "-c", + "malloca.c", + "-o", + "malloca.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": "malloca.o" + }, + { + "file": "wctype-h.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "wctype-h.lo", + "-MD", + "-MP", + "-MF", + ".deps/wctype-h.Tpo", + "-c", + "wctype-h.c", + "-fno-common", + "-DPIC", + "-o", + ".libs/wctype-h.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": ".libs/wctype-h.o" + }, + { + "file": "unistd.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "unistd.lo", + "-MD", + "-MP", + "-MF", + ".deps/unistd.Tpo", + "-c", + "unistd.c", + "-fno-common", + "-DPIC", + "-o", + ".libs/unistd.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": ".libs/unistd.o" + }, + { + "file": "hard-locale.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "hard-locale.lo", + "-MD", + "-MP", + "-MF", + ".deps/hard-locale.Tpo", + "-c", + "hard-locale.c", + "-fno-common", + "-DPIC", + "-o", + ".libs/hard-locale.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": ".libs/hard-locale.o" + }, + { + "file": "wctype-h.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "wctype-h.lo", + "-MD", + "-MP", + "-MF", + ".deps/wctype-h.Tpo", + "-c", + "wctype-h.c", + "-o", + "wctype-h.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": "wctype-h.o" + }, + { + "file": "localtime-buffer.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "localtime-buffer.lo", + "-MD", + "-MP", + "-MF", + ".deps/localtime-buffer.Tpo", + "-c", + "localtime-buffer.c", + "-fno-common", + "-DPIC", + "-o", + ".libs/localtime-buffer.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": ".libs/localtime-buffer.o" + }, + { + "file": "unistd.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "unistd.lo", + "-MD", + "-MP", + "-MF", + ".deps/unistd.Tpo", + "-c", + "unistd.c", + "-o", + "unistd.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": "unistd.o" + }, + { + "file": "glthread/lock.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "glthread/lock.lo", + "-MD", + "-MP", + "-MF", + "glthread/.deps/lock.Tpo", + "-c", + "glthread/lock.c", + "-fno-common", + "-DPIC", + "-o", + "glthread/.libs/lock.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": "glthread/.libs/lock.o" + }, + { + "file": "hard-locale.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "hard-locale.lo", + "-MD", + "-MP", + "-MF", + ".deps/hard-locale.Tpo", + "-c", + "hard-locale.c", + "-o", + "hard-locale.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": "hard-locale.o" + }, + { + "file": "glthread/threadlib.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "glthread/threadlib.lo", + "-MD", + "-MP", + "-MF", + "glthread/.deps/threadlib.Tpo", + "-c", + "glthread/threadlib.c", + "-fno-common", + "-DPIC", + "-o", + "glthread/.libs/threadlib.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": "glthread/.libs/threadlib.o" + }, + { + "file": "localtime-buffer.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "localtime-buffer.lo", + "-MD", + "-MP", + "-MF", + ".deps/localtime-buffer.Tpo", + "-c", + "localtime-buffer.c", + "-o", + "localtime-buffer.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": "localtime-buffer.o" + }, + { + "file": "regex.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "regex.lo", + "-MD", + "-MP", + "-MF", + ".deps/regex.Tpo", + "-c", + "regex.c", + "-fno-common", + "-DPIC", + "-o", + ".libs/regex.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": ".libs/regex.o" + }, + { + "file": "glthread/lock.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "glthread/lock.lo", + "-MD", + "-MP", + "-MF", + "glthread/.deps/lock.Tpo", + "-c", + "glthread/lock.c", + "-o", + "glthread/lock.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": "glthread/lock.o" + }, + { + "file": "glthread/threadlib.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "glthread/threadlib.lo", + "-MD", + "-MP", + "-MF", + "glthread/.deps/threadlib.Tpo", + "-c", + "glthread/threadlib.c", + "-o", + "glthread/threadlib.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": "glthread/threadlib.o" + }, + { + "file": "regex.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I/opt/homebrew/include", + "-MT", + "regex.lo", + "-MD", + "-MP", + "-MF", + ".deps/regex.Tpo", + "-c", + "regex.c", + "-o", + "regex.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/gl", + "output": "regex.o" + }, + { + "file": "D4ConstraintEvaluator.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../d4_ce", + "-I/opt/homebrew/include", + "-I..", + "-I../d4_ce", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-Wall", + "-W", + "-Wcast-align", + "-MT", + "libd4_ce_parser_la-D4ConstraintEvaluator.lo", + "-MD", + "-MP", + "-MF", + ".deps/libd4_ce_parser_la-D4ConstraintEvaluator.Tpo", + "-c", + "D4ConstraintEvaluator.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libd4_ce_parser_la-D4ConstraintEvaluator.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce", + "output": ".libs/libd4_ce_parser_la-D4ConstraintEvaluator.o" + }, + { + "file": "d4_ce_parser.tab.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../d4_ce", + "-I/opt/homebrew/include", + "-I..", + "-I../d4_ce", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-Wall", + "-W", + "-Wcast-align", + "-MT", + "libd4_ce_parser_la-d4_ce_parser.tab.lo", + "-MD", + "-MP", + "-MF", + ".deps/libd4_ce_parser_la-d4_ce_parser.tab.Tpo", + "-c", + "d4_ce_parser.tab.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libd4_ce_parser_la-d4_ce_parser.tab.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce", + "output": ".libs/libd4_ce_parser_la-d4_ce_parser.tab.o" + }, + { + "file": "lex.d4_ce.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../d4_ce", + "-I/opt/homebrew/include", + "-I..", + "-I../d4_ce", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-Wall", + "-W", + "-Wcast-align", + "-MT", + "libd4_ce_parser_la-lex.d4_ce.lo", + "-MD", + "-MP", + "-MF", + ".deps/libd4_ce_parser_la-lex.d4_ce.Tpo", + "-c", + "lex.d4_ce.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libd4_ce_parser_la-lex.d4_ce.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce", + "output": ".libs/libd4_ce_parser_la-lex.d4_ce.o" + }, + { + "file": "lex.d4_ce.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../d4_ce", + "-I/opt/homebrew/include", + "-I..", + "-I../d4_ce", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-Wall", + "-W", + "-Wcast-align", + "-MT", + "libd4_ce_parser_la-lex.d4_ce.lo", + "-MD", + "-MP", + "-MF", + ".deps/libd4_ce_parser_la-lex.d4_ce.Tpo", + "-c", + "lex.d4_ce.cc", + "-o", + "libd4_ce_parser_la-lex.d4_ce.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce", + "output": "libd4_ce_parser_la-lex.d4_ce.o" + }, + { + "file": "d4_ce_parser.tab.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../d4_ce", + "-I/opt/homebrew/include", + "-I..", + "-I../d4_ce", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-Wall", + "-W", + "-Wcast-align", + "-MT", + "libd4_ce_parser_la-d4_ce_parser.tab.lo", + "-MD", + "-MP", + "-MF", + ".deps/libd4_ce_parser_la-d4_ce_parser.tab.Tpo", + "-c", + "d4_ce_parser.tab.cc", + "-o", + "libd4_ce_parser_la-d4_ce_parser.tab.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce", + "output": "libd4_ce_parser_la-d4_ce_parser.tab.o" + }, + { + "file": "D4ConstraintEvaluator.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../d4_ce", + "-I/opt/homebrew/include", + "-I..", + "-I../d4_ce", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-Wall", + "-W", + "-Wcast-align", + "-MT", + "libd4_ce_parser_la-D4ConstraintEvaluator.lo", + "-MD", + "-MP", + "-MF", + ".deps/libd4_ce_parser_la-D4ConstraintEvaluator.Tpo", + "-c", + "D4ConstraintEvaluator.cc", + "-o", + "libd4_ce_parser_la-D4ConstraintEvaluator.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce", + "output": "libd4_ce_parser_la-D4ConstraintEvaluator.o" + }, + { + "file": "d4_function_parser.tab.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../d4_ce", + "-I.", + "-I/opt/homebrew/include", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-Wall", + "-W", + "-Wcast-align", + "-MT", + "d4_function_parser.tab.lo", + "-MD", + "-MP", + "-MF", + ".deps/d4_function_parser.tab.Tpo", + "-c", + "d4_function_parser.tab.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/d4_function_parser.tab.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_function", + "output": ".libs/d4_function_parser.tab.o" + }, + { + "file": "lex.d4_function.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../d4_ce", + "-I.", + "-I/opt/homebrew/include", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-Wall", + "-W", + "-Wcast-align", + "-MT", + "lex.d4_function.lo", + "-MD", + "-MP", + "-MF", + ".deps/lex.d4_function.Tpo", + "-c", + "lex.d4_function.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/lex.d4_function.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_function", + "output": ".libs/lex.d4_function.o" + }, + { + "file": "D4FunctionEvaluator.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../d4_ce", + "-I.", + "-I/opt/homebrew/include", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-Wall", + "-W", + "-Wcast-align", + "-MT", + "D4FunctionEvaluator.lo", + "-MD", + "-MP", + "-MF", + ".deps/D4FunctionEvaluator.Tpo", + "-c", + "D4FunctionEvaluator.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/D4FunctionEvaluator.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_function", + "output": ".libs/D4FunctionEvaluator.o" + }, + { + "file": "lex.d4_function.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../d4_ce", + "-I.", + "-I/opt/homebrew/include", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-Wall", + "-W", + "-Wcast-align", + "-MT", + "lex.d4_function.lo", + "-MD", + "-MP", + "-MF", + ".deps/lex.d4_function.Tpo", + "-c", + "lex.d4_function.cc", + "-o", + "lex.d4_function.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_function", + "output": "lex.d4_function.o" + }, + { + "file": "d4_function_parser.tab.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../d4_ce", + "-I.", + "-I/opt/homebrew/include", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-Wall", + "-W", + "-Wcast-align", + "-MT", + "d4_function_parser.tab.lo", + "-MD", + "-MP", + "-MF", + ".deps/d4_function_parser.tab.Tpo", + "-c", + "d4_function_parser.tab.cc", + "-o", + "d4_function_parser.tab.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_function", + "output": "d4_function_parser.tab.o" + }, + { + "file": "D4FunctionEvaluator.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../d4_ce", + "-I.", + "-I/opt/homebrew/include", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-Wall", + "-W", + "-Wcast-align", + "-MT", + "D4FunctionEvaluator.lo", + "-MD", + "-MP", + "-MF", + ".deps/D4FunctionEvaluator.Tpo", + "-c", + "D4FunctionEvaluator.cc", + "-o", + "D4FunctionEvaluator.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_function", + "output": "D4FunctionEvaluator.o" + }, + { + "file": "HTTPCacheTable.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I/opt/homebrew/include", + "-I.", + "-I..", + "-I../GNU", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-MT", + "libhttp_dap_la-HTTPCacheTable.lo", + "-MD", + "-MP", + "-MF", + ".deps/libhttp_dap_la-HTTPCacheTable.Tpo", + "-c", + "HTTPCacheTable.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libhttp_dap_la-HTTPCacheTable.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", + "output": ".libs/libhttp_dap_la-HTTPCacheTable.o" + }, + { + "file": "ResponseTooBigErr.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I/opt/homebrew/include", + "-I.", + "-I..", + "-I../GNU", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-MT", + "libhttp_dap_la-ResponseTooBigErr.lo", + "-MD", + "-MP", + "-MF", + ".deps/libhttp_dap_la-ResponseTooBigErr.Tpo", + "-c", + "ResponseTooBigErr.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libhttp_dap_la-ResponseTooBigErr.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", + "output": ".libs/libhttp_dap_la-ResponseTooBigErr.o" + }, + { + "file": "HTTPConnect.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I/opt/homebrew/include", + "-I.", + "-I..", + "-I../GNU", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-MT", + "libhttp_dap_la-HTTPConnect.lo", + "-MD", + "-MP", + "-MF", + ".deps/libhttp_dap_la-HTTPConnect.Tpo", + "-c", + "HTTPConnect.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libhttp_dap_la-HTTPConnect.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", + "output": ".libs/libhttp_dap_la-HTTPConnect.o" + }, + { + "file": "HTTPCache.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I/opt/homebrew/include", + "-I.", + "-I..", + "-I../GNU", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-MT", + "libhttp_dap_la-HTTPCache.lo", + "-MD", + "-MP", + "-MF", + ".deps/libhttp_dap_la-HTTPCache.Tpo", + "-c", + "HTTPCache.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libhttp_dap_la-HTTPCache.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", + "output": ".libs/libhttp_dap_la-HTTPCache.o" + }, + { + "file": "ResponseTooBigErr.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I/opt/homebrew/include", + "-I.", + "-I..", + "-I../GNU", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-MT", + "libhttp_dap_la-ResponseTooBigErr.lo", + "-MD", + "-MP", + "-MF", + ".deps/libhttp_dap_la-ResponseTooBigErr.Tpo", + "-c", + "ResponseTooBigErr.cc", + "-o", + "libhttp_dap_la-ResponseTooBigErr.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", + "output": "libhttp_dap_la-ResponseTooBigErr.o" + }, + { + "file": "HTTPCacheTable.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I/opt/homebrew/include", + "-I.", + "-I..", + "-I../GNU", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-MT", + "libhttp_dap_la-HTTPCacheTable.lo", + "-MD", + "-MP", + "-MF", + ".deps/libhttp_dap_la-HTTPCacheTable.Tpo", + "-c", + "HTTPCacheTable.cc", + "-o", + "libhttp_dap_la-HTTPCacheTable.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", + "output": "libhttp_dap_la-HTTPCacheTable.o" + }, + { + "file": "HTTPConnect.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I/opt/homebrew/include", + "-I.", + "-I..", + "-I../GNU", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-MT", + "libhttp_dap_la-HTTPConnect.lo", + "-MD", + "-MP", + "-MF", + ".deps/libhttp_dap_la-HTTPConnect.Tpo", + "-c", + "HTTPConnect.cc", + "-o", + "libhttp_dap_la-HTTPConnect.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", + "output": "libhttp_dap_la-HTTPConnect.o" + }, + { + "file": "HTTPCache.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I/opt/homebrew/include", + "-I.", + "-I..", + "-I../GNU", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", + "-g3", + "-O0", + "-MT", + "libhttp_dap_la-HTTPCache.lo", + "-MD", + "-MP", + "-MF", + ".deps/libhttp_dap_la-HTTPCache.Tpo", + "-c", + "HTTPCache.cc", + "-o", + "libhttp_dap_la-HTTPCache.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", + "output": "libhttp_dap_la-HTTPCache.o" + }, + { + "file": "getdap4.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "getdap4-getdap4.o", + "-MD", + "-MP", + "-MF", + ".deps/getdap4-getdap4.Tpo", + "-c", + "-o", + "getdap4-getdap4.o", + "getdap4.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "getdap4-getdap4.o" + }, + { + "file": "getdap.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "getdap-getdap.o", + "-MD", + "-MP", + "-MF", + ".deps/getdap-getdap.Tpo", + "-c", + "-o", + "getdap-getdap.o", + "getdap.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "getdap-getdap.o" + }, + { + "file": "dmr_mcache_test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "dmr_memory_cache-dmr_mcache_test.o", + "-MD", + "-MP", + "-MF", + ".deps/dmr_memory_cache-dmr_mcache_test.Tpo", + "-c", + "-o", + "dmr_memory_cache-dmr_mcache_test.o", + "dmr_mcache_test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "dmr_memory_cache-dmr_mcache_test.o" + }, + { + "file": "util.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-util.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-util.Tpo", + "-c", + "util.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-util.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-util.o" + }, + { + "file": "RCReader.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdapclient_la-RCReader.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdapclient_la-RCReader.Tpo", + "-c", + "RCReader.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdapclient_la-RCReader.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdapclient_la-RCReader.o" + }, + { + "file": "mime_util.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-mime_util.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-mime_util.Tpo", + "-c", + "mime_util.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-mime_util.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-mime_util.o" + }, + { + "file": "Clause.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Clause.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Clause.Tpo", + "-c", + "Clause.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Clause.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Clause.o" + }, + { + "file": "SignalHandler.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-SignalHandler.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-SignalHandler.Tpo", + "-c", + "SignalHandler.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-SignalHandler.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-SignalHandler.o" + }, + { + "file": "D4Connect.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdapclient_la-D4Connect.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdapclient_la-D4Connect.Tpo", + "-c", + "D4Connect.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdapclient_la-D4Connect.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdapclient_la-D4Connect.o" + }, + { + "file": "Constructor.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Constructor.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Constructor.Tpo", + "-c", + "Constructor.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Constructor.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Constructor.o" + }, + { + "file": "lex.Error.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-lex.Error.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-lex.Error.Tpo", + "-c", + "lex.Error.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libparsers_la-lex.Error.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libparsers_la-lex.Error.o" + }, + { + "file": "DataDDS.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DataDDS.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DataDDS.Tpo", + "-c", + "DataDDS.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-DataDDS.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-DataDDS.o" + }, + { + "file": "Keywords2.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Keywords2.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Keywords2.Tpo", + "-c", + "Keywords2.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Keywords2.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Keywords2.o" + }, + { + "file": "Url.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Url.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Url.Tpo", + "-c", + "Url.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Url.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Url.o" + }, + { + "file": "Array.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Array.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Array.Tpo", + "-c", + "Array.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Array.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Array.o" + }, + { + "file": "D4Dimensions.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Dimensions.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Dimensions.Tpo", + "-c", + "D4Dimensions.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4Dimensions.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4Dimensions.o" + }, + { + "file": "DAS.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DAS.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DAS.Tpo", + "-c", + "DAS.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-DAS.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-DAS.o" + }, + { + "file": "DapIndent.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DapIndent.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DapIndent.Tpo", + "-c", + "DapIndent.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-DapIndent.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-DapIndent.o" + }, + { + "file": "parser-util.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-parser-util.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-parser-util.Tpo", + "-c", + "parser-util.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-parser-util.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-parser-util.o" + }, + { + "file": "D4Opaque.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Opaque.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Opaque.Tpo", + "-c", + "D4Opaque.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4Opaque.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4Opaque.o" + }, + { + "file": "D4EnumDefs.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4EnumDefs.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4EnumDefs.Tpo", + "-c", + "D4EnumDefs.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4EnumDefs.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4EnumDefs.o" + }, + { + "file": "AttrTable.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-AttrTable.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-AttrTable.Tpo", + "-c", + "AttrTable.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-AttrTable.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-AttrTable.o" + }, + { + "file": "Vector.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Vector.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Vector.Tpo", + "-c", + "Vector.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Vector.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Vector.o" + }, + { + "file": "Connect.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdapclient_la-Connect.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdapclient_la-Connect.Tpo", + "-c", + "Connect.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdapclient_la-Connect.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdapclient_la-Connect.o" + }, + { + "file": "DDS.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DDS.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DDS.Tpo", + "-c", + "DDS.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-DDS.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-DDS.o" + }, + { + "file": "DMR.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DMR.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DMR.Tpo", + "-c", + "DMR.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-DMR.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-DMR.o" + }, + { + "file": "escaping.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-escaping.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-escaping.Tpo", + "-c", + "escaping.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-escaping.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-escaping.o" + }, + { + "file": "RValue.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-RValue.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-RValue.Tpo", + "-c", + "RValue.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-RValue.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-RValue.o" + }, + { + "file": "xdrutil_ppc.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "-MT", + "libdap_la-xdrutil_ppc.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-xdrutil_ppc.Tpo", + "-c", + "xdrutil_ppc.c", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-xdrutil_ppc.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-xdrutil_ppc.o" + }, + { + "file": "chunked_ostream.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-chunked_ostream.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-chunked_ostream.Tpo", + "-c", + "chunked_ostream.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-chunked_ostream.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-chunked_ostream.o" + }, + { + "file": "D4StreamUnMarshaller.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4StreamUnMarshaller.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4StreamUnMarshaller.Tpo", + "-c", + "D4StreamUnMarshaller.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4StreamUnMarshaller.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4StreamUnMarshaller.o" + }, + { + "file": "DDXParserSAX2.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DDXParserSAX2.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DDXParserSAX2.Tpo", + "-c", + "DDXParserSAX2.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-DDXParserSAX2.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-DDXParserSAX2.o" + }, + { + "file": "D4Attributes.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Attributes.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Attributes.Tpo", + "-c", + "D4Attributes.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4Attributes.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4Attributes.o" + }, + { + "file": "ConstraintEvaluator.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-ConstraintEvaluator.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-ConstraintEvaluator.Tpo", + "-c", + "ConstraintEvaluator.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-ConstraintEvaluator.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-ConstraintEvaluator.o" + }, + { + "file": "XDRFileUnMarshaller.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-XDRFileUnMarshaller.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-XDRFileUnMarshaller.Tpo", + "-c", + "XDRFileUnMarshaller.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-XDRFileUnMarshaller.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-XDRFileUnMarshaller.o" + }, + { + "file": "D4RValue.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4RValue.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4RValue.Tpo", + "-c", + "D4RValue.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4RValue.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4RValue.o" + }, + { + "file": "D4ParserSax2.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4ParserSax2.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4ParserSax2.Tpo", + "-c", + "D4ParserSax2.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4ParserSax2.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4ParserSax2.o" + }, + { + "file": "XDRStreamMarshaller.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-XDRStreamMarshaller.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-XDRStreamMarshaller.Tpo", + "-c", + "XDRStreamMarshaller.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-XDRStreamMarshaller.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-XDRStreamMarshaller.o" + }, + { + "file": "Ancillary.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "Ancillary.lo", + "-MD", + "-MP", + "-MF", + ".deps/Ancillary.Tpo", + "-c", + "Ancillary.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/Ancillary.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/Ancillary.o" + }, + { + "file": "Grid.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Grid.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Grid.Tpo", + "-c", + "Grid.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Grid.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Grid.o" + }, + { + "file": "D4Group.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Group.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Group.Tpo", + "-c", + "D4Group.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4Group.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4Group.o" + }, + { + "file": "XMLWriter.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-XMLWriter.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-XMLWriter.Tpo", + "-c", + "XMLWriter.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-XMLWriter.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-XMLWriter.o" + }, + { + "file": "util_mit.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdapclient_la-util_mit.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdapclient_la-util_mit.Tpo", + "-c", + "util_mit.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdapclient_la-util_mit.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdapclient_la-util_mit.o" + }, + { + "file": "chunked_istream.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-chunked_istream.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-chunked_istream.Tpo", + "-c", + "chunked_istream.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-chunked_istream.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-chunked_istream.o" + }, + { + "file": "Error.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Error.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Error.Tpo", + "-c", + "Error.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Error.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Error.o" + }, + { + "file": "ServerFunctionsList.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-ServerFunctionsList.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-ServerFunctionsList.Tpo", + "-c", + "ServerFunctionsList.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-ServerFunctionsList.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-ServerFunctionsList.o" + }, + { + "file": "dds.tab.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-dds.tab.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-dds.tab.Tpo", + "-c", + "dds.tab.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libparsers_la-dds.tab.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libparsers_la-dds.tab.o" + }, + { + "file": "BaseTypeFactory.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-BaseTypeFactory.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-BaseTypeFactory.Tpo", + "-c", + "BaseTypeFactory.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-BaseTypeFactory.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-BaseTypeFactory.o" + }, + { + "file": "Error.tab.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-Error.tab.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-Error.tab.Tpo", + "-c", + "Error.tab.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libparsers_la-Error.tab.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libparsers_la-Error.tab.o" + }, + { + "file": "Int8.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Int8.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Int8.Tpo", + "-c", + "Int8.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Int8.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Int8.o" + }, + { + "file": "MarshallerThread.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-MarshallerThread.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-MarshallerThread.Tpo", + "-c", + "MarshallerThread.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-MarshallerThread.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-MarshallerThread.o" + }, + { + "file": "lex.das.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-lex.das.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-lex.das.Tpo", + "-c", + "lex.das.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libparsers_la-lex.das.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libparsers_la-lex.das.o" + }, + { + "file": "lex.dds.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-lex.dds.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-lex.dds.Tpo", + "-c", + "lex.dds.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libparsers_la-lex.dds.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libparsers_la-lex.dds.o" + }, + { + "file": "D4BaseTypeFactory.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4BaseTypeFactory.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4BaseTypeFactory.Tpo", + "-c", + "D4BaseTypeFactory.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4BaseTypeFactory.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4BaseTypeFactory.o" + }, + { + "file": "XDRStreamUnMarshaller.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-XDRStreamUnMarshaller.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-XDRStreamUnMarshaller.Tpo", + "-c", + "XDRStreamUnMarshaller.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-XDRStreamUnMarshaller.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-XDRStreamUnMarshaller.o" + }, + { + "file": "GNU/GetOpt.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "GNU/libdap_la-GetOpt.lo", + "-MD", + "-MP", + "-MF", + "GNU/.deps/libdap_la-GetOpt.Tpo", + "-c", + "GNU/GetOpt.cc", + "-fno-common", + "-DPIC", + "-o", + "GNU/.libs/libdap_la-GetOpt.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "GNU/.libs/libdap_la-GetOpt.o" + }, + { + "file": "Sequence.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Sequence.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Sequence.Tpo", + "-c", + "Sequence.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Sequence.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Sequence.o" + }, + { + "file": "D4Enum.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Enum.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Enum.Tpo", + "-c", + "D4Enum.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4Enum.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4Enum.o" + }, + { + "file": "UInt64.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-UInt64.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-UInt64.Tpo", + "-c", + "UInt64.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-UInt64.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-UInt64.o" + }, + { + "file": "Float64.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Float64.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Float64.Tpo", + "-c", + "Float64.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Float64.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Float64.o" + }, + { + "file": "InternalErr.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-InternalErr.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-InternalErr.Tpo", + "-c", + "InternalErr.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-InternalErr.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-InternalErr.o" + }, + { + "file": "D4FilterClause.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4FilterClause.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4FilterClause.Tpo", + "-c", + "D4FilterClause.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4FilterClause.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4FilterClause.o" + }, + { + "file": "UInt32.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-UInt32.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-UInt32.Tpo", + "-c", + "UInt32.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-UInt32.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-UInt32.o" + }, + { + "file": "BaseType.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-BaseType.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-BaseType.Tpo", + "-c", + "BaseType.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-BaseType.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-BaseType.o" + }, + { + "file": "DODSFilter.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "DODSFilter.lo", + "-MD", + "-MP", + "-MF", + ".deps/DODSFilter.Tpo", + "-c", + "DODSFilter.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/DODSFilter.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/DODSFilter.o" + }, + { + "file": "UInt16.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-UInt16.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-UInt16.Tpo", + "-c", + "UInt16.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-UInt16.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-UInt16.o" + }, + { + "file": "Float32.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Float32.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Float32.Tpo", + "-c", + "Float32.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Float32.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Float32.o" + }, + { + "file": "Int16.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Int16.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Int16.Tpo", + "-c", + "Int16.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Int16.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Int16.o" + }, + { + "file": "das.tab.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-das.tab.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-das.tab.Tpo", + "-c", + "das.tab.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libparsers_la-das.tab.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libparsers_la-das.tab.o" + }, + { + "file": "Int32.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Int32.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Int32.Tpo", + "-c", + "Int32.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Int32.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Int32.o" + }, + { + "file": "D4Maps.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Maps.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Maps.Tpo", + "-c", + "D4Maps.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4Maps.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4Maps.o" + }, + { + "file": "D4AsyncUtil.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4AsyncUtil.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4AsyncUtil.Tpo", + "-c", + "D4AsyncUtil.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4AsyncUtil.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4AsyncUtil.o" + }, + { + "file": "lex.ce_expr.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-lex.ce_expr.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-lex.ce_expr.Tpo", + "-c", + "lex.ce_expr.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libparsers_la-lex.ce_expr.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libparsers_la-lex.ce_expr.o" + }, + { + "file": "Int64.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Int64.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Int64.Tpo", + "-c", + "Int64.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Int64.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Int64.o" + }, + { + "file": "Byte.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Byte.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Byte.Tpo", + "-c", + "Byte.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Byte.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Byte.o" + }, + { + "file": "XDRUtils.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-XDRUtils.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-XDRUtils.Tpo", + "-c", + "XDRUtils.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-XDRUtils.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-XDRUtils.o" + }, + { + "file": "D4Sequence.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Sequence.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Sequence.Tpo", + "-c", + "D4Sequence.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4Sequence.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4Sequence.o" + }, + { + "file": "GNU/GNURegex.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "GNU/libdap_la-GNURegex.lo", + "-MD", + "-MP", + "-MF", + "GNU/.deps/libdap_la-GNURegex.Tpo", + "-c", + "GNU/GNURegex.cc", + "-fno-common", + "-DPIC", + "-o", + "GNU/.libs/libdap_la-GNURegex.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "GNU/.libs/libdap_la-GNURegex.o" + }, + { + "file": "ServerFunction.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-ServerFunction.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-ServerFunction.Tpo", + "-c", + "ServerFunction.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-ServerFunction.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-ServerFunction.o" + }, + { + "file": "Str.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Str.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Str.Tpo", + "-c", + "Str.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Str.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Str.o" + }, + { + "file": "XDRFileMarshaller.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-XDRFileMarshaller.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-XDRFileMarshaller.Tpo", + "-c", + "XDRFileMarshaller.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-XDRFileMarshaller.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-XDRFileMarshaller.o" + }, + { + "file": "D4StreamMarshaller.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4StreamMarshaller.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4StreamMarshaller.Tpo", + "-c", + "D4StreamMarshaller.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-D4StreamMarshaller.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-D4StreamMarshaller.o" + }, + { + "file": "xdrutil_ppc.c", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "-MT", + "libdap_la-xdrutil_ppc.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-xdrutil_ppc.Tpo", + "-c", + "xdrutil_ppc.c", + "-o", + "libdap_la-xdrutil_ppc.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-xdrutil_ppc.o" + }, + { + "file": "Structure.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Structure.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Structure.Tpo", + "-c", + "Structure.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-Structure.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-Structure.o" + }, + { + "file": "DapXmlNamespaces.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DapXmlNamespaces.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DapXmlNamespaces.Tpo", + "-c", + "DapXmlNamespaces.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libdap_la-DapXmlNamespaces.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libdap_la-DapXmlNamespaces.o" + }, + { + "file": "ce_expr.tab.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-ce_expr.tab.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-ce_expr.tab.Tpo", + "-c", + "ce_expr.tab.cc", + "-fno-common", + "-DPIC", + "-o", + ".libs/libparsers_la-ce_expr.tab.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": ".libs/libparsers_la-ce_expr.tab.o" + }, + { + "file": "DapXmlNamespaces.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DapXmlNamespaces.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DapXmlNamespaces.Tpo", + "-c", + "DapXmlNamespaces.cc", + "-o", + "libdap_la-DapXmlNamespaces.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-DapXmlNamespaces.o" + }, + { + "file": "parser-util.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-parser-util.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-parser-util.Tpo", + "-c", + "parser-util.cc", + "-o", + "libdap_la-parser-util.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-parser-util.o" + }, + { + "file": "Clause.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Clause.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Clause.Tpo", + "-c", + "Clause.cc", + "-o", + "libdap_la-Clause.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Clause.o" + }, + { + "file": "DapIndent.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DapIndent.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DapIndent.Tpo", + "-c", + "DapIndent.cc", + "-o", + "libdap_la-DapIndent.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-DapIndent.o" + }, + { + "file": "GNU/GetOpt.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "GNU/libdap_la-GetOpt.lo", + "-MD", + "-MP", + "-MF", + "GNU/.deps/libdap_la-GetOpt.Tpo", + "-c", + "GNU/GetOpt.cc", + "-o", + "GNU/libdap_la-GetOpt.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "GNU/libdap_la-GetOpt.o" + }, + { + "file": "Url.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Url.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Url.Tpo", + "-c", + "Url.cc", + "-o", + "libdap_la-Url.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Url.o" + }, + { + "file": "util_mit.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdapclient_la-util_mit.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdapclient_la-util_mit.Tpo", + "-c", + "util_mit.cc", + "-o", + "libdapclient_la-util_mit.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdapclient_la-util_mit.o" + }, + { + "file": "SignalHandler.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-SignalHandler.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-SignalHandler.Tpo", + "-c", + "SignalHandler.cc", + "-o", + "libdap_la-SignalHandler.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-SignalHandler.o" + }, + { + "file": "DAS.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DAS.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DAS.Tpo", + "-c", + "DAS.cc", + "-o", + "libdap_la-DAS.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-DAS.o" + }, + { + "file": "escaping.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-escaping.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-escaping.Tpo", + "-c", + "escaping.cc", + "-o", + "libdap_la-escaping.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-escaping.o" + }, + { + "file": "XMLWriter.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-XMLWriter.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-XMLWriter.Tpo", + "-c", + "XMLWriter.cc", + "-o", + "libdap_la-XMLWriter.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-XMLWriter.o" + }, + { + "file": "ServerFunction.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-ServerFunction.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-ServerFunction.Tpo", + "-c", + "ServerFunction.cc", + "-o", + "libdap_la-ServerFunction.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-ServerFunction.o" + }, + { + "file": "Error.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Error.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Error.Tpo", + "-c", + "Error.cc", + "-o", + "libdap_la-Error.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Error.o" + }, + { + "file": "D4Dimensions.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Dimensions.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Dimensions.Tpo", + "-c", + "D4Dimensions.cc", + "-o", + "libdap_la-D4Dimensions.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4Dimensions.o" + }, + { + "file": "mime_util.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-mime_util.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-mime_util.Tpo", + "-c", + "mime_util.cc", + "-o", + "libdap_la-mime_util.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-mime_util.o" + }, + { + "file": "chunked_istream.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-chunked_istream.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-chunked_istream.Tpo", + "-c", + "chunked_istream.cc", + "-o", + "libdap_la-chunked_istream.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-chunked_istream.o" + }, + { + "file": "DataDDS.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DataDDS.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DataDDS.Tpo", + "-c", + "DataDDS.cc", + "-o", + "libdap_la-DataDDS.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-DataDDS.o" + }, + { + "file": "XDRUtils.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-XDRUtils.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-XDRUtils.Tpo", + "-c", + "XDRUtils.cc", + "-o", + "libdap_la-XDRUtils.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-XDRUtils.o" + }, + { + "file": "lex.das.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-lex.das.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-lex.das.Tpo", + "-c", + "lex.das.cc", + "-o", + "libparsers_la-lex.das.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libparsers_la-lex.das.o" + }, + { + "file": "Error.tab.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-Error.tab.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-Error.tab.Tpo", + "-c", + "Error.tab.cc", + "-o", + "libparsers_la-Error.tab.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libparsers_la-Error.tab.o" + }, + { + "file": "MarshallerThread.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-MarshallerThread.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-MarshallerThread.Tpo", + "-c", + "MarshallerThread.cc", + "-o", + "libdap_la-MarshallerThread.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-MarshallerThread.o" + }, + { + "file": "XDRStreamMarshaller.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-XDRStreamMarshaller.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-XDRStreamMarshaller.Tpo", + "-c", + "XDRStreamMarshaller.cc", + "-o", + "libdap_la-XDRStreamMarshaller.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-XDRStreamMarshaller.o" + }, + { + "file": "lex.Error.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-lex.Error.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-lex.Error.Tpo", + "-c", + "lex.Error.cc", + "-o", + "libparsers_la-lex.Error.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libparsers_la-lex.Error.o" + }, + { + "file": "Int8.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Int8.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Int8.Tpo", + "-c", + "Int8.cc", + "-o", + "libdap_la-Int8.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Int8.o" + }, + { + "file": "UInt32.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-UInt32.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-UInt32.Tpo", + "-c", + "UInt32.cc", + "-o", + "libdap_la-UInt32.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-UInt32.o" + }, + { + "file": "D4Attributes.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Attributes.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Attributes.Tpo", + "-c", + "D4Attributes.cc", + "-o", + "libdap_la-D4Attributes.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4Attributes.o" + }, + { + "file": "Ancillary.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "Ancillary.lo", + "-MD", + "-MP", + "-MF", + ".deps/Ancillary.Tpo", + "-c", + "Ancillary.cc", + "-o", + "Ancillary.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "Ancillary.o" + }, + { + "file": "D4StreamUnMarshaller.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4StreamUnMarshaller.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4StreamUnMarshaller.Tpo", + "-c", + "D4StreamUnMarshaller.cc", + "-o", + "libdap_la-D4StreamUnMarshaller.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4StreamUnMarshaller.o" + }, + { + "file": "RCReader.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdapclient_la-RCReader.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdapclient_la-RCReader.Tpo", + "-c", + "RCReader.cc", + "-o", + "libdapclient_la-RCReader.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdapclient_la-RCReader.o" + }, + { + "file": "Keywords2.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Keywords2.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Keywords2.Tpo", + "-c", + "Keywords2.cc", + "-o", + "libdap_la-Keywords2.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Keywords2.o" + }, + { + "file": "D4AsyncUtil.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4AsyncUtil.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4AsyncUtil.Tpo", + "-c", + "D4AsyncUtil.cc", + "-o", + "libdap_la-D4AsyncUtil.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4AsyncUtil.o" + }, + { + "file": "chunked_ostream.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-chunked_ostream.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-chunked_ostream.Tpo", + "-c", + "chunked_ostream.cc", + "-o", + "libdap_la-chunked_ostream.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-chunked_ostream.o" + }, + { + "file": "InternalErr.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-InternalErr.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-InternalErr.Tpo", + "-c", + "InternalErr.cc", + "-o", + "libdap_la-InternalErr.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-InternalErr.o" + }, + { + "file": "BaseTypeFactory.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-BaseTypeFactory.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-BaseTypeFactory.Tpo", + "-c", + "BaseTypeFactory.cc", + "-o", + "libdap_la-BaseTypeFactory.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-BaseTypeFactory.o" + }, + { + "file": "RValue.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-RValue.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-RValue.Tpo", + "-c", + "RValue.cc", + "-o", + "libdap_la-RValue.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-RValue.o" + }, + { + "file": "D4Opaque.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Opaque.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Opaque.Tpo", + "-c", + "D4Opaque.cc", + "-o", + "libdap_la-D4Opaque.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4Opaque.o" + }, + { + "file": "lex.ce_expr.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-lex.ce_expr.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-lex.ce_expr.Tpo", + "-c", + "lex.ce_expr.cc", + "-o", + "libparsers_la-lex.ce_expr.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libparsers_la-lex.ce_expr.o" + }, + { + "file": "lex.dds.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-lex.dds.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-lex.dds.Tpo", + "-c", + "lex.dds.cc", + "-o", + "libparsers_la-lex.dds.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libparsers_la-lex.dds.o" + }, + { + "file": "XDRStreamUnMarshaller.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-XDRStreamUnMarshaller.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-XDRStreamUnMarshaller.Tpo", + "-c", + "XDRStreamUnMarshaller.cc", + "-o", + "libdap_la-XDRStreamUnMarshaller.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-XDRStreamUnMarshaller.o" + }, + { + "file": "GNU/GNURegex.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "GNU/libdap_la-GNURegex.lo", + "-MD", + "-MP", + "-MF", + "GNU/.deps/libdap_la-GNURegex.Tpo", + "-c", + "GNU/GNURegex.cc", + "-o", + "GNU/libdap_la-GNURegex.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "GNU/libdap_la-GNURegex.o" + }, + { + "file": "XDRFileMarshaller.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-XDRFileMarshaller.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-XDRFileMarshaller.Tpo", + "-c", + "XDRFileMarshaller.cc", + "-o", + "libdap_la-XDRFileMarshaller.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-XDRFileMarshaller.o" + }, + { + "file": "ServerFunctionsList.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-ServerFunctionsList.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-ServerFunctionsList.Tpo", + "-c", + "ServerFunctionsList.cc", + "-o", + "libdap_la-ServerFunctionsList.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-ServerFunctionsList.o" + }, + { + "file": "dds.tab.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-dds.tab.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-dds.tab.Tpo", + "-c", + "dds.tab.cc", + "-o", + "libparsers_la-dds.tab.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libparsers_la-dds.tab.o" + }, + { + "file": "D4StreamMarshaller.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4StreamMarshaller.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4StreamMarshaller.Tpo", + "-c", + "D4StreamMarshaller.cc", + "-o", + "libdap_la-D4StreamMarshaller.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4StreamMarshaller.o" + }, + { + "file": "UInt16.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-UInt16.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-UInt16.Tpo", + "-c", + "UInt16.cc", + "-o", + "libdap_la-UInt16.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-UInt16.o" + }, + { + "file": "ConstraintEvaluator.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-ConstraintEvaluator.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-ConstraintEvaluator.Tpo", + "-c", + "ConstraintEvaluator.cc", + "-o", + "libdap_la-ConstraintEvaluator.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-ConstraintEvaluator.o" + }, + { + "file": "UInt64.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-UInt64.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-UInt64.Tpo", + "-c", + "UInt64.cc", + "-o", + "libdap_la-UInt64.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-UInt64.o" + }, + { + "file": "Str.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Str.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Str.Tpo", + "-c", + "Str.cc", + "-o", + "libdap_la-Str.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Str.o" + }, + { + "file": "DMR.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DMR.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DMR.Tpo", + "-c", + "DMR.cc", + "-o", + "libdap_la-DMR.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-DMR.o" + }, + { + "file": "Byte.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Byte.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Byte.Tpo", + "-c", + "Byte.cc", + "-o", + "libdap_la-Byte.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Byte.o" + }, + { + "file": "D4EnumDefs.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4EnumDefs.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4EnumDefs.Tpo", + "-c", + "D4EnumDefs.cc", + "-o", + "libdap_la-D4EnumDefs.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4EnumDefs.o" + }, + { + "file": "DODSFilter.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "DODSFilter.lo", + "-MD", + "-MP", + "-MF", + ".deps/DODSFilter.Tpo", + "-c", + "DODSFilter.cc", + "-o", + "DODSFilter.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "DODSFilter.o" + }, + { + "file": "das.tab.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-das.tab.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-das.tab.Tpo", + "-c", + "das.tab.cc", + "-o", + "libparsers_la-das.tab.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libparsers_la-das.tab.o" + }, + { + "file": "D4FilterClause.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4FilterClause.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4FilterClause.Tpo", + "-c", + "D4FilterClause.cc", + "-o", + "libdap_la-D4FilterClause.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4FilterClause.o" + }, + { + "file": "AttrTable.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-AttrTable.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-AttrTable.Tpo", + "-c", + "AttrTable.cc", + "-o", + "libdap_la-AttrTable.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-AttrTable.o" + }, + { + "file": "XDRFileUnMarshaller.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-XDRFileUnMarshaller.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-XDRFileUnMarshaller.Tpo", + "-c", + "XDRFileUnMarshaller.cc", + "-o", + "libdap_la-XDRFileUnMarshaller.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-XDRFileUnMarshaller.o" + }, + { + "file": "Float64.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Float64.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Float64.Tpo", + "-c", + "Float64.cc", + "-o", + "libdap_la-Float64.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Float64.o" + }, + { + "file": "Int32.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Int32.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Int32.Tpo", + "-c", + "Int32.cc", + "-o", + "libdap_la-Int32.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Int32.o" + }, + { + "file": "Int64.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Int64.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Int64.Tpo", + "-c", + "Int64.cc", + "-o", + "libdap_la-Int64.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Int64.o" + }, + { + "file": "D4RValue.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4RValue.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4RValue.Tpo", + "-c", + "D4RValue.cc", + "-o", + "libdap_la-D4RValue.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4RValue.o" + }, + { + "file": "Int16.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Int16.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Int16.Tpo", + "-c", + "Int16.cc", + "-o", + "libdap_la-Int16.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Int16.o" + }, + { + "file": "Constructor.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Constructor.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Constructor.Tpo", + "-c", + "Constructor.cc", + "-o", + "libdap_la-Constructor.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Constructor.o" + }, + { + "file": "Float32.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Float32.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Float32.Tpo", + "-c", + "Float32.cc", + "-o", + "libdap_la-Float32.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Float32.o" + }, + { + "file": "D4BaseTypeFactory.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4BaseTypeFactory.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4BaseTypeFactory.Tpo", + "-c", + "D4BaseTypeFactory.cc", + "-o", + "libdap_la-D4BaseTypeFactory.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4BaseTypeFactory.o" + }, + { + "file": "D4Maps.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Maps.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Maps.Tpo", + "-c", + "D4Maps.cc", + "-o", + "libdap_la-D4Maps.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4Maps.o" + }, + { + "file": "Connect.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdapclient_la-Connect.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdapclient_la-Connect.Tpo", + "-c", + "Connect.cc", + "-o", + "libdapclient_la-Connect.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdapclient_la-Connect.o" + }, + { + "file": "D4Enum.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Enum.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Enum.Tpo", + "-c", + "D4Enum.cc", + "-o", + "libdap_la-D4Enum.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4Enum.o" + }, + { + "file": "BaseType.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-BaseType.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-BaseType.Tpo", + "-c", + "BaseType.cc", + "-o", + "libdap_la-BaseType.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-BaseType.o" + }, + { + "file": "Structure.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Structure.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Structure.Tpo", + "-c", + "Structure.cc", + "-o", + "libdap_la-Structure.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Structure.o" + }, + { + "file": "D4Sequence.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Sequence.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Sequence.Tpo", + "-c", + "D4Sequence.cc", + "-o", + "libdap_la-D4Sequence.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4Sequence.o" + }, + { + "file": "DDS.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DDS.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DDS.Tpo", + "-c", + "DDS.cc", + "-o", + "libdap_la-DDS.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-DDS.o" + }, + { + "file": "util.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-util.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-util.Tpo", + "-c", + "util.cc", + "-o", + "libdap_la-util.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-util.o" + }, + { + "file": "Array.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Array.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Array.Tpo", + "-c", + "Array.cc", + "-o", + "libdap_la-Array.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Array.o" + }, + { + "file": "Sequence.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Sequence.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Sequence.Tpo", + "-c", + "Sequence.cc", + "-o", + "libdap_la-Sequence.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Sequence.o" + }, + { + "file": "Vector.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Vector.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Vector.Tpo", + "-c", + "Vector.cc", + "-o", + "libdap_la-Vector.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Vector.o" + }, + { + "file": "DDXParserSAX2.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-DDXParserSAX2.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-DDXParserSAX2.Tpo", + "-c", + "DDXParserSAX2.cc", + "-o", + "libdap_la-DDXParserSAX2.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-DDXParserSAX2.o" + }, + { + "file": "D4Connect.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdapclient_la-D4Connect.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdapclient_la-D4Connect.Tpo", + "-c", + "D4Connect.cc", + "-o", + "libdapclient_la-D4Connect.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdapclient_la-D4Connect.o" + }, + { + "file": "D4Group.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4Group.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4Group.Tpo", + "-c", + "D4Group.cc", + "-o", + "libdap_la-D4Group.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4Group.o" + }, + { + "file": "Grid.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-Grid.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-Grid.Tpo", + "-c", + "Grid.cc", + "-o", + "libdap_la-Grid.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-Grid.o" + }, + { + "file": "ce_expr.tab.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libparsers_la-ce_expr.tab.lo", + "-MD", + "-MP", + "-MF", + ".deps/libparsers_la-ce_expr.tab.Tpo", + "-c", + "ce_expr.tab.cc", + "-o", + "libparsers_la-ce_expr.tab.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libparsers_la-ce_expr.tab.o" + }, + { + "file": "D4ParserSax2.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "libdap_la-D4ParserSax2.lo", + "-MD", + "-MP", + "-MF", + ".deps/libdap_la-D4ParserSax2.Tpo", + "-c", + "D4ParserSax2.cc", + "-o", + "libdap_la-D4ParserSax2.o" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4", + "output": "libdap_la-D4ParserSax2.o" + }, + { + "file": "TestByte.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestByte.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestByte.Tpo", + "-c", + "-o", + "libtest_types_a-TestByte.o", + "TestByte.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestByte.o" + }, + { + "file": "TestUrl.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestUrl.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestUrl.Tpo", + "-c", + "-o", + "libtest_types_a-TestUrl.o", + "TestUrl.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestUrl.o" + }, + { + "file": "TestFloat64.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestFloat64.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestFloat64.Tpo", + "-c", + "-o", + "libtest_types_a-TestFloat64.o", + "TestFloat64.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestFloat64.o" + }, + { + "file": "TestInt32.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestInt32.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestInt32.Tpo", + "-c", + "-o", + "libtest_types_a-TestInt32.o", + "TestInt32.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestInt32.o" + }, + { + "file": "TestStructure.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestStructure.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestStructure.Tpo", + "-c", + "-o", + "libtest_types_a-TestStructure.o", + "TestStructure.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestStructure.o" + }, + { + "file": "TestArray.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestArray.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestArray.Tpo", + "-c", + "-o", + "libtest_types_a-TestArray.o", + "TestArray.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestArray.o" + }, + { + "file": "TestStr.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestStr.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestStr.Tpo", + "-c", + "-o", + "libtest_types_a-TestStr.o", + "TestStr.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestStr.o" + }, + { + "file": "TestGrid.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestGrid.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestGrid.Tpo", + "-c", + "-o", + "libtest_types_a-TestGrid.o", + "TestGrid.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestGrid.o" + }, + { + "file": "TestSequence.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestSequence.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestSequence.Tpo", + "-c", + "-o", + "libtest_types_a-TestSequence.o", + "TestSequence.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestSequence.o" + }, + { + "file": "TestUInt16.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestUInt16.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestUInt16.Tpo", + "-c", + "-o", + "libtest_types_a-TestUInt16.o", + "TestUInt16.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestUInt16.o" + }, + { + "file": "TestInt16.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestInt16.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestInt16.Tpo", + "-c", + "-o", + "libtest_types_a-TestInt16.o", + "TestInt16.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestInt16.o" + }, + { + "file": "TestUInt32.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestUInt32.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestUInt32.Tpo", + "-c", + "-o", + "libtest_types_a-TestUInt32.o", + "TestUInt32.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestUInt32.o" + }, + { + "file": "TestTypeFactory.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestTypeFactory.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestTypeFactory.Tpo", + "-c", + "-o", + "libtest_types_a-TestTypeFactory.o", + "TestTypeFactory.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestTypeFactory.o" + }, + { + "file": "TestFloat32.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestFloat32.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestFloat32.Tpo", + "-c", + "-o", + "libtest_types_a-TestFloat32.o", + "TestFloat32.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestFloat32.o" + }, + { + "file": "D4TestTypeFactory.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-D4TestTypeFactory.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-D4TestTypeFactory.Tpo", + "-c", + "-o", + "libtest_types_a-D4TestTypeFactory.o", + "D4TestTypeFactory.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-D4TestTypeFactory.o" + }, + { + "file": "TestD4Group.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestD4Group.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestD4Group.Tpo", + "-c", + "-o", + "libtest_types_a-TestD4Group.o", + "TestD4Group.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestD4Group.o" + }, + { + "file": "TestInt8.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestInt8.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestInt8.Tpo", + "-c", + "-o", + "libtest_types_a-TestInt8.o", + "TestInt8.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestInt8.o" + }, + { + "file": "TestD4Sequence.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestD4Sequence.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestD4Sequence.Tpo", + "-c", + "-o", + "libtest_types_a-TestD4Sequence.o", + "TestD4Sequence.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestD4Sequence.o" + }, + { + "file": "TestUInt64.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestUInt64.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestUInt64.Tpo", + "-c", + "-o", + "libtest_types_a-TestUInt64.o", + "TestUInt64.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestUInt64.o" + }, + { + "file": "TestD4Opaque.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestD4Opaque.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestD4Opaque.Tpo", + "-c", + "-o", + "libtest_types_a-TestD4Opaque.o", + "TestD4Opaque.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestD4Opaque.o" + }, + { + "file": "TestInt64.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestInt64.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestInt64.Tpo", + "-c", + "-o", + "libtest_types_a-TestInt64.o", + "TestInt64.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestInt64.o" + }, + { + "file": "TestFunction.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestFunction.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestFunction.Tpo", + "-c", + "-o", + "libtest_types_a-TestFunction.o", + "TestFunction.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestFunction.o" + }, + { + "file": "TestD4Enum.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-TestD4Enum.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-TestD4Enum.Tpo", + "-c", + "-o", + "libtest_types_a-TestD4Enum.o", + "TestD4Enum.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-TestD4Enum.o" + }, + { + "file": "D4TestFunction.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-fPIC", + "-MT", + "libtest_types_a-D4TestFunction.o", + "-MD", + "-MP", + "-MF", + ".deps/libtest_types_a-D4TestFunction.Tpo", + "-c", + "-o", + "libtest_types_a-D4TestFunction.o", + "D4TestFunction.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "libtest_types_a-D4TestFunction.o" + }, + { + "file": "D4ConstraintEvaluatorTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../d4_ce", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4ConstraintEvaluatorTest.o", + "-MD", + "-MP", + "-MF", + ".deps/D4ConstraintEvaluatorTest.Tpo", + "-c", + "-o", + "D4ConstraintEvaluatorTest.o", + "D4ConstraintEvaluatorTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce/unit-tests", + "output": "D4ConstraintEvaluatorTest.o" + }, + { + "file": "HTTPThreadsConnectTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../GNU", + "-I../../http_dap", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "HTTPThreadsConnectTest-HTTPThreadsConnectTest.o", + "-MD", + "-MP", + "-MF", + ".deps/HTTPThreadsConnectTest-HTTPThreadsConnectTest.Tpo", + "-c", + "-o", + "HTTPThreadsConnectTest-HTTPThreadsConnectTest.o", + "HTTPThreadsConnectTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap/unit-tests", + "output": "HTTPThreadsConnectTest-HTTPThreadsConnectTest.o" + }, + { + "file": "remove_directory.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../GNU", + "-I../../http_dap", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "HTTPThreadsConnectTest-remove_directory.o", + "-MD", + "-MP", + "-MF", + ".deps/HTTPThreadsConnectTest-remove_directory.Tpo", + "-c", + "-o", + "HTTPThreadsConnectTest-remove_directory.o", + "remove_directory.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap/unit-tests", + "output": "HTTPThreadsConnectTest-remove_directory.o" + }, + { + "file": "HTTPConnectTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../GNU", + "-I../../http_dap", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "HTTPConnectTest-HTTPConnectTest.o", + "-MD", + "-MP", + "-MF", + ".deps/HTTPConnectTest-HTTPConnectTest.Tpo", + "-c", + "-o", + "HTTPConnectTest-HTTPConnectTest.o", + "HTTPConnectTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap/unit-tests", + "output": "HTTPConnectTest-HTTPConnectTest.o" + }, + { + "file": "remove_directory.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../GNU", + "-I../../http_dap", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "HTTPConnectTest-remove_directory.o", + "-MD", + "-MP", + "-MF", + ".deps/HTTPConnectTest-remove_directory.Tpo", + "-c", + "-o", + "HTTPConnectTest-remove_directory.o", + "remove_directory.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap/unit-tests", + "output": "HTTPConnectTest-remove_directory.o" + }, + { + "file": "HTTPCacheTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../GNU", + "-I../../http_dap", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "HTTPCacheTest-HTTPCacheTest.o", + "-MD", + "-MP", + "-MF", + ".deps/HTTPCacheTest-HTTPCacheTest.Tpo", + "-c", + "-o", + "HTTPCacheTest-HTTPCacheTest.o", + "HTTPCacheTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap/unit-tests", + "output": "HTTPCacheTest-HTTPCacheTest.o" + }, + { + "file": "remove_directory.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../GNU", + "-I../../http_dap", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "HTTPCacheTest-remove_directory.o", + "-MD", + "-MP", + "-MF", + ".deps/HTTPCacheTest-remove_directory.Tpo", + "-c", + "-o", + "HTTPCacheTest-remove_directory.o", + "remove_directory.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap/unit-tests", + "output": "HTTPCacheTest-remove_directory.o" + }, + { + "file": "marshT.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "marshT.o", + "-MD", + "-MP", + "-MF", + ".deps/marshT.Tpo", + "-c", + "-o", + "marshT.o", + "marshT.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "marshT.o" + }, + { + "file": "arrayT.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "arrayT.o", + "-MD", + "-MP", + "-MF", + ".deps/arrayT.Tpo", + "-c", + "-o", + "arrayT.o", + "arrayT.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "arrayT.o" + }, + { + "file": "attrTableT.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "attrTableT.o", + "-MD", + "-MP", + "-MF", + ".deps/attrTableT.Tpo", + "-c", + "-o", + "attrTableT.o", + "attrTableT.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "attrTableT.o" + }, + { + "file": "structT.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "structT.o", + "-MD", + "-MP", + "-MF", + ".deps/structT.Tpo", + "-c", + "-o", + "structT.o", + "structT.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "structT.o" + }, + { + "file": "sequenceT.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "sequenceT.o", + "-MD", + "-MP", + "-MF", + ".deps/sequenceT.Tpo", + "-c", + "-o", + "sequenceT.o", + "sequenceT.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "sequenceT.o" + }, + { + "file": "testFile.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "testFile.o", + "-MD", + "-MP", + "-MF", + ".deps/testFile.Tpo", + "-c", + "-o", + "testFile.o", + "testFile.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "testFile.o" + }, + { + "file": "ddsT.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "ddsT.o", + "-MD", + "-MP", + "-MF", + ".deps/ddsT.Tpo", + "-c", + "-o", + "ddsT.o", + "ddsT.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "ddsT.o" + }, + { + "file": "dasT.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "dasT.o", + "-MD", + "-MP", + "-MF", + ".deps/dasT.Tpo", + "-c", + "-o", + "dasT.o", + "dasT.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "dasT.o" + }, + { + "file": "RegexTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "RegexTest.o", + "-MD", + "-MP", + "-MF", + ".deps/RegexTest.Tpo", + "-c", + "-o", + "RegexTest.o", + "RegexTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "RegexTest.o" + }, + { + "file": "ArrayTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "ArrayTest.o", + "-MD", + "-MP", + "-MF", + ".deps/ArrayTest.Tpo", + "-c", + "-o", + "ArrayTest.o", + "ArrayTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "ArrayTest.o" + }, + { + "file": "GridTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "GridTest.o", + "-MD", + "-MP", + "-MF", + ".deps/GridTest.Tpo", + "-c", + "-o", + "GridTest.o", + "GridTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "GridTest.o" + }, + { + "file": "AttrTableTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "AttrTableTest.o", + "-MD", + "-MP", + "-MF", + ".deps/AttrTableTest.Tpo", + "-c", + "-o", + "AttrTableTest.o", + "AttrTableTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "AttrTableTest.o" + }, + { + "file": "MIMEUtilTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "MIMEUtilTest.o", + "-MD", + "-MP", + "-MF", + ".deps/MIMEUtilTest.Tpo", + "-c", + "-o", + "MIMEUtilTest.o", + "MIMEUtilTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "MIMEUtilTest.o" + }, + { + "file": "ByteTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "ByteTest.o", + "-MD", + "-MP", + "-MF", + ".deps/ByteTest.Tpo", + "-c", + "-o", + "ByteTest.o", + "ByteTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "ByteTest.o" + }, + { + "file": "ancT.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "ancT.o", + "-MD", + "-MP", + "-MF", + ".deps/ancT.Tpo", + "-c", + "-o", + "ancT.o", + "ancT.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "ancT.o" + }, + { + "file": "DASTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "DASTest.o", + "-MD", + "-MP", + "-MF", + ".deps/DASTest.Tpo", + "-c", + "-o", + "DASTest.o", + "DASTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "DASTest.o" + }, + { + "file": "RCReaderTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "RCReaderTest.o", + "-MD", + "-MP", + "-MF", + ".deps/RCReaderTest.Tpo", + "-c", + "-o", + "RCReaderTest.o", + "RCReaderTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "RCReaderTest.o" + }, + { + "file": "ServerFunctionsListUnitTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "ServerFunctionsListUnitTest.o", + "-MD", + "-MP", + "-MF", + ".deps/ServerFunctionsListUnitTest.Tpo", + "-c", + "-o", + "ServerFunctionsListUnitTest.o", + "ServerFunctionsListUnitTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "ServerFunctionsListUnitTest.o" + }, + { + "file": "Int32Test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "Int32Test.o", + "-MD", + "-MP", + "-MF", + ".deps/Int32Test.Tpo", + "-c", + "-o", + "Int32Test.o", + "Int32Test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "Int32Test.o" + }, + { + "file": "Int16Test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "Int16Test.o", + "-MD", + "-MP", + "-MF", + ".deps/Int16Test.Tpo", + "-c", + "-o", + "Int16Test.o", + "Int16Test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "Int16Test.o" + }, + { + "file": "generalUtilTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "generalUtilTest.o", + "-MD", + "-MP", + "-MF", + ".deps/generalUtilTest.Tpo", + "-c", + "-o", + "generalUtilTest.o", + "generalUtilTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "generalUtilTest.o" + }, + { + "file": "DDSTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "DDSTest.o", + "-MD", + "-MP", + "-MF", + ".deps/DDSTest.Tpo", + "-c", + "-o", + "DDSTest.o", + "DDSTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "DDSTest.o" + }, + { + "file": "Int8Test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "Int8Test.o", + "-MD", + "-MP", + "-MF", + ".deps/Int8Test.Tpo", + "-c", + "-o", + "Int8Test.o", + "Int8Test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "Int8Test.o" + }, + { + "file": "MarshallerFutureTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "MarshallerFutureTest.o", + "-MD", + "-MP", + "-MF", + ".deps/MarshallerFutureTest.Tpo", + "-c", + "-o", + "MarshallerFutureTest.o", + "MarshallerFutureTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "MarshallerFutureTest.o" + }, + { + "file": "MarshallerTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "MarshallerTest.o", + "-MD", + "-MP", + "-MF", + ".deps/MarshallerTest.Tpo", + "-c", + "-o", + "MarshallerTest.o", + "MarshallerTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "MarshallerTest.o" + }, + { + "file": "parserUtilTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "parserUtilTest.o", + "-MD", + "-MP", + "-MF", + ".deps/parserUtilTest.Tpo", + "-c", + "-o", + "parserUtilTest.o", + "parserUtilTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "parserUtilTest.o" + }, + { + "file": "Int64Test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "Int64Test.o", + "-MD", + "-MP", + "-MF", + ".deps/Int64Test.Tpo", + "-c", + "-o", + "Int64Test.o", + "Int64Test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "Int64Test.o" + }, + { + "file": "util_mitTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "util_mitTest.o", + "-MD", + "-MP", + "-MF", + ".deps/util_mitTest.Tpo", + "-c", + "-o", + "util_mitTest.o", + "util_mitTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "util_mitTest.o" + }, + { + "file": "SignalHandlerTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "SignalHandlerTest.o", + "-MD", + "-MP", + "-MF", + ".deps/SignalHandlerTest.Tpo", + "-c", + "-o", + "SignalHandlerTest.o", + "SignalHandlerTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "SignalHandlerTest.o" + }, + { + "file": "ErrorTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "ErrorTest.o", + "-MD", + "-MP", + "-MF", + ".deps/ErrorTest.Tpo", + "-c", + "-o", + "ErrorTest.o", + "ErrorTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "ErrorTest.o" + }, + { + "file": "BaseTypeFactoryTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "BaseTypeFactoryTest.o", + "-MD", + "-MP", + "-MF", + ".deps/BaseTypeFactoryTest.Tpo", + "-c", + "-o", + "BaseTypeFactoryTest.o", + "BaseTypeFactoryTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "BaseTypeFactoryTest.o" + }, + { + "file": "D4MarshallerTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4MarshallerTest.o", + "-MD", + "-MP", + "-MF", + ".deps/D4MarshallerTest.Tpo", + "-c", + "-o", + "D4MarshallerTest.o", + "D4MarshallerTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "D4MarshallerTest.o" + }, + { + "file": "D4DimensionsTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4DimensionsTest.o", + "-MD", + "-MP", + "-MF", + ".deps/D4DimensionsTest.Tpo", + "-c", + "-o", + "D4DimensionsTest.o", + "D4DimensionsTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "D4DimensionsTest.o" + }, + { + "file": "DmrToDap2Test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "DmrToDap2Test.o", + "-MD", + "-MP", + "-MF", + ".deps/DmrToDap2Test.Tpo", + "-c", + "-o", + "DmrToDap2Test.o", + "DmrToDap2Test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "DmrToDap2Test.o" + }, + { + "file": "IsDap4ProjectedTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "IsDap4ProjectedTest.o", + "-MD", + "-MP", + "-MF", + ".deps/IsDap4ProjectedTest.Tpo", + "-c", + "-o", + "IsDap4ProjectedTest.o", + "IsDap4ProjectedTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "IsDap4ProjectedTest.o" + }, + { + "file": "SequenceTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "SequenceTest.o", + "-MD", + "-MP", + "-MF", + ".deps/SequenceTest.Tpo", + "-c", + "-o", + "SequenceTest.o", + "SequenceTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "SequenceTest.o" + }, + { + "file": "D4FilterClauseTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4FilterClauseTest.o", + "-MD", + "-MP", + "-MF", + ".deps/D4FilterClauseTest.Tpo", + "-c", + "-o", + "D4FilterClauseTest.o", + "D4FilterClauseTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "D4FilterClauseTest.o" + }, + { + "file": "Float32Test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "Float32Test.o", + "-MD", + "-MP", + "-MF", + ".deps/Float32Test.Tpo", + "-c", + "-o", + "Float32Test.o", + "Float32Test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "Float32Test.o" + }, + { + "file": "D4SequenceTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4SequenceTest.o", + "-MD", + "-MP", + "-MF", + ".deps/D4SequenceTest.Tpo", + "-c", + "-o", + "D4SequenceTest.o", + "D4SequenceTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "D4SequenceTest.o" + }, + { + "file": "UInt32Test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "UInt32Test.o", + "-MD", + "-MP", + "-MF", + ".deps/UInt32Test.Tpo", + "-c", + "-o", + "UInt32Test.o", + "UInt32Test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "UInt32Test.o" + }, + { + "file": "D4AttributesTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4AttributesTest.o", + "-MD", + "-MP", + "-MF", + ".deps/D4AttributesTest.Tpo", + "-c", + "-o", + "D4AttributesTest.o", + "D4AttributesTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "D4AttributesTest.o" + }, + { + "file": "D4AsyncDocTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4AsyncDocTest.o", + "-MD", + "-MP", + "-MF", + ".deps/D4AsyncDocTest.Tpo", + "-c", + "-o", + "D4AsyncDocTest.o", + "D4AsyncDocTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "D4AsyncDocTest.o" + }, + { + "file": "DDXParserTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "DDXParserTest-DDXParserTest.o", + "-MD", + "-MP", + "-MF", + ".deps/DDXParserTest-DDXParserTest.Tpo", + "-c", + "-o", + "DDXParserTest-DDXParserTest.o", + "DDXParserTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "DDXParserTest-DDXParserTest.o" + }, + { + "file": "DMRTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "DMRTest.o", + "-MD", + "-MP", + "-MF", + ".deps/DMRTest.Tpo", + "-c", + "-o", + "DMRTest.o", + "DMRTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "DMRTest.o" + }, + { + "file": "D4EnumTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4EnumTest.o", + "-MD", + "-MP", + "-MF", + ".deps/D4EnumTest.Tpo", + "-c", + "-o", + "D4EnumTest.o", + "D4EnumTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "D4EnumTest.o" + }, + { + "file": "DmrRoundTripTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "DmrRoundTripTest.o", + "-MD", + "-MP", + "-MF", + ".deps/DmrRoundTripTest.Tpo", + "-c", + "-o", + "DmrRoundTripTest.o", + "DmrRoundTripTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "DmrRoundTripTest.o" + }, + { + "file": "D4GroupTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4GroupTest.o", + "-MD", + "-MP", + "-MF", + ".deps/D4GroupTest.Tpo", + "-c", + "-o", + "D4GroupTest.o", + "D4GroupTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "D4GroupTest.o" + }, + { + "file": "chunked_iostream_test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "chunked_iostream_test.o", + "-MD", + "-MP", + "-MF", + ".deps/chunked_iostream_test.Tpo", + "-c", + "-o", + "chunked_iostream_test.o", + "chunked_iostream_test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "chunked_iostream_test.o" + }, + { + "file": "D4EnumDefsTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4EnumDefsTest.o", + "-MD", + "-MP", + "-MF", + ".deps/D4EnumDefsTest.Tpo", + "-c", + "-o", + "D4EnumDefsTest.o", + "D4EnumDefsTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "D4EnumDefsTest.o" + }, + { + "file": "UInt64Test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "UInt64Test.o", + "-MD", + "-MP", + "-MF", + ".deps/UInt64Test.Tpo", + "-c", + "-o", + "UInt64Test.o", + "UInt64Test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "UInt64Test.o" + }, + { + "file": "Float64Test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "Float64Test.o", + "-MD", + "-MP", + "-MF", + ".deps/Float64Test.Tpo", + "-c", + "-o", + "Float64Test.o", + "Float64Test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "Float64Test.o" + }, + { + "file": "D4BaseTypeFactoryTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4BaseTypeFactoryTest.o", + "-MD", + "-MP", + "-MF", + ".deps/D4BaseTypeFactoryTest.Tpo", + "-c", + "-o", + "D4BaseTypeFactoryTest.o", + "D4BaseTypeFactoryTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "D4BaseTypeFactoryTest.o" + }, + { + "file": "D4UnMarshallerTest.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4UnMarshallerTest.o", + "-MD", + "-MP", + "-MF", + ".deps/D4UnMarshallerTest.Tpo", + "-c", + "-o", + "D4UnMarshallerTest.o", + "D4UnMarshallerTest.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "D4UnMarshallerTest.o" + }, + { + "file": "D4ParserSax2Test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "D4ParserSax2Test.o", + "-MD", + "-MP", + "-MF", + ".deps/D4ParserSax2Test.Tpo", + "-c", + "-o", + "D4ParserSax2Test.o", + "D4ParserSax2Test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "D4ParserSax2Test.o" + }, + { + "file": "UInt16Test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-MT", + "UInt16Test.o", + "-MD", + "-MP", + "-MF", + ".deps/UInt16Test.Tpo", + "-c", + "-o", + "UInt16Test.o", + "UInt16Test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", + "output": "UInt16Test.o" + }, + { + "file": "das-test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "das-test.o", + "-MD", + "-MP", + "-MF", + ".deps/das-test.Tpo", + "-c", + "-o", + "das-test.o", + "das-test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "das-test.o" + }, + { + "file": "dds-test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "dds-test.o", + "-MD", + "-MP", + "-MF", + ".deps/dds-test.Tpo", + "-c", + "-o", + "dds-test.o", + "dds-test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "dds-test.o" + }, + { + "file": "expr-test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "expr-test.o", + "-MD", + "-MP", + "-MF", + ".deps/expr-test.Tpo", + "-c", + "-o", + "expr-test.o", + "expr-test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "expr-test.o" + }, + { + "file": "ResponseBuilder.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "ResponseBuilder.o", + "-MD", + "-MP", + "-MF", + ".deps/ResponseBuilder.Tpo", + "-c", + "-o", + "ResponseBuilder.o", + "ResponseBuilder.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "ResponseBuilder.o" + }, + { + "file": "dmr-test.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "dmr-test.o", + "-MD", + "-MP", + "-MF", + ".deps/dmr-test.Tpo", + "-c", + "-o", + "dmr-test.o", + "dmr-test.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "dmr-test.o" + }, + { + "file": "D4ResponseBuilder.cc", + "arguments": [ + "g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", + "-I/opt/homebrew/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-g3", + "-O0", + "-MT", + "D4ResponseBuilder.o", + "-MD", + "-MP", + "-MF", + ".deps/D4ResponseBuilder.Tpo", + "-c", + "-o", + "D4ResponseBuilder.o", + "D4ResponseBuilder.cc" + ], + "directory": "/Users/jhrg/src/hyrax/libdap4/tests", + "output": "D4ResponseBuilder.o" + } +] \ No newline at end of file From 7e0d7264bb4b5c7d7e6ae8496164c80d86c41310 Mon Sep 17 00:00:00 2001 From: James Gallagher Date: Sat, 21 Feb 2026 18:34:00 +1300 Subject: [PATCH 2/7] Added a named configuration to .vscode/settings.json --- .vscode/settings.json | 9 ++++++++- retired/VCPP/BeforeInstall.txt | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 7f0ec6534..503d99bba 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -12,7 +12,14 @@ "makeArgs": [ "-j" ], - "name": "Unnamed configuration 1" + "name": "all" + }, + { + "makeArgs": [ + "-j", "check" + ], + "name": "check" } + ] } diff --git a/retired/VCPP/BeforeInstall.txt b/retired/VCPP/BeforeInstall.txt index 18ccd45ce..04b2b1cf5 100644 --- a/retired/VCPP/BeforeInstall.txt +++ b/retired/VCPP/BeforeInstall.txt @@ -1 +1 @@ -In addition to installing libdap 3.8.2, this will also install other run-time libraries libdap uses. However, this will not install the software need to compile our source code on the Windows XP platform. For more information about building our software from source, see http://scm.opendap.org/trac/wiki/XP or contact us at support at opendap.org. +In addition to installing libdap 3.8.2, this will also install other run-time libraries libdap uses. However, this will not install the software need to compile our source code on the Windows XP platform. For more information about building our software from source, see http://scm.opendap.org/trac/wiki/XP or contact us at support at opendap.org. From dfe36f0ec23be7265a6f2e9cf2452d719458e500 Mon Sep 17 00:00:00 2001 From: James Gallagher Date: Fri, 27 Feb 2026 17:02:20 -0700 Subject: [PATCH 3/7] Fixed issues in launch.json. I still had to make the dSYM lib by hand I may have to drop back to -O0 for developer builds to get decent OSX builds. The command to make the dSYM lib was: dsymutil .libs/libdap.27.dylib -o .libs/libdap.27.dylib.dSYM --- .vscode/launch.json | 15 +++++++++++---- .vscode/settings.json | 4 ++-- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 910005c9c..beb0f5f57 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,15 +10,22 @@ "cwd": "${workspaceFolder}", "environment": [ { - "name": "prefix", - "value": "/Users/jhrg/src/hyrax/build" + "name": "DYLD_LIBRARY_PATH", + "value": "${workspaceFolder}/.libs:${env:DYLD_LIBRARY_PATH}" }, { "name": "PATH", - "value": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + "value": "/Users/jimg/src/opendap/hyrax/build/bin:/Users/jimg/src/opendap/hyrax/build/deps/bin:${env:PATH}" } ], - "MIMode": "lldb" + "MIMode": "lldb", + "setupCommands": [ + { + "description": "Allow stepping into all frames", + "text": "settings set target.process.thread.step-avoid-regexp ^$", + "ignoreFailures": true + } + ] } ] } diff --git a/.vscode/settings.json b/.vscode/settings.json index 503d99bba..5cbf39fa2 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,8 +4,8 @@ "C_Cpp.default.cppStandard": "c++14", "C_Cpp.default.intelliSenseMode": "macos-clang-arm64", "terminal.integrated.env.osx": { - "prefix": "/Users/jhrg/src/hyrax/build", - "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + "prefix": "/Users/jhrg/src/opendap/hyrax/build", + "PATH": "/Users/jhrg/src/opendap//hyrax/build/bin:/Users/jhrg/src/opendap/hyrax/build/deps/bin:${env:PATH}" }, "makefile.configurations": [ { From a7a698036138bc586d7d5cf0b44b8eaa0b6ba275 Mon Sep 17 00:00:00 2001 From: James Gallagher Date: Fri, 27 Feb 2026 17:06:01 -0700 Subject: [PATCH 4/7] CMakePresets.json fixes --- CMakePresets.json | 18 +- compile_commands.json | 8628 ++++++++++++++++------------------------- 2 files changed, 3384 insertions(+), 5262 deletions(-) diff --git a/CMakePresets.json b/CMakePresets.json index a7a3f2d71..51a279cb4 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -5,7 +5,6 @@ "minor": 20, "patch": 0 }, - "configurePresets": [ { "name": "base-make", @@ -15,10 +14,8 @@ "cacheVariables": { "CMAKE_CXX_STANDARD": "14", "CMAKE_CXX_STANDARD_REQUIRED": "ON", - "CMAKE_BUILD_TYPE": "RelWithDebInfo", "CMAKE_INSTALL_PREFIX": "$prefix", - "BUILD_TESTING": "ON", "USE_CPP_11_REGEX": "ON", "USE_ASAN": "OFF", @@ -26,7 +23,6 @@ "BIG_ARRAY_TEST": "OFF" } }, - { "name": "default", "displayName": "Default (Makefiles, RWD)", @@ -67,9 +63,19 @@ "USE_ASAN": "ON", "BUILD_DEVELOPER": "ON" } + }, + { + "name": "Custom configure preset", + "displayName": "Custom configure preset", + "description": "Sets Ninja generator, build and install directory", + "generator": "Ninja", + "binaryDir": "${sourceDir}/out/build/${presetName}", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug", + "CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}" + } } ], - "buildPresets": [ { "name": "default", @@ -97,13 +103,11 @@ "targets": ["install"] } ], - "testPresets": [ { "name": "default", "configurePreset": "default" }, - { "name": "developer", "configurePreset": "developer" diff --git a/compile_commands.json b/compile_commands.json index a39ff604b..ff29ef737 100644 --- a/compile_commands.json +++ b/compile_commands.json @@ -1,3578 +1,2932 @@ [ { - "file": "tempname.c", "arguments": [ - "gcc", + "/usr/bin/g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../d4_ce", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-c", + "-o", + "D4ConstraintEvaluatorTest.o", + "D4ConstraintEvaluatorTest.cc" + ], + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/unit-tests/D4ConstraintEvaluatorTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/unit-tests/D4ConstraintEvaluatorTest.o" + }, + { + "arguments": [ + "/usr/bin/g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../GNU", + "-I../../http_dap", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-c", + "-o", + "HTTPThreadsConnectTest-HTTPThreadsConnectTest.o", + "HTTPThreadsConnectTest.cc" + ], + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests/HTTPThreadsConnectTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests/HTTPThreadsConnectTest-HTTPThreadsConnectTest.o" + }, + { + "arguments": [ + "/usr/bin/g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../GNU", + "-I../../http_dap", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-c", + "-o", + "HTTPThreadsConnectTest-remove_directory.o", + "remove_directory.cc" + ], + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests/remove_directory.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests/HTTPThreadsConnectTest-remove_directory.o" + }, + { + "arguments": [ + "/usr/bin/g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../GNU", + "-I../../http_dap", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-c", + "-o", + "HTTPConnectTest-HTTPConnectTest.o", + "HTTPConnectTest.cc" + ], + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests/HTTPConnectTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests/HTTPConnectTest-HTTPConnectTest.o" + }, + { + "arguments": [ + "/usr/bin/g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../GNU", + "-I../../http_dap", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-c", + "-o", + "HTTPConnectTest-remove_directory.o", + "remove_directory.cc" + ], + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests/remove_directory.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests/HTTPConnectTest-remove_directory.o" + }, + { + "arguments": [ + "/usr/bin/g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../GNU", + "-I../../http_dap", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-c", + "-o", + "HTTPCacheTest-HTTPCacheTest.o", + "HTTPCacheTest.cc" + ], + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests/HTTPCacheTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests/HTTPCacheTest-HTTPCacheTest.o" + }, + { + "arguments": [ + "/usr/bin/g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I../..", + "-I../..", + "-I../../GNU", + "-I../../http_dap", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-c", + "-o", + "HTTPCacheTest-remove_directory.o", + "remove_directory.cc" + ], + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests/remove_directory.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/unit-tests/HTTPCacheTest-remove_directory.o" + }, + { + "arguments": [ + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "tempname.lo", - "-MD", - "-MP", - "-MF", - ".deps/tempname.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "tempname.c", - "-fno-common", - "-DPIC", "-o", - ".libs/tempname.o" + "Int8Test.o", + "Int8Test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": ".libs/tempname.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/Int8Test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/Int8Test.o" }, { - "file": "localcharset.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "localcharset.lo", - "-MD", - "-MP", - "-MF", - ".deps/localcharset.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "localcharset.c", - "-fno-common", - "-DPIC", "-o", - ".libs/localcharset.o" + "ancT.o", + "ancT.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": ".libs/localcharset.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ancT.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ancT.o" }, { - "file": "tempname.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "tempname.lo", - "-MD", - "-MP", - "-MF", - ".deps/tempname.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "tempname.c", "-o", - "tempname.o" + "marshT.o", + "marshT.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": "tempname.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/marshT.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/marshT.o" }, { - "file": "malloca.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "malloca.lo", - "-MD", - "-MP", - "-MF", - ".deps/malloca.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-c", + "-o", + "DDSTest.o", + "DDSTest.cc" + ], + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DDSTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DDSTest.o" + }, + { + "arguments": [ + "/usr/bin/g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "malloca.c", - "-fno-common", - "-DPIC", "-o", - ".libs/malloca.o" + "RCReaderTest.o", + "RCReaderTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": ".libs/malloca.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/RCReaderTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/RCReaderTest.o" }, { - "file": "localcharset.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "localcharset.lo", - "-MD", - "-MP", - "-MF", - ".deps/localcharset.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "localcharset.c", "-o", - "localcharset.o" + "ddsT.o", + "ddsT.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": "localcharset.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ddsT.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ddsT.o" }, { - "file": "malloca.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "malloca.lo", - "-MD", - "-MP", - "-MF", - ".deps/malloca.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "malloca.c", "-o", - "malloca.o" + "BaseTypeFactoryTest.o", + "BaseTypeFactoryTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": "malloca.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/BaseTypeFactoryTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/BaseTypeFactoryTest.o" }, { - "file": "wctype-h.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "wctype-h.lo", - "-MD", - "-MP", - "-MF", - ".deps/wctype-h.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "wctype-h.c", - "-fno-common", - "-DPIC", "-o", - ".libs/wctype-h.o" + "ConstraintEvaluatorTest.o", + "ConstraintEvaluatorTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": ".libs/wctype-h.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ConstraintEvaluatorTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ConstraintEvaluatorTest.o" }, { - "file": "unistd.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "unistd.lo", - "-MD", - "-MP", - "-MF", - ".deps/unistd.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "unistd.c", - "-fno-common", - "-DPIC", "-o", - ".libs/unistd.o" + "D4DimensionsTest.o", + "D4DimensionsTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": ".libs/unistd.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4DimensionsTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4DimensionsTest.o" }, { - "file": "hard-locale.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "hard-locale.lo", - "-MD", - "-MP", - "-MF", - ".deps/hard-locale.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "hard-locale.c", - "-fno-common", - "-DPIC", "-o", - ".libs/hard-locale.o" + "D4StreamRoundTripTest.o", + "D4StreamRoundTripTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": ".libs/hard-locale.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4StreamRoundTripTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4StreamRoundTripTest.o" }, { - "file": "wctype-h.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "wctype-h.lo", - "-MD", - "-MP", - "-MF", - ".deps/wctype-h.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "wctype-h.c", "-o", - "wctype-h.o" + "D4SequenceTest.o", + "D4SequenceTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": "wctype-h.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4SequenceTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4SequenceTest.o" }, { - "file": "localtime-buffer.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "localtime-buffer.lo", - "-MD", - "-MP", - "-MF", - ".deps/localtime-buffer.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", + "-c", + "-o", + "arrayT.o", + "arrayT.cc" + ], + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/arrayT.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/arrayT.o" + }, + { + "arguments": [ + "/usr/bin/g++", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "localtime-buffer.c", - "-fno-common", - "-DPIC", "-o", - ".libs/localtime-buffer.o" + "attrTableT.o", + "attrTableT.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": ".libs/localtime-buffer.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/attrTableT.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/attrTableT.o" }, { - "file": "unistd.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "unistd.lo", - "-MD", - "-MP", - "-MF", - ".deps/unistd.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "unistd.c", "-o", - "unistd.o" + "testFile.o", + "testFile.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": "unistd.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/testFile.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/testFile.o" }, { - "file": "glthread/lock.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "glthread/lock.lo", - "-MD", - "-MP", - "-MF", - "glthread/.deps/lock.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "glthread/lock.c", - "-fno-common", - "-DPIC", "-o", - "glthread/.libs/lock.o" + "structT.o", + "structT.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": "glthread/.libs/lock.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/structT.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/structT.o" }, { - "file": "hard-locale.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "hard-locale.lo", - "-MD", - "-MP", - "-MF", - ".deps/hard-locale.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "hard-locale.c", "-o", - "hard-locale.o" + "Float64Test.o", + "Float64Test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": "hard-locale.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/Float64Test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/Float64Test.o" }, { - "file": "glthread/threadlib.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "glthread/threadlib.lo", - "-MD", - "-MP", - "-MF", - "glthread/.deps/threadlib.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "glthread/threadlib.c", - "-fno-common", - "-DPIC", "-o", - "glthread/.libs/threadlib.o" + "generalUtilTest.o", + "generalUtilTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": "glthread/.libs/threadlib.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/generalUtilTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/generalUtilTest.o" }, { - "file": "localtime-buffer.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "localtime-buffer.lo", - "-MD", - "-MP", - "-MF", - ".deps/localtime-buffer.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "localtime-buffer.c", "-o", - "localtime-buffer.o" + "SignalHandlerTest.o", + "SignalHandlerTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": "localtime-buffer.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/SignalHandlerTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/SignalHandlerTest.o" }, { - "file": "regex.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "regex.lo", - "-MD", - "-MP", - "-MF", - ".deps/regex.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "regex.c", - "-fno-common", - "-DPIC", "-o", - ".libs/regex.o" + "ErrorTest.o", + "ErrorTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": ".libs/regex.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ErrorTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ErrorTest.o" }, { - "file": "glthread/lock.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "glthread/lock.lo", - "-MD", - "-MP", - "-MF", - "glthread/.deps/lock.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "glthread/lock.c", "-o", - "glthread/lock.o" + "Int64Test.o", + "Int64Test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": "glthread/lock.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/Int64Test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/Int64Test.o" }, { - "file": "glthread/threadlib.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "glthread/threadlib.lo", - "-MD", - "-MP", - "-MF", - "glthread/.deps/threadlib.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "glthread/threadlib.c", "-o", - "glthread/threadlib.o" + "MIMEUtilTest.o", + "MIMEUtilTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": "glthread/threadlib.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/MIMEUtilTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/MIMEUtilTest.o" }, { - "file": "regex.c", "arguments": [ - "gcc", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I/opt/homebrew/include", - "-MT", - "regex.lo", - "-MD", - "-MP", - "-MF", - ".deps/regex.Tpo", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-self-assign-overloaded", + "-g3", + "-O0", "-c", - "regex.c", "-o", - "regex.o" + "AttrTableTest.o", + "AttrTableTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/gl", - "output": "regex.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/AttrTableTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/AttrTableTest.o" }, { - "file": "D4ConstraintEvaluator.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", + "-I../GNU", "-I..", - "-I../d4_ce", - "-I/opt/homebrew/include", - "-I..", - "-I../d4_ce", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-inconsistent-missing-override", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-Wall", - "-W", - "-Wcast-align", - "-MT", - "libd4_ce_parser_la-D4ConstraintEvaluator.lo", - "-MD", - "-MP", - "-MF", - ".deps/libd4_ce_parser_la-D4ConstraintEvaluator.Tpo", "-c", - "D4ConstraintEvaluator.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libd4_ce_parser_la-D4ConstraintEvaluator.o" + "RegexTest.o", + "RegexTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce", - "output": ".libs/libd4_ce_parser_la-D4ConstraintEvaluator.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/RegexTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/RegexTest.o" }, { - "file": "d4_ce_parser.tab.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", + "-I../GNU", "-I..", - "-I../d4_ce", - "-I/opt/homebrew/include", - "-I..", - "-I../d4_ce", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-inconsistent-missing-override", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-Wall", - "-W", - "-Wcast-align", - "-MT", - "libd4_ce_parser_la-d4_ce_parser.tab.lo", - "-MD", - "-MP", - "-MF", - ".deps/libd4_ce_parser_la-d4_ce_parser.tab.Tpo", "-c", - "d4_ce_parser.tab.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libd4_ce_parser_la-d4_ce_parser.tab.o" + "MarshallerTest.o", + "MarshallerTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce", - "output": ".libs/libd4_ce_parser_la-d4_ce_parser.tab.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/MarshallerTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/MarshallerTest.o" }, { - "file": "lex.d4_ce.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", + "-I../GNU", "-I..", - "-I../d4_ce", - "-I/opt/homebrew/include", - "-I..", - "-I../d4_ce", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-inconsistent-missing-override", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-Wall", - "-W", - "-Wcast-align", - "-MT", - "libd4_ce_parser_la-lex.d4_ce.lo", - "-MD", - "-MP", - "-MF", - ".deps/libd4_ce_parser_la-lex.d4_ce.Tpo", "-c", - "lex.d4_ce.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libd4_ce_parser_la-lex.d4_ce.o" + "ByteTest.o", + "ByteTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce", - "output": ".libs/libd4_ce_parser_la-lex.d4_ce.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ByteTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ByteTest.o" }, { - "file": "lex.d4_ce.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", + "-I../GNU", "-I..", - "-I../d4_ce", - "-I/opt/homebrew/include", - "-I..", - "-I../d4_ce", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-inconsistent-missing-override", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-Wall", - "-W", - "-Wcast-align", - "-MT", - "libd4_ce_parser_la-lex.d4_ce.lo", - "-MD", - "-MP", - "-MF", - ".deps/libd4_ce_parser_la-lex.d4_ce.Tpo", "-c", - "lex.d4_ce.cc", "-o", - "libd4_ce_parser_la-lex.d4_ce.o" + "sequenceT.o", + "sequenceT.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce", - "output": "libd4_ce_parser_la-lex.d4_ce.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/sequenceT.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/sequenceT.o" }, { - "file": "d4_ce_parser.tab.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", + "-I../GNU", "-I..", - "-I../d4_ce", - "-I/opt/homebrew/include", - "-I..", - "-I../d4_ce", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-inconsistent-missing-override", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-Wall", - "-W", - "-Wcast-align", - "-MT", - "libd4_ce_parser_la-d4_ce_parser.tab.lo", - "-MD", - "-MP", - "-MF", - ".deps/libd4_ce_parser_la-d4_ce_parser.tab.Tpo", "-c", - "d4_ce_parser.tab.cc", "-o", - "libd4_ce_parser_la-d4_ce_parser.tab.o" + "D4BaseTypeFactoryTest.o", + "D4BaseTypeFactoryTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce", - "output": "libd4_ce_parser_la-d4_ce_parser.tab.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4BaseTypeFactoryTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4BaseTypeFactoryTest.o" }, { - "file": "D4ConstraintEvaluator.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", + "-I../GNU", "-I..", - "-I../d4_ce", - "-I/opt/homebrew/include", - "-I..", - "-I../d4_ce", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-inconsistent-missing-override", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-Wall", - "-W", - "-Wcast-align", - "-MT", - "libd4_ce_parser_la-D4ConstraintEvaluator.lo", - "-MD", - "-MP", - "-MF", - ".deps/libd4_ce_parser_la-D4ConstraintEvaluator.Tpo", "-c", - "D4ConstraintEvaluator.cc", "-o", - "libd4_ce_parser_la-D4ConstraintEvaluator.o" + "D4EnumDefsTest.o", + "D4EnumDefsTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce", - "output": "libd4_ce_parser_la-D4ConstraintEvaluator.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4EnumDefsTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4EnumDefsTest.o" }, { - "file": "d4_function_parser.tab.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", + "-I../GNU", "-I..", - "-I../d4_ce", - "-I.", - "-I/opt/homebrew/include", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-inconsistent-missing-override", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-Wall", - "-W", - "-Wcast-align", - "-MT", - "d4_function_parser.tab.lo", - "-MD", - "-MP", - "-MF", - ".deps/d4_function_parser.tab.Tpo", "-c", - "d4_function_parser.tab.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/d4_function_parser.tab.o" + "ArrayTest.o", + "ArrayTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_function", - "output": ".libs/d4_function_parser.tab.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ArrayTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ArrayTest.o" }, { - "file": "lex.d4_function.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", + "-I../GNU", "-I..", - "-I../d4_ce", - "-I.", - "-I/opt/homebrew/include", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-inconsistent-missing-override", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-Wall", - "-W", - "-Wcast-align", - "-MT", - "lex.d4_function.lo", - "-MD", - "-MP", - "-MF", - ".deps/lex.d4_function.Tpo", "-c", - "lex.d4_function.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/lex.d4_function.o" + "MarshallerFutureTest.o", + "MarshallerFutureTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_function", - "output": ".libs/lex.d4_function.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/MarshallerFutureTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/MarshallerFutureTest.o" }, { - "file": "D4FunctionEvaluator.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", + "-I../GNU", "-I..", - "-I../d4_ce", - "-I.", - "-I/opt/homebrew/include", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-inconsistent-missing-override", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-Wall", - "-W", - "-Wcast-align", - "-MT", - "D4FunctionEvaluator.lo", - "-MD", - "-MP", - "-MF", - ".deps/D4FunctionEvaluator.Tpo", "-c", - "D4FunctionEvaluator.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/D4FunctionEvaluator.o" + "D4AttributesTest.o", + "D4AttributesTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_function", - "output": ".libs/D4FunctionEvaluator.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4AttributesTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4AttributesTest.o" }, { - "file": "lex.d4_function.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", + "-I../GNU", "-I..", - "-I../d4_ce", - "-I.", - "-I/opt/homebrew/include", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-inconsistent-missing-override", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-Wall", - "-W", - "-Wcast-align", - "-MT", - "lex.d4_function.lo", - "-MD", - "-MP", - "-MF", - ".deps/lex.d4_function.Tpo", "-c", - "lex.d4_function.cc", "-o", - "lex.d4_function.o" + "UInt32Test.o", + "UInt32Test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_function", - "output": "lex.d4_function.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/UInt32Test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/UInt32Test.o" }, { - "file": "d4_function_parser.tab.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", + "-I../GNU", "-I..", - "-I../d4_ce", - "-I.", - "-I/opt/homebrew/include", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-inconsistent-missing-override", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-Wall", - "-W", - "-Wcast-align", - "-MT", - "d4_function_parser.tab.lo", - "-MD", - "-MP", - "-MF", - ".deps/d4_function_parser.tab.Tpo", "-c", - "d4_function_parser.tab.cc", "-o", - "d4_function_parser.tab.o" + "SequenceTest.o", + "SequenceTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_function", - "output": "d4_function_parser.tab.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/SequenceTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/SequenceTest.o" }, { - "file": "D4FunctionEvaluator.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", + "-I../GNU", "-I..", - "-I../d4_ce", - "-I.", - "-I/opt/homebrew/include", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-inconsistent-missing-override", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-Wall", - "-W", - "-Wcast-align", - "-MT", - "D4FunctionEvaluator.lo", - "-MD", - "-MP", - "-MF", - ".deps/D4FunctionEvaluator.Tpo", "-c", - "D4FunctionEvaluator.cc", "-o", - "D4FunctionEvaluator.o" + "parserUtilTest.o", + "parserUtilTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_function", - "output": "D4FunctionEvaluator.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/parserUtilTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/parserUtilTest.o" }, { - "file": "HTTPCacheTable.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I.", - "-I..", "-I../GNU", - "-I/opt/homebrew/include", - "-I.", "-I..", - "-I../GNU", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libhttp_dap_la-HTTPCacheTable.lo", - "-MD", - "-MP", - "-MF", - ".deps/libhttp_dap_la-HTTPCacheTable.Tpo", "-c", - "HTTPCacheTable.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libhttp_dap_la-HTTPCacheTable.o" + "DASTest.o", + "DASTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", - "output": ".libs/libhttp_dap_la-HTTPCacheTable.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DASTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DASTest.o" }, { - "file": "ResponseTooBigErr.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I.", - "-I..", "-I../GNU", - "-I/opt/homebrew/include", - "-I.", "-I..", - "-I../GNU", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libhttp_dap_la-ResponseTooBigErr.lo", - "-MD", - "-MP", - "-MF", - ".deps/libhttp_dap_la-ResponseTooBigErr.Tpo", "-c", - "ResponseTooBigErr.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libhttp_dap_la-ResponseTooBigErr.o" + "D4EnumTest.o", + "D4EnumTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", - "output": ".libs/libhttp_dap_la-ResponseTooBigErr.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4EnumTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4EnumTest.o" }, { - "file": "HTTPConnect.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I.", - "-I..", "-I../GNU", - "-I/opt/homebrew/include", - "-I.", "-I..", - "-I../GNU", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libhttp_dap_la-HTTPConnect.lo", - "-MD", - "-MP", - "-MF", - ".deps/libhttp_dap_la-HTTPConnect.Tpo", "-c", - "HTTPConnect.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libhttp_dap_la-HTTPConnect.o" + "ServerFunctionsListUnitTest.o", + "ServerFunctionsListUnitTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", - "output": ".libs/libhttp_dap_la-HTTPConnect.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ServerFunctionsListUnitTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/ServerFunctionsListUnitTest.o" }, { - "file": "HTTPCache.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I.", - "-I..", "-I../GNU", - "-I/opt/homebrew/include", - "-I.", "-I..", - "-I../GNU", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libhttp_dap_la-HTTPCache.lo", - "-MD", - "-MP", - "-MF", - ".deps/libhttp_dap_la-HTTPCache.Tpo", "-c", - "HTTPCache.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libhttp_dap_la-HTTPCache.o" + "BaseTypeTest.o", + "BaseTypeTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", - "output": ".libs/libhttp_dap_la-HTTPCache.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/BaseTypeTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/BaseTypeTest.o" }, { - "file": "ResponseTooBigErr.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I.", - "-I..", "-I../GNU", - "-I/opt/homebrew/include", - "-I.", "-I..", - "-I../GNU", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libhttp_dap_la-ResponseTooBigErr.lo", - "-MD", - "-MP", - "-MF", - ".deps/libhttp_dap_la-ResponseTooBigErr.Tpo", "-c", - "ResponseTooBigErr.cc", "-o", - "libhttp_dap_la-ResponseTooBigErr.o" + "Int16Test.o", + "Int16Test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", - "output": "libhttp_dap_la-ResponseTooBigErr.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/Int16Test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/Int16Test.o" }, { - "file": "HTTPCacheTable.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I.", - "-I..", "-I../GNU", - "-I/opt/homebrew/include", - "-I.", "-I..", - "-I../GNU", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libhttp_dap_la-HTTPCacheTable.lo", - "-MD", - "-MP", - "-MF", - ".deps/libhttp_dap_la-HTTPCacheTable.Tpo", "-c", - "HTTPCacheTable.cc", "-o", - "libhttp_dap_la-HTTPCacheTable.o" + "../DAPCache3.o", + "../DAPCache3.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", - "output": "libhttp_dap_la-HTTPCacheTable.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DAPCache3.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/DAPCache3.o" }, { - "file": "HTTPConnect.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I.", - "-I..", "-I../GNU", - "-I/opt/homebrew/include", - "-I.", "-I..", - "-I../GNU", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libhttp_dap_la-HTTPConnect.lo", - "-MD", - "-MP", - "-MF", - ".deps/libhttp_dap_la-HTTPConnect.Tpo", "-c", - "HTTPConnect.cc", "-o", - "libhttp_dap_la-HTTPConnect.o" + "Int32Test.o", + "Int32Test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", - "output": "libhttp_dap_la-HTTPConnect.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/Int32Test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/Int32Test.o" }, { - "file": "HTTPCache.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I.", - "-I..", "-I../GNU", - "-I/opt/homebrew/include", - "-I.", "-I..", - "-I../GNU", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", + "--std=c++14", "-Wall", "-W", "-Wcast-align", - "--std=c++14", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libhttp_dap_la-HTTPCache.lo", - "-MD", - "-MP", - "-MF", - ".deps/libhttp_dap_la-HTTPCache.Tpo", "-c", - "HTTPCache.cc", "-o", - "libhttp_dap_la-HTTPCache.o" + "UInt64Test.o", + "UInt64Test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap", - "output": "libhttp_dap_la-HTTPCache.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/UInt64Test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/UInt64Test.o" }, { - "file": "getdap4.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "getdap4-getdap4.o", - "-MD", - "-MP", - "-MF", - ".deps/getdap4-getdap4.Tpo", "-c", "-o", - "getdap4-getdap4.o", - "getdap4.cc" + "D4MarshallerTest.o", + "D4MarshallerTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "getdap4-getdap4.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4MarshallerTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4MarshallerTest.o" }, { - "file": "getdap.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "getdap-getdap.o", - "-MD", - "-MP", - "-MF", - ".deps/getdap-getdap.Tpo", "-c", "-o", - "getdap-getdap.o", - "getdap.cc" + "MarshallerThreadTest.o", + "MarshallerThreadTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "getdap-getdap.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/MarshallerThreadTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/MarshallerThreadTest.o" }, { - "file": "dmr_mcache_test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "dmr_memory_cache-dmr_mcache_test.o", - "-MD", - "-MP", - "-MF", - ".deps/dmr_memory_cache-dmr_mcache_test.Tpo", "-c", "-o", - "dmr_memory_cache-dmr_mcache_test.o", - "dmr_mcache_test.cc" + "DAPCache3Test.o", + "DAPCache3Test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "dmr_memory_cache-dmr_mcache_test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DAPCache3Test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DAPCache3Test.o" }, { - "file": "util.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-util.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-util.Tpo", "-c", - "util.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-util.o" + "Float32Test.o", + "Float32Test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-util.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/Float32Test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/Float32Test.o" }, { - "file": "RCReader.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdapclient_la-RCReader.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdapclient_la-RCReader.Tpo", "-c", - "RCReader.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdapclient_la-RCReader.o" + "util_mitTest.o", + "util_mitTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdapclient_la-RCReader.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/util_mitTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/util_mitTest.o" }, { - "file": "mime_util.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-mime_util.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-mime_util.Tpo", "-c", - "mime_util.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-mime_util.o" + "GridTest.o", + "GridTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-mime_util.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/GridTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/GridTest.o" }, { - "file": "Clause.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-Clause.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Clause.Tpo", "-c", - "Clause.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-Clause.o" + "UInt16Test.o", + "UInt16Test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Clause.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/UInt16Test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/UInt16Test.o" }, { - "file": "SignalHandler.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-SignalHandler.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-SignalHandler.Tpo", "-c", - "SignalHandler.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-SignalHandler.o" + "D4UnMarshallerTest.o", + "D4UnMarshallerTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-SignalHandler.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4UnMarshallerTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4UnMarshallerTest.o" }, { - "file": "D4Connect.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdapclient_la-D4Connect.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdapclient_la-D4Connect.Tpo", "-c", - "D4Connect.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdapclient_la-D4Connect.o" + "DDXParserTest-DDXParserTest.o", + "DDXParserTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdapclient_la-D4Connect.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DDXParserTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DDXParserTest-DDXParserTest.o" }, { - "file": "Constructor.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-Constructor.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Constructor.Tpo", "-c", - "Constructor.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-Constructor.o" + "chunked_iostream_test.o", + "chunked_iostream_test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Constructor.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/chunked_iostream_test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/chunked_iostream_test.o" }, { - "file": "lex.Error.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libparsers_la-lex.Error.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-lex.Error.Tpo", "-c", - "lex.Error.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libparsers_la-lex.Error.o" + "D4FilterClauseTest.o", + "D4FilterClauseTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libparsers_la-lex.Error.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4FilterClauseTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4FilterClauseTest.o" }, { - "file": "DataDDS.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-DataDDS.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DataDDS.Tpo", "-c", - "DataDDS.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-DataDDS.o" + "dasT.o", + "dasT.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-DataDDS.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/dasT.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/dasT.o" }, { - "file": "Keywords2.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-Keywords2.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Keywords2.Tpo", "-c", - "Keywords2.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-Keywords2.o" + "D4GroupTest.o", + "D4GroupTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Keywords2.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4GroupTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4GroupTest.o" }, { - "file": "Url.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-Url.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Url.Tpo", "-c", - "Url.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-Url.o" + "DMRTest.o", + "DMRTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Url.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DMRTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DMRTest.o" }, { - "file": "Array.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-Array.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Array.Tpo", "-c", - "Array.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-Array.o" + "D4ParserSax2Test.o", + "D4ParserSax2Test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Array.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4ParserSax2Test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4ParserSax2Test.o" }, { - "file": "D4Dimensions.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-D4Dimensions.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Dimensions.Tpo", "-c", - "D4Dimensions.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-D4Dimensions.o" + "IsDap4ProjectedTest.o", + "IsDap4ProjectedTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4Dimensions.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/IsDap4ProjectedTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/IsDap4ProjectedTest.o" }, { - "file": "DAS.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-DAS.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DAS.Tpo", "-c", - "DAS.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-DAS.o" + "D4AsyncDocTest.o", + "D4AsyncDocTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-DAS.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4AsyncDocTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/D4AsyncDocTest.o" }, { - "file": "DapIndent.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-DapIndent.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DapIndent.Tpo", "-c", - "DapIndent.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-DapIndent.o" + "DmrToDap2Test.o", + "DmrToDap2Test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-DapIndent.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DmrToDap2Test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DmrToDap2Test.o" }, { - "file": "parser-util.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I../GNU", + "-I..", + "-I../tests", + "-I/usr/local/Cellar/cppunit/1.15.1/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "-Wno-self-assign-overloaded", "-g3", "-O0", - "-MT", - "libdap_la-parser-util.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-parser-util.Tpo", "-c", - "parser-util.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-parser-util.o" + "DmrRoundTripTest.o", + "DmrRoundTripTest.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-parser-util.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DmrRoundTripTest.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/unit-tests/DmrRoundTripTest.o" }, { - "file": "D4Opaque.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4Opaque.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Opaque.Tpo", "-c", - "D4Opaque.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-D4Opaque.o" + "das-test.o", + "das-test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4Opaque.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/das-test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/das-test.o" }, { - "file": "D4EnumDefs.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4EnumDefs.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4EnumDefs.Tpo", "-c", - "D4EnumDefs.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-D4EnumDefs.o" + "dds-test.o", + "dds-test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4EnumDefs.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/dds-test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/dds-test.o" }, { - "file": "AttrTable.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-AttrTable.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-AttrTable.Tpo", "-c", - "AttrTable.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-AttrTable.o" + "expr-test.o", + "expr-test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-AttrTable.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/expr-test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/expr-test.o" }, { - "file": "Vector.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Vector.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Vector.Tpo", "-c", - "Vector.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-Vector.o" + "D4ResponseBuilder.o", + "D4ResponseBuilder.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Vector.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/D4ResponseBuilder.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/D4ResponseBuilder.o" }, { - "file": "Connect.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdapclient_la-Connect.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdapclient_la-Connect.Tpo", "-c", - "Connect.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdapclient_la-Connect.o" + "dmr-test.o", + "dmr-test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdapclient_la-Connect.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/dmr-test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/dmr-test.o" }, { - "file": "DDS.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", + "-I..", + "-I..", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-DDS.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DDS.Tpo", "-c", - "DDS.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-DDS.o" + "ResponseBuilder.o", + "ResponseBuilder.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-DDS.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/ResponseBuilder.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/ResponseBuilder.o" }, { - "file": "DMR.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-DMR.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DMR.Tpo", + "-I..", "-c", - "DMR.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-DMR.o" + ".libs/localcharset.o", + "localcharset.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-DMR.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/localcharset.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/.libs/localcharset.o" }, { - "file": "escaping.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-escaping.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-escaping.Tpo", + "-I..", "-c", - "escaping.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-escaping.o" + ".libs/tempname.o", + "tempname.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-escaping.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/tempname.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/.libs/tempname.o" }, { - "file": "RValue.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-RValue.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-RValue.Tpo", + "-I..", "-c", - "RValue.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-RValue.o" + ".libs/unistd.o", + "unistd.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-RValue.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/unistd.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/.libs/unistd.o" }, { - "file": "xdrutil_ppc.c", "arguments": [ - "gcc", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "-MT", - "libdap_la-xdrutil_ppc.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-xdrutil_ppc.Tpo", + "-I..", "-c", - "xdrutil_ppc.c", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-xdrutil_ppc.o" + ".libs/hard-locale.o", + "hard-locale.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-xdrutil_ppc.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/hard-locale.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/.libs/hard-locale.o" }, { - "file": "chunked_ostream.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-chunked_ostream.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-chunked_ostream.Tpo", + "-I..", "-c", - "chunked_ostream.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-chunked_ostream.o" + ".libs/malloca.o", + "malloca.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-chunked_ostream.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/malloca.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/.libs/malloca.o" }, { - "file": "D4StreamUnMarshaller.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-D4StreamUnMarshaller.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4StreamUnMarshaller.Tpo", + "-I..", "-c", - "D4StreamUnMarshaller.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-D4StreamUnMarshaller.o" + ".libs/localtime-buffer.o", + "localtime-buffer.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4StreamUnMarshaller.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/localtime-buffer.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/.libs/localtime-buffer.o" }, { - "file": "DDXParserSAX2.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-DDXParserSAX2.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DDXParserSAX2.Tpo", + "-I..", "-c", - "DDXParserSAX2.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-DDXParserSAX2.o" + ".libs/stat.o", + "stat.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-DDXParserSAX2.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/stat.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/.libs/stat.o" }, { - "file": "D4Attributes.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-D4Attributes.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Attributes.Tpo", + "-I..", "-c", - "D4Attributes.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-D4Attributes.o" + ".libs/wctype-h.o", + "wctype-h.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4Attributes.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/wctype-h.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/.libs/wctype-h.o" }, { - "file": "ConstraintEvaluator.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-ConstraintEvaluator.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-ConstraintEvaluator.Tpo", + "-I..", "-c", - "ConstraintEvaluator.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-ConstraintEvaluator.o" + "glthread/.libs/lock.o", + "glthread/lock.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-ConstraintEvaluator.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/glthread/lock.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/glthread/.libs/lock.o" }, { - "file": "XDRFileUnMarshaller.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-XDRFileUnMarshaller.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-XDRFileUnMarshaller.Tpo", + "-I..", "-c", - "XDRFileUnMarshaller.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-XDRFileUnMarshaller.o" + ".libs/lstat.o", + "lstat.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-XDRFileUnMarshaller.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/lstat.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/.libs/lstat.o" }, { - "file": "D4RValue.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-D4RValue.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4RValue.Tpo", + "-I..", "-c", - "D4RValue.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-D4RValue.o" + "glthread/.libs/threadlib.o", + "glthread/threadlib.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4RValue.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/glthread/threadlib.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/glthread/.libs/threadlib.o" }, { - "file": "D4ParserSax2.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-D4ParserSax2.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4ParserSax2.Tpo", + "-I..", "-c", - "D4ParserSax2.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-D4ParserSax2.o" + ".libs/regex.o", + "regex.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4ParserSax2.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/regex.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/.libs/regex.o" }, { - "file": "XDRStreamMarshaller.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-XDRStreamMarshaller.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-XDRStreamMarshaller.Tpo", + "-I..", "-c", - "XDRStreamMarshaller.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-XDRStreamMarshaller.o" + "wctype-h.o", + "wctype-h.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-XDRStreamMarshaller.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/wctype-h.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/wctype-h.o" }, { - "file": "Ancillary.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "Ancillary.lo", - "-MD", - "-MP", - "-MF", - ".deps/Ancillary.Tpo", + "-I..", "-c", - "Ancillary.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/Ancillary.o" + "localtime-buffer.o", + "localtime-buffer.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/Ancillary.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/localtime-buffer.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/localtime-buffer.o" }, { - "file": "Grid.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-Grid.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Grid.Tpo", + "-I..", "-c", - "Grid.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-Grid.o" + "unistd.o", + "unistd.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Grid.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/unistd.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/unistd.o" }, { - "file": "D4Group.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-D4Group.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Group.Tpo", + "-I..", "-c", - "D4Group.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-D4Group.o" + "glthread/threadlib.o", + "glthread/threadlib.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4Group.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/glthread/threadlib.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/glthread/threadlib.o" }, { - "file": "XMLWriter.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-XMLWriter.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-XMLWriter.Tpo", + "-I..", "-c", - "XMLWriter.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-XMLWriter.o" + "malloca.o", + "malloca.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-XMLWriter.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/malloca.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/malloca.o" }, { - "file": "util_mit.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdapclient_la-util_mit.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdapclient_la-util_mit.Tpo", + "-I..", "-c", - "util_mit.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdapclient_la-util_mit.o" + "glthread/lock.o", + "glthread/lock.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdapclient_la-util_mit.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/glthread/lock.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/glthread/lock.o" }, { - "file": "chunked_istream.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-chunked_istream.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-chunked_istream.Tpo", + "-I..", "-c", - "chunked_istream.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-chunked_istream.o" + "localcharset.o", + "localcharset.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-chunked_istream.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/localcharset.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/localcharset.o" }, { - "file": "Error.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-Error.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Error.Tpo", + "-I..", "-c", - "Error.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-Error.o" + "lstat.o", + "lstat.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Error.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/lstat.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/lstat.o" }, { - "file": "ServerFunctionsList.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-ServerFunctionsList.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-ServerFunctionsList.Tpo", + "-I..", "-c", - "ServerFunctionsList.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-ServerFunctionsList.o" + "hard-locale.o", + "hard-locale.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-ServerFunctionsList.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/hard-locale.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/hard-locale.o" + }, + { + "arguments": ["/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", "-I..", "-c", "-o", "stat.o", "stat.c"], + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/stat.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/stat.o" }, { - "file": "dds.tab.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libparsers_la-dds.tab.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-dds.tab.Tpo", + "-I..", "-c", - "dds.tab.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libparsers_la-dds.tab.o" + "tempname.o", + "tempname.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libparsers_la-dds.tab.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/tempname.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/tempname.o" }, { - "file": "BaseTypeFactory.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-BaseTypeFactory.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-BaseTypeFactory.Tpo", + "-I..", "-c", - "BaseTypeFactory.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-BaseTypeFactory.o" + "regex.o", + "regex.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-BaseTypeFactory.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/gl", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/gl/regex.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/gl/regex.o" }, { - "file": "Error.tab.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", + "-I..", + "-I..", + "-I../d4_ce", + "-I..", + "-I../d4_ce", + "-Wall", + "-W", + "-Wcast-align", + "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", "--std=c++14", + "-g3", + "-O0", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libparsers_la-Error.tab.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-Error.tab.Tpo", "-c", - "Error.tab.cc", "-fno-common", "-DPIC", "-o", - ".libs/libparsers_la-Error.tab.o" + ".libs/libd4_ce_parser_la-D4ConstraintEvaluator.o", + "D4ConstraintEvaluator.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libparsers_la-Error.tab.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/D4ConstraintEvaluator.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/.libs/libd4_ce_parser_la-D4ConstraintEvaluator.o" }, { - "file": "Int8.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I..", + "-I../d4_ce", + "-I..", + "-I../d4_ce", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-Int8.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Int8.Tpo", + "-Wall", + "-W", + "-Wcast-align", "-c", - "Int8.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-Int8.o" + ".libs/libd4_ce_parser_la-d4_ce_parser.tab.o", + "d4_ce_parser.tab.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Int8.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/d4_ce_parser.tab.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/.libs/libd4_ce_parser_la-d4_ce_parser.tab.o" }, { - "file": "MarshallerThread.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I..", + "-I../d4_ce", + "-I..", + "-I../d4_ce", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-MarshallerThread.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-MarshallerThread.Tpo", + "-Wall", + "-W", + "-Wcast-align", "-c", - "MarshallerThread.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-MarshallerThread.o" + ".libs/libd4_ce_parser_la-lex.d4_ce.o", + "lex.d4_ce.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-MarshallerThread.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/lex.d4_ce.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/.libs/libd4_ce_parser_la-lex.d4_ce.o" }, { - "file": "lex.das.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I..", + "-I../d4_ce", + "-I..", + "-I../d4_ce", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", "-g3", "-O0", - "-MT", - "libparsers_la-lex.das.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-lex.das.Tpo", + "-Wall", + "-W", + "-Wcast-align", "-c", - "lex.das.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libparsers_la-lex.das.o" + "libd4_ce_parser_la-lex.d4_ce.o", + "lex.d4_ce.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libparsers_la-lex.das.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/lex.d4_ce.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/libd4_ce_parser_la-lex.d4_ce.o" }, { - "file": "lex.dds.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I..", + "-I../d4_ce", + "-I..", + "-I../d4_ce", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", "-g3", "-O0", - "-MT", - "libparsers_la-lex.dds.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-lex.dds.Tpo", + "-Wall", + "-W", + "-Wcast-align", "-c", - "lex.dds.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libparsers_la-lex.dds.o" + "libd4_ce_parser_la-D4ConstraintEvaluator.o", + "D4ConstraintEvaluator.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libparsers_la-lex.dds.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/D4ConstraintEvaluator.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/libd4_ce_parser_la-D4ConstraintEvaluator.o" }, { - "file": "D4BaseTypeFactory.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I..", + "-I../d4_ce", + "-I..", + "-I../d4_ce", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-D4BaseTypeFactory.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4BaseTypeFactory.Tpo", + "-Wall", + "-W", + "-Wcast-align", "-c", - "D4BaseTypeFactory.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-D4BaseTypeFactory.o" + "libd4_ce_parser_la-d4_ce_parser.tab.o", + "d4_ce_parser.tab.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4BaseTypeFactory.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/d4_ce_parser.tab.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_ce/libd4_ce_parser_la-d4_ce_parser.tab.o" }, { - "file": "XDRStreamUnMarshaller.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I..", + "-I../d4_ce", + "-I.", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-XDRStreamUnMarshaller.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-XDRStreamUnMarshaller.Tpo", + "-Wall", + "-W", + "-Wcast-align", "-c", - "XDRStreamUnMarshaller.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-XDRStreamUnMarshaller.o" + ".libs/D4FunctionEvaluator.o", + "D4FunctionEvaluator.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-XDRStreamUnMarshaller.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function/D4FunctionEvaluator.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function/.libs/D4FunctionEvaluator.o" }, { - "file": "GNU/GetOpt.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I..", + "-I../d4_ce", + "-I.", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", "-g3", "-O0", - "-MT", - "GNU/libdap_la-GetOpt.lo", - "-MD", - "-MP", - "-MF", - "GNU/.deps/libdap_la-GetOpt.Tpo", + "-Wall", + "-W", + "-Wcast-align", "-c", - "GNU/GetOpt.cc", "-fno-common", "-DPIC", "-o", - "GNU/.libs/libdap_la-GetOpt.o" + ".libs/d4_function_parser.tab.o", + "d4_function_parser.tab.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "GNU/.libs/libdap_la-GetOpt.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function/d4_function_parser.tab.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function/.libs/d4_function_parser.tab.o" }, { - "file": "Sequence.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I..", + "-I../d4_ce", + "-I.", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-Sequence.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Sequence.Tpo", + "-Wall", + "-W", + "-Wcast-align", "-c", - "Sequence.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-Sequence.o" + ".libs/lex.d4_function.o", + "lex.d4_function.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Sequence.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function/lex.d4_function.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function/.libs/lex.d4_function.o" }, { - "file": "D4Enum.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I..", + "-I../d4_ce", + "-I.", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-D4Enum.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Enum.Tpo", + "-Wall", + "-W", + "-Wcast-align", "-c", - "D4Enum.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-D4Enum.o" + "lex.d4_function.o", + "lex.d4_function.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4Enum.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function/lex.d4_function.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function/lex.d4_function.o" }, { - "file": "UInt64.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I..", + "-I../d4_ce", + "-I.", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-UInt64.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-UInt64.Tpo", + "-Wall", + "-W", + "-Wcast-align", "-c", - "UInt64.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-UInt64.o" + "d4_function_parser.tab.o", + "d4_function_parser.tab.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-UInt64.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function/d4_function_parser.tab.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function/d4_function_parser.tab.o" }, { - "file": "Float64.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I..", + "-I../d4_ce", + "-I.", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", + "-Wall", + "-W", + "-Wcast-align", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-Float64.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Float64.Tpo", + "-Wall", + "-W", + "-Wcast-align", "-c", - "Float64.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-Float64.o" + "D4FunctionEvaluator.o", + "D4FunctionEvaluator.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Float64.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function/D4FunctionEvaluator.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/d4_function/D4FunctionEvaluator.o" }, { - "file": "InternalErr.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I.", + "-I..", + "-I../GNU", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-InternalErr.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-InternalErr.Tpo", "-c", - "InternalErr.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-InternalErr.o" + ".libs/libhttp_dap_la-HTTPCacheTable.o", + "HTTPCacheTable.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-InternalErr.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/HTTPCacheTable.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/.libs/libhttp_dap_la-HTTPCacheTable.o" }, { - "file": "D4FilterClause.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I.", + "-I..", + "-I../GNU", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-D4FilterClause.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4FilterClause.Tpo", "-c", - "D4FilterClause.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-D4FilterClause.o" + ".libs/libhttp_dap_la-HTTPConnect.o", + "HTTPConnect.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4FilterClause.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/HTTPConnect.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/.libs/libhttp_dap_la-HTTPConnect.o" }, { - "file": "UInt32.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I.", + "-I..", + "-I../GNU", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-UInt32.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-UInt32.Tpo", "-c", - "UInt32.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-UInt32.o" + ".libs/libhttp_dap_la-ResponseTooBigErr.o", + "ResponseTooBigErr.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-UInt32.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/ResponseTooBigErr.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/.libs/libhttp_dap_la-ResponseTooBigErr.o" }, { - "file": "BaseType.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I.", + "-I..", + "-I../GNU", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-BaseType.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-BaseType.Tpo", "-c", - "BaseType.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-BaseType.o" + ".libs/libhttp_dap_la-HTTPCache.o", + "HTTPCache.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-BaseType.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/HTTPCache.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/.libs/libhttp_dap_la-HTTPCache.o" }, { - "file": "DODSFilter.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I.", + "-I..", + "-I../GNU", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "--std=c++14", "-g3", "-O0", - "-MT", - "DODSFilter.lo", - "-MD", - "-MP", - "-MF", - ".deps/DODSFilter.Tpo", "-c", - "DODSFilter.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/DODSFilter.o" + "libhttp_dap_la-ResponseTooBigErr.o", + "ResponseTooBigErr.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/DODSFilter.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/ResponseTooBigErr.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/libhttp_dap_la-ResponseTooBigErr.o" }, { - "file": "UInt16.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I.", + "-I..", + "-I../GNU", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-UInt16.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-UInt16.Tpo", "-c", - "UInt16.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-UInt16.o" + "libhttp_dap_la-HTTPCacheTable.o", + "HTTPCacheTable.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-UInt16.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/HTTPCacheTable.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/libhttp_dap_la-HTTPCacheTable.o" }, { - "file": "Float32.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I.", + "-I..", + "-I../GNU", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-Float32.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Float32.Tpo", "-c", - "Float32.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-Float32.o" + "libhttp_dap_la-HTTPConnect.o", + "HTTPConnect.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Float32.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/HTTPConnect.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/libhttp_dap_la-HTTPConnect.o" }, { - "file": "Int16.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", + "-I..", + "-I.", + "-I..", + "-I../GNU", + "-I.", + "-I..", + "-I../GNU", "-Wall", "-W", "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", + "--std=c++14", "-g3", "-O0", - "-MT", - "libdap_la-Int16.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Int16.Tpo", "-c", - "Int16.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libdap_la-Int16.o" + "libhttp_dap_la-HTTPCache.o", + "HTTPCache.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Int16.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/HTTPCache.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/http_dap/libhttp_dap_la-HTTPCache.o" }, { - "file": "das.tab.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -3581,33 +2935,25 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libparsers_la-das.tab.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-das.tab.Tpo", "-c", - "das.tab.cc", - "-fno-common", - "-DPIC", "-o", - ".libs/libparsers_la-das.tab.o" + "getdap-getdap.o", + "getdap.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libparsers_la-das.tab.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/getdap.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/getdap-getdap.o" }, { - "file": "Int32.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -3616,33 +2962,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Int32.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Int32.Tpo", "-c", - "Int32.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-Int32.o" + ".libs/libdapclient_la-Connect.o", + "Connect.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Int32.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Connect.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdapclient_la-Connect.o" }, { - "file": "D4Maps.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -3651,33 +2990,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4Maps.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Maps.Tpo", "-c", - "D4Maps.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-D4Maps.o" + ".libs/libdap_la-parser-util.o", + "parser-util.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4Maps.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/parser-util.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-parser-util.o" }, { - "file": "D4AsyncUtil.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -3686,29 +3018,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4AsyncUtil.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4AsyncUtil.Tpo", "-c", - "D4AsyncUtil.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-D4AsyncUtil.o" + ".libs/libdap_la-DAS.o", + "DAS.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4AsyncUtil.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DAS.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-DAS.o" }, { - "file": "lex.ce_expr.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -3717,33 +3046,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libparsers_la-lex.ce_expr.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-lex.ce_expr.Tpo", "-c", - "lex.ce_expr.cc", "-fno-common", "-DPIC", "-o", - ".libs/libparsers_la-lex.ce_expr.o" + ".libs/libdap_la-AttrTable.o", + "AttrTable.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libparsers_la-lex.ce_expr.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/AttrTable.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-AttrTable.o" }, { - "file": "Int64.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -3752,33 +3074,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Int64.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Int64.Tpo", "-c", - "Int64.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-Int64.o" + ".libs/libdap_la-DataDDS.o", + "DataDDS.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Int64.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DataDDS.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-DataDDS.o" }, { - "file": "Byte.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -3787,33 +3102,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Byte.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Byte.Tpo", "-c", - "Byte.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-Byte.o" + ".libs/libdap_la-XDRFileMarshaller.o", + "XDRFileMarshaller.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Byte.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/XDRFileMarshaller.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-XDRFileMarshaller.o" }, { - "file": "XDRUtils.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -3822,33 +3130,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-XDRUtils.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-XDRUtils.Tpo", "-c", - "XDRUtils.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-XDRUtils.o" + ".libs/libdap_la-XDRFileUnMarshaller.o", + "XDRFileUnMarshaller.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-XDRUtils.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/XDRFileUnMarshaller.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-XDRFileUnMarshaller.o" }, { - "file": "D4Sequence.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -3857,33 +3158,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4Sequence.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Sequence.Tpo", "-c", - "D4Sequence.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-D4Sequence.o" + ".libs/libdap_la-Str.o", + "Str.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4Sequence.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Str.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Str.o" }, { - "file": "GNU/GNURegex.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -3892,33 +3186,27 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "GNU/libdap_la-GNURegex.lo", - "-MD", - "-MP", - "-MF", - "GNU/.deps/libdap_la-GNURegex.Tpo", "-c", - "GNU/GNURegex.cc", "-fno-common", "-DPIC", "-o", - "GNU/.libs/libdap_la-GNURegex.o" + ".libs/libdap_la-RValue.o", + "RValue.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "GNU/.libs/libdap_la-GNURegex.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/RValue.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-RValue.o" }, { - "file": "ServerFunction.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -3927,33 +3215,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-ServerFunction.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-ServerFunction.Tpo", "-c", - "ServerFunction.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-ServerFunction.o" + ".libs/libdapclient_la-util_mit.o", + "util_mit.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-ServerFunction.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/util_mit.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdapclient_la-util_mit.o" }, { - "file": "Str.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -3962,33 +3243,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Str.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Str.Tpo", "-c", - "Str.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-Str.o" + ".libs/libdap_la-InternalErr.o", + "InternalErr.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Str.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/InternalErr.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-InternalErr.o" }, { - "file": "XDRFileMarshaller.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -3997,33 +3271,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-XDRFileMarshaller.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-XDRFileMarshaller.Tpo", "-c", - "XDRFileMarshaller.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-XDRFileMarshaller.o" + ".libs/libdap_la-Url.o", + "Url.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-XDRFileMarshaller.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Url.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Url.o" }, { - "file": "D4StreamMarshaller.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4032,58 +3299,46 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4StreamMarshaller.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4StreamMarshaller.Tpo", "-c", - "D4StreamMarshaller.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-D4StreamMarshaller.o" + ".libs/libdap_la-Structure.o", + "Structure.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-D4StreamMarshaller.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Structure.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Structure.o" }, { - "file": "xdrutil_ppc.c", "arguments": [ - "gcc", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", - "-MT", - "libdap_la-xdrutil_ppc.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-xdrutil_ppc.Tpo", "-c", - "xdrutil_ppc.c", + "-fno-common", + "-DPIC", "-o", - "libdap_la-xdrutil_ppc.o" + ".libs/libdap_la-xdrutil_ppc.o", + "xdrutil_ppc.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-xdrutil_ppc.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/xdrutil_ppc.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-xdrutil_ppc.o" }, { - "file": "Structure.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4092,33 +3347,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Structure.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Structure.Tpo", "-c", - "Structure.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-Structure.o" + ".libs/libdap_la-DapIndent.o", + "DapIndent.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-Structure.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DapIndent.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-DapIndent.o" }, { - "file": "DapXmlNamespaces.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4127,29 +3375,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-DapXmlNamespaces.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DapXmlNamespaces.Tpo", "-c", - "DapXmlNamespaces.cc", "-fno-common", "-DPIC", "-o", - ".libs/libdap_la-DapXmlNamespaces.o" + ".libs/libdap_la-Sequence.o", + "Sequence.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libdap_la-DapXmlNamespaces.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Sequence.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Sequence.o" }, { - "file": "ce_expr.tab.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -4158,33 +3403,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libparsers_la-ce_expr.tab.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-ce_expr.tab.Tpo", "-c", - "ce_expr.tab.cc", "-fno-common", "-DPIC", "-o", - ".libs/libparsers_la-ce_expr.tab.o" + ".libs/libdap_la-Array.o", + "Array.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": ".libs/libparsers_la-ce_expr.tab.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Array.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Array.o" }, { - "file": "DapXmlNamespaces.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4193,31 +3431,27 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-DapXmlNamespaces.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DapXmlNamespaces.Tpo", "-c", - "DapXmlNamespaces.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-DapXmlNamespaces.o" + ".libs/libdap_la-Int16.o", + "Int16.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-DapXmlNamespaces.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Int16.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Int16.o" }, { - "file": "parser-util.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -4226,31 +3460,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-parser-util.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-parser-util.Tpo", "-c", - "parser-util.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-parser-util.o" + ".libs/libdapclient_la-D4Connect.o", + "D4Connect.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-parser-util.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Connect.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdapclient_la-D4Connect.o" }, { - "file": "Clause.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4259,31 +3488,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Clause.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Clause.Tpo", "-c", - "Clause.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Clause.o" + ".libs/libdap_la-DDS.o", + "DDS.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Clause.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DDS.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-DDS.o" }, { - "file": "DapIndent.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4292,31 +3516,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-DapIndent.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DapIndent.Tpo", "-c", - "DapIndent.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-DapIndent.o" + ".libs/libdap_la-XDRUtils.o", + "XDRUtils.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-DapIndent.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/XDRUtils.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-XDRUtils.o" }, { - "file": "GNU/GetOpt.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4325,31 +3544,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "GNU/libdap_la-GetOpt.lo", - "-MD", - "-MP", - "-MF", - "GNU/.deps/libdap_la-GetOpt.Tpo", "-c", - "GNU/GetOpt.cc", + "-fno-common", + "-DPIC", "-o", - "GNU/libdap_la-GetOpt.o" + ".libs/libdap_la-escaping.o", + "escaping.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "GNU/libdap_la-GetOpt.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/escaping.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-escaping.o" }, { - "file": "Url.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4358,32 +3572,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Url.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Url.Tpo", "-c", - "Url.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Url.o" + ".libs/libdap_la-XDRStreamUnMarshaller.o", + "XDRStreamUnMarshaller.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Url.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/XDRStreamUnMarshaller.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-XDRStreamUnMarshaller.o" }, { - "file": "util_mit.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4392,31 +3600,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdapclient_la-util_mit.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdapclient_la-util_mit.Tpo", "-c", - "util_mit.cc", + "-fno-common", + "-DPIC", "-o", - "libdapclient_la-util_mit.o" + ".libs/libdap_la-Float32.o", + "Float32.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdapclient_la-util_mit.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Float32.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Float32.o" }, { - "file": "SignalHandler.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4425,31 +3628,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-SignalHandler.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-SignalHandler.Tpo", "-c", - "SignalHandler.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-SignalHandler.o" + ".libs/libdap_la-XDRStreamMarshaller.o", + "XDRStreamMarshaller.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-SignalHandler.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/XDRStreamMarshaller.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-XDRStreamMarshaller.o" }, { - "file": "DAS.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4458,31 +3656,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-DAS.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DAS.Tpo", "-c", - "DAS.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-DAS.o" + ".libs/libdap_la-BaseType.o", + "BaseType.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-DAS.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/BaseType.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-BaseType.o" }, { - "file": "escaping.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4491,31 +3684,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-escaping.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-escaping.Tpo", "-c", - "escaping.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-escaping.o" + ".libs/libdap_la-Error.o", + "Error.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-escaping.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Error.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Error.o" }, { - "file": "XMLWriter.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4524,31 +3712,27 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-XMLWriter.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-XMLWriter.Tpo", "-c", - "XMLWriter.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-XMLWriter.o" + ".libs/libdap_la-Vector.o", + "Vector.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-XMLWriter.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Vector.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Vector.o" }, { - "file": "ServerFunction.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -4557,31 +3741,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-ServerFunction.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-ServerFunction.Tpo", "-c", - "ServerFunction.cc", "-o", - "libdap_la-ServerFunction.o" + "getdap4-getdap4.o", + "getdap4.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-ServerFunction.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/getdap4.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/getdap4-getdap4.o" }, { - "file": "Error.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4590,31 +3767,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Error.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Error.Tpo", "-c", - "Error.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Error.o" + ".libs/libdap_la-Int32.o", + "Int32.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Error.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Int32.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Int32.o" }, { - "file": "D4Dimensions.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4623,31 +3795,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4Dimensions.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Dimensions.Tpo", "-c", - "D4Dimensions.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-D4Dimensions.o" + ".libs/libdap_la-Clause.o", + "Clause.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4Dimensions.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Clause.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Clause.o" }, { - "file": "mime_util.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4656,31 +3823,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-mime_util.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-mime_util.Tpo", "-c", - "mime_util.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-mime_util.o" + ".libs/libdap_la-BaseTypeFactory.o", + "BaseTypeFactory.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-mime_util.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/BaseTypeFactory.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-BaseTypeFactory.o" }, { - "file": "chunked_istream.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4689,31 +3851,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-chunked_istream.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-chunked_istream.Tpo", "-c", - "chunked_istream.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-chunked_istream.o" + ".libs/libdap_la-Byte.o", + "Byte.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-chunked_istream.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Byte.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Byte.o" }, { - "file": "DataDDS.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4722,31 +3879,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-DataDDS.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DataDDS.Tpo", "-c", - "DataDDS.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-DataDDS.o" + ".libs/libdap_la-DDXParserSAX2.o", + "DDXParserSAX2.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-DataDDS.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DDXParserSAX2.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-DDXParserSAX2.o" }, { - "file": "XDRUtils.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4755,27 +3907,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-XDRUtils.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-XDRUtils.Tpo", "-c", - "XDRUtils.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-XDRUtils.o" + ".libs/libdap_la-Constructor.o", + "Constructor.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-XDRUtils.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Constructor.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Constructor.o" }, { - "file": "lex.das.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -4784,27 +3935,27 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libparsers_la-lex.das.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-lex.das.Tpo", "-c", - "lex.das.cc", + "-fno-common", + "-DPIC", "-o", - "libparsers_la-lex.das.o" + ".libs/libdap_la-Int64.o", + "Int64.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libparsers_la-lex.das.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Int64.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Int64.o" }, { - "file": "Error.tab.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -4813,31 +3964,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libparsers_la-Error.tab.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-Error.tab.Tpo", "-c", - "Error.tab.cc", "-o", - "libparsers_la-Error.tab.o" + "dmr_memory_cache-dmr_mcache_test.o", + "dmr_mcache_test.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libparsers_la-Error.tab.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/dmr_mcache_test.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/dmr_memory_cache-dmr_mcache_test.o" }, { - "file": "MarshallerThread.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4846,31 +3990,27 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-MarshallerThread.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-MarshallerThread.Tpo", "-c", - "MarshallerThread.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-MarshallerThread.o" + ".libs/libdap_la-D4EnumDefs.o", + "D4EnumDefs.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-MarshallerThread.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4EnumDefs.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4EnumDefs.o" }, { - "file": "XDRStreamMarshaller.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -4879,27 +4019,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-XDRStreamMarshaller.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-XDRStreamMarshaller.Tpo", "-c", - "XDRStreamMarshaller.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-XDRStreamMarshaller.o" + ".libs/libdapclient_la-RCReader.o", + "RCReader.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-XDRStreamMarshaller.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/RCReader.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdapclient_la-RCReader.o" }, { - "file": "lex.Error.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -4908,31 +4047,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libparsers_la-lex.Error.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-lex.Error.Tpo", "-c", - "lex.Error.cc", + "-fno-common", + "-DPIC", "-o", - "libparsers_la-lex.Error.o" + ".libs/libdap_la-util.o", + "util.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libparsers_la-lex.Error.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/util.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-util.o" }, { - "file": "Int8.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4941,31 +4075,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Int8.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Int8.Tpo", "-c", - "Int8.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Int8.o" + ".libs/libdap_la-UInt16.o", + "UInt16.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Int8.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/UInt16.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-UInt16.o" }, { - "file": "UInt32.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -4974,31 +4103,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-UInt32.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-UInt32.Tpo", "-c", - "UInt32.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-UInt32.o" + ".libs/libdap_la-D4StreamMarshaller.o", + "D4StreamMarshaller.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-UInt32.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4StreamMarshaller.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4StreamMarshaller.o" }, { - "file": "D4Attributes.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5007,31 +4131,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4Attributes.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Attributes.Tpo", "-c", - "D4Attributes.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-D4Attributes.o" + ".libs/libdap_la-Int8.o", + "Int8.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4Attributes.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Int8.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Int8.o" }, { - "file": "Ancillary.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5040,31 +4159,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "Ancillary.lo", - "-MD", - "-MP", - "-MF", - ".deps/Ancillary.Tpo", "-c", - "Ancillary.cc", + "-fno-common", + "-DPIC", "-o", - "Ancillary.o" + ".libs/libdap_la-ConstraintEvaluator.o", + "ConstraintEvaluator.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "Ancillary.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/ConstraintEvaluator.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-ConstraintEvaluator.o" }, { - "file": "D4StreamUnMarshaller.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5073,32 +4187,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4StreamUnMarshaller.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4StreamUnMarshaller.Tpo", "-c", - "D4StreamUnMarshaller.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-D4StreamUnMarshaller.o" + ".libs/libdap_la-MarshallerThread.o", + "MarshallerThread.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4StreamUnMarshaller.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/MarshallerThread.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-MarshallerThread.o" }, { - "file": "RCReader.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5107,31 +4215,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdapclient_la-RCReader.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdapclient_la-RCReader.Tpo", "-c", - "RCReader.cc", + "-fno-common", + "-DPIC", "-o", - "libdapclient_la-RCReader.o" + ".libs/libdap_la-mime_util.o", + "mime_util.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdapclient_la-RCReader.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/mime_util.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-mime_util.o" }, { - "file": "Keywords2.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5140,31 +4243,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Keywords2.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Keywords2.Tpo", "-c", - "Keywords2.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Keywords2.o" + ".libs/libdap_la-UInt32.o", + "UInt32.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Keywords2.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/UInt32.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-UInt32.o" }, { - "file": "D4AsyncUtil.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5173,31 +4271,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4AsyncUtil.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4AsyncUtil.Tpo", "-c", - "D4AsyncUtil.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-D4AsyncUtil.o" + ".libs/libdap_la-Keywords2.o", + "Keywords2.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4AsyncUtil.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Keywords2.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Keywords2.o" }, { - "file": "chunked_ostream.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5206,31 +4299,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-chunked_ostream.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-chunked_ostream.Tpo", "-c", - "chunked_ostream.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-chunked_ostream.o" + ".libs/libdap_la-D4BaseTypeFactory.o", + "D4BaseTypeFactory.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-chunked_ostream.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4BaseTypeFactory.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4BaseTypeFactory.o" }, { - "file": "InternalErr.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5239,31 +4327,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-InternalErr.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-InternalErr.Tpo", "-c", - "InternalErr.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-InternalErr.o" + ".libs/libdap_la-SignalHandler.o", + "SignalHandler.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-InternalErr.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/SignalHandler.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-SignalHandler.o" }, { - "file": "BaseTypeFactory.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5272,31 +4355,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-BaseTypeFactory.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-BaseTypeFactory.Tpo", "-c", - "BaseTypeFactory.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-BaseTypeFactory.o" + ".libs/libdap_la-D4ParserSax2.o", + "D4ParserSax2.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-BaseTypeFactory.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4ParserSax2.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4ParserSax2.o" }, { - "file": "RValue.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5305,31 +4383,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-RValue.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-RValue.Tpo", "-c", - "RValue.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-RValue.o" + ".libs/libdap_la-ServerFunction.o", + "ServerFunction.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-RValue.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/ServerFunction.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-ServerFunction.o" }, { - "file": "D4Opaque.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5338,27 +4411,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4Opaque.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Opaque.Tpo", "-c", - "D4Opaque.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-D4Opaque.o" + ".libs/libdap_la-D4Enum.o", + "D4Enum.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4Opaque.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Enum.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4Enum.o" }, { - "file": "lex.ce_expr.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -5367,27 +4439,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libparsers_la-lex.ce_expr.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-lex.ce_expr.Tpo", "-c", - "lex.ce_expr.cc", + "-fno-common", + "-DPIC", "-o", - "libparsers_la-lex.ce_expr.o" + "GNU/.libs/libdap_la-GetOpt.o", + "GNU/GetOpt.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libparsers_la-lex.ce_expr.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/GNU/GetOpt.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/GNU/.libs/libdap_la-GetOpt.o" }, { - "file": "lex.dds.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -5396,31 +4467,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libparsers_la-lex.dds.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-lex.dds.Tpo", "-c", - "lex.dds.cc", + "-fno-common", + "-DPIC", "-o", - "libparsers_la-lex.dds.o" + ".libs/libdap_la-Float64.o", + "Float64.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libparsers_la-lex.dds.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Float64.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Float64.o" }, { - "file": "XDRStreamUnMarshaller.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5429,31 +4495,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-XDRStreamUnMarshaller.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-XDRStreamUnMarshaller.Tpo", "-c", - "XDRStreamUnMarshaller.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-XDRStreamUnMarshaller.o" + ".libs/libdap_la-D4Dimensions.o", + "D4Dimensions.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-XDRStreamUnMarshaller.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Dimensions.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4Dimensions.o" }, { - "file": "GNU/GNURegex.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5462,31 +4523,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "GNU/libdap_la-GNURegex.lo", - "-MD", - "-MP", - "-MF", - "GNU/.deps/libdap_la-GNURegex.Tpo", "-c", - "GNU/GNURegex.cc", + "-fno-common", + "-DPIC", "-o", - "GNU/libdap_la-GNURegex.o" + "GNU/.libs/libdap_la-GNURegex.o", + "GNU/GNURegex.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "GNU/libdap_la-GNURegex.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/GNU/GNURegex.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/GNU/.libs/libdap_la-GNURegex.o" }, { - "file": "XDRFileMarshaller.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5495,31 +4551,22 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-XDRFileMarshaller.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-XDRFileMarshaller.Tpo", "-c", - "XDRFileMarshaller.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-XDRFileMarshaller.o" + ".libs/libdap_la-ServerFunctionsList.o", + "ServerFunctionsList.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-XDRFileMarshaller.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/ServerFunctionsList.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-ServerFunctionsList.o" }, { - "file": "ServerFunctionsList.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5528,27 +4575,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-ServerFunctionsList.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-ServerFunctionsList.Tpo", "-c", - "ServerFunctionsList.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-ServerFunctionsList.o" + ".libs/libparsers_la-lex.das.o", + "lex.das.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-ServerFunctionsList.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/lex.das.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libparsers_la-lex.das.o" }, { - "file": "dds.tab.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -5557,31 +4603,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libparsers_la-dds.tab.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-dds.tab.Tpo", "-c", - "dds.tab.cc", + "-fno-common", + "-DPIC", "-o", - "libparsers_la-dds.tab.o" + ".libs/libdap_la-chunked_ostream.o", + "chunked_ostream.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libparsers_la-dds.tab.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/chunked_ostream.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-chunked_ostream.o" }, { - "file": "D4StreamMarshaller.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5590,31 +4631,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4StreamMarshaller.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4StreamMarshaller.Tpo", "-c", - "D4StreamMarshaller.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-D4StreamMarshaller.o" + ".libs/libdap_la-D4Group.o", + "D4Group.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4StreamMarshaller.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Group.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4Group.o" }, { - "file": "UInt16.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5623,31 +4659,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-UInt16.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-UInt16.Tpo", "-c", - "UInt16.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-UInt16.o" + ".libs/libdap_la-D4StreamUnMarshaller.o", + "D4StreamUnMarshaller.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-UInt16.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4StreamUnMarshaller.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4StreamUnMarshaller.o" }, { - "file": "ConstraintEvaluator.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5656,31 +4687,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-ConstraintEvaluator.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-ConstraintEvaluator.Tpo", "-c", - "ConstraintEvaluator.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-ConstraintEvaluator.o" + ".libs/libdap_la-D4Maps.o", + "D4Maps.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-ConstraintEvaluator.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Maps.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4Maps.o" }, { - "file": "UInt64.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5689,31 +4715,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-UInt64.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-UInt64.Tpo", "-c", - "UInt64.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-UInt64.o" + ".libs/libdap_la-D4Opaque.o", + "D4Opaque.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-UInt64.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Opaque.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4Opaque.o" }, { - "file": "Str.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5722,31 +4743,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Str.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Str.Tpo", "-c", - "Str.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Str.o" + ".libs/libdap_la-D4RValue.o", + "D4RValue.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Str.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4RValue.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4RValue.o" }, { - "file": "DMR.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5755,31 +4771,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-DMR.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DMR.Tpo", "-c", - "DMR.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-DMR.o" + ".libs/libdap_la-Grid.o", + "Grid.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-DMR.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Grid.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-Grid.o" }, { - "file": "Byte.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5788,31 +4799,22 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Byte.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Byte.Tpo", "-c", - "Byte.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Byte.o" + ".libs/libdap_la-chunked_istream.o", + "chunked_istream.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Byte.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/chunked_istream.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-chunked_istream.o" }, { - "file": "D4EnumDefs.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5821,31 +4823,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4EnumDefs.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4EnumDefs.Tpo", "-c", - "D4EnumDefs.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-D4EnumDefs.o" + ".libs/libparsers_la-lex.ce_expr.o", + "lex.ce_expr.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4EnumDefs.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/lex.ce_expr.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libparsers_la-lex.ce_expr.o" }, { - "file": "DODSFilter.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5854,27 +4851,22 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "DODSFilter.lo", - "-MD", - "-MP", - "-MF", - ".deps/DODSFilter.Tpo", "-c", - "DODSFilter.cc", + "-fno-common", + "-DPIC", "-o", - "DODSFilter.o" + ".libs/libdap_la-UInt64.o", + "UInt64.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "DODSFilter.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/UInt64.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-UInt64.o" }, { - "file": "das.tab.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5883,31 +4875,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libparsers_la-das.tab.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-das.tab.Tpo", "-c", - "das.tab.cc", + "-fno-common", + "-DPIC", "-o", - "libparsers_la-das.tab.o" + ".libs/libparsers_la-Error.tab.o", + "Error.tab.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libparsers_la-das.tab.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Error.tab.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libparsers_la-Error.tab.o" }, { - "file": "D4FilterClause.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5916,31 +4903,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4FilterClause.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4FilterClause.Tpo", "-c", - "D4FilterClause.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-D4FilterClause.o" + ".libs/libdap_la-D4FilterClause.o", + "D4FilterClause.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4FilterClause.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4FilterClause.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4FilterClause.o" }, { - "file": "AttrTable.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5949,31 +4931,22 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-AttrTable.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-AttrTable.Tpo", "-c", - "AttrTable.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-AttrTable.o" + ".libs/libdap_la-XMLWriter.o", + "XMLWriter.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-AttrTable.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/XMLWriter.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-XMLWriter.o" }, { - "file": "XDRFileUnMarshaller.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -5982,31 +4955,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-XDRFileUnMarshaller.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-XDRFileUnMarshaller.Tpo", "-c", - "XDRFileUnMarshaller.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-XDRFileUnMarshaller.o" + ".libs/libparsers_la-lex.dds.o", + "lex.dds.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-XDRFileUnMarshaller.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/lex.dds.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libparsers_la-lex.dds.o" }, { - "file": "Float64.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6015,31 +4983,22 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Float64.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Float64.Tpo", "-c", - "Float64.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Float64.o" + ".libs/libdap_la-DapXmlNamespaces.o", + "DapXmlNamespaces.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Float64.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DapXmlNamespaces.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-DapXmlNamespaces.o" }, { - "file": "Int32.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6048,31 +5007,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Int32.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Int32.Tpo", "-c", - "Int32.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Int32.o" + ".libs/libparsers_la-dds.tab.o", + "dds.tab.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Int32.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/dds.tab.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libparsers_la-dds.tab.o" }, { - "file": "Int64.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6081,31 +5035,22 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Int64.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Int64.Tpo", "-c", - "Int64.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Int64.o" + ".libs/libdap_la-D4Sequence.o", + "D4Sequence.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Int64.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Sequence.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4Sequence.o" }, { - "file": "D4RValue.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6114,31 +5059,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4RValue.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4RValue.Tpo", "-c", - "D4RValue.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-D4RValue.o" + ".libs/libparsers_la-das.tab.o", + "das.tab.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4RValue.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/das.tab.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libparsers_la-das.tab.o" }, { - "file": "Int16.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6147,31 +5087,22 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Int16.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Int16.Tpo", "-c", - "Int16.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Int16.o" + ".libs/libdap_la-DMR.o", + "DMR.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Int16.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DMR.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-DMR.o" }, { - "file": "Constructor.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6180,31 +5111,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Constructor.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Constructor.Tpo", "-c", - "Constructor.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Constructor.o" + ".libs/libparsers_la-lex.Error.o", + "lex.Error.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Constructor.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/lex.Error.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libparsers_la-lex.Error.o" }, { - "file": "Float32.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6213,31 +5139,22 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Float32.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Float32.Tpo", "-c", - "Float32.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-Float32.o" + ".libs/libdap_la-D4Attributes.o", + "D4Attributes.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Float32.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Attributes.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4Attributes.o" }, { - "file": "D4BaseTypeFactory.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I./gl", - "-I./gl", - "-I./GNU", - "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6246,31 +5163,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4BaseTypeFactory.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4BaseTypeFactory.Tpo", "-c", - "D4BaseTypeFactory.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-D4BaseTypeFactory.o" + ".libs/libparsers_la-ce_expr.tab.o", + "ce_expr.tab.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4BaseTypeFactory.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/ce_expr.tab.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libparsers_la-ce_expr.tab.o" }, { - "file": "D4Maps.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6279,32 +5191,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4Maps.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Maps.Tpo", "-c", - "D4Maps.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-D4Maps.o" + ".libs/libdap_la-D4AsyncUtil.o", + "D4AsyncUtil.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4Maps.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4AsyncUtil.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/libdap_la-D4AsyncUtil.o" }, { - "file": "Connect.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6313,31 +5219,26 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdapclient_la-Connect.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdapclient_la-Connect.Tpo", "-c", - "Connect.cc", + "-fno-common", + "-DPIC", "-o", - "libdapclient_la-Connect.o" + ".libs/Ancillary.o", + "Ancillary.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdapclient_la-Connect.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Ancillary.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/Ancillary.o" }, { - "file": "D4Enum.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6346,64 +5247,44 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4Enum.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Enum.Tpo", "-c", - "D4Enum.cc", + "-fno-common", + "-DPIC", "-o", - "libdap_la-D4Enum.o" + ".libs/DODSFilter.o", + "DODSFilter.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4Enum.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DODSFilter.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/.libs/DODSFilter.o" }, { - "file": "BaseType.cc", "arguments": [ - "g++", + "/usr/bin/gcc", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", - "--std=c++14", - "-Wall", - "-W", - "-Wcast-align", - "-Wno-deprecated-register", - "-Wno-inconsistent-missing-override", - "-g3", - "-O0", - "-MT", - "libdap_la-BaseType.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-BaseType.Tpo", "-c", - "BaseType.cc", "-o", - "libdap_la-BaseType.o" + "libdap_la-xdrutil_ppc.o", + "xdrutil_ppc.c" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-BaseType.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/xdrutil_ppc.c", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-xdrutil_ppc.o" }, { - "file": "Structure.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6412,31 +5293,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Structure.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Structure.Tpo", "-c", - "Structure.cc", "-o", - "libdap_la-Structure.o" + "libdap_la-DapXmlNamespaces.o", + "DapXmlNamespaces.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Structure.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DapXmlNamespaces.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-DapXmlNamespaces.o" }, { - "file": "D4Sequence.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6445,31 +5319,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4Sequence.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Sequence.Tpo", "-c", - "D4Sequence.cc", "-o", - "libdap_la-D4Sequence.o" + "GNU/libdap_la-GetOpt.o", + "GNU/GetOpt.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4Sequence.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/GNU/GetOpt.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/GNU/libdap_la-GetOpt.o" }, { - "file": "DDS.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6478,31 +5345,25 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-DDS.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DDS.Tpo", "-c", - "DDS.cc", "-o", - "libdap_la-DDS.o" + "libdap_la-Error.o", + "Error.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-DDS.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Error.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Error.o" }, { - "file": "util.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -6511,31 +5372,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-util.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-util.Tpo", "-c", - "util.cc", "-o", - "libdap_la-util.o" + "libdapclient_la-util_mit.o", + "util_mit.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-util.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/util_mit.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdapclient_la-util_mit.o" }, { - "file": "Array.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6544,31 +5398,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Array.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Array.Tpo", "-c", - "Array.cc", "-o", - "libdap_la-Array.o" + "libdap_la-DapIndent.o", + "DapIndent.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Array.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DapIndent.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-DapIndent.o" }, { - "file": "Sequence.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6577,31 +5424,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Sequence.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Sequence.Tpo", "-c", - "Sequence.cc", "-o", - "libdap_la-Sequence.o" + "libdap_la-ServerFunction.o", + "ServerFunction.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Sequence.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/ServerFunction.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-ServerFunction.o" }, { - "file": "Vector.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6610,31 +5450,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Vector.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Vector.Tpo", "-c", - "Vector.cc", "-o", - "libdap_la-Vector.o" + "libdap_la-Url.o", + "Url.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Vector.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Url.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Url.o" }, { - "file": "DDXParserSAX2.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6643,32 +5476,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-DDXParserSAX2.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-DDXParserSAX2.Tpo", "-c", - "DDXParserSAX2.cc", "-o", - "libdap_la-DDXParserSAX2.o" + "libdap_la-DAS.o", + "DAS.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-DDXParserSAX2.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DAS.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-DAS.o" }, { - "file": "D4Connect.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6677,31 +5502,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdapclient_la-D4Connect.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdapclient_la-D4Connect.Tpo", "-c", - "D4Connect.cc", "-o", - "libdapclient_la-D4Connect.o" + "libdap_la-escaping.o", + "escaping.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdapclient_la-D4Connect.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/escaping.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-escaping.o" }, { - "file": "D4Group.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6710,31 +5528,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4Group.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4Group.Tpo", "-c", - "D4Group.cc", "-o", - "libdap_la-D4Group.o" + "libdap_la-XDRUtils.o", + "XDRUtils.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4Group.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/XDRUtils.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-XDRUtils.o" }, { - "file": "Grid.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6743,27 +5554,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-Grid.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-Grid.Tpo", "-c", - "Grid.cc", "-o", - "libdap_la-Grid.o" + "libdap_la-InternalErr.o", + "InternalErr.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-Grid.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/InternalErr.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-InternalErr.o" }, { - "file": "ce_expr.tab.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", @@ -6772,31 +5580,24 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libparsers_la-ce_expr.tab.lo", - "-MD", - "-MP", - "-MF", - ".deps/libparsers_la-ce_expr.tab.Tpo", "-c", - "ce_expr.tab.cc", "-o", - "libparsers_la-ce_expr.tab.o" + "libdap_la-XMLWriter.o", + "XMLWriter.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libparsers_la-ce_expr.tab.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/XMLWriter.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-XMLWriter.o" }, { - "file": "D4ParserSax2.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I./gl", "-I./gl", "-I./GNU", "-I./http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -6805,2909 +5606,2261 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "libdap_la-D4ParserSax2.lo", - "-MD", - "-MP", - "-MF", - ".deps/libdap_la-D4ParserSax2.Tpo", "-c", - "D4ParserSax2.cc", "-o", - "libdap_la-D4ParserSax2.o" + "GNU/libdap_la-GNURegex.o", + "GNU/GNURegex.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4", - "output": "libdap_la-D4ParserSax2.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/GNU/GNURegex.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/GNU/libdap_la-GNURegex.o" }, { - "file": "TestByte.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestByte.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestByte.Tpo", "-c", "-o", - "libtest_types_a-TestByte.o", - "TestByte.cc" + "libdap_la-MarshallerThread.o", + "MarshallerThread.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestByte.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/MarshallerThread.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-MarshallerThread.o" }, { - "file": "TestUrl.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestUrl.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestUrl.Tpo", "-c", "-o", - "libtest_types_a-TestUrl.o", - "TestUrl.cc" + "libdap_la-parser-util.o", + "parser-util.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestUrl.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/parser-util.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-parser-util.o" }, { - "file": "TestFloat64.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestFloat64.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestFloat64.Tpo", "-c", "-o", - "libtest_types_a-TestFloat64.o", - "TestFloat64.cc" + "libdap_la-chunked_istream.o", + "chunked_istream.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestFloat64.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/chunked_istream.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-chunked_istream.o" }, { - "file": "TestInt32.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestInt32.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestInt32.Tpo", "-c", "-o", - "libtest_types_a-TestInt32.o", - "TestInt32.cc" + "libdap_la-chunked_ostream.o", + "chunked_ostream.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestInt32.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/chunked_ostream.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-chunked_ostream.o" }, { - "file": "TestStructure.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestStructure.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestStructure.Tpo", "-c", "-o", - "libtest_types_a-TestStructure.o", - "TestStructure.cc" + "libdap_la-RValue.o", + "RValue.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestStructure.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/RValue.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-RValue.o" }, { - "file": "TestArray.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestArray.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestArray.Tpo", "-c", "-o", - "libtest_types_a-TestArray.o", - "TestArray.cc" + "libdap_la-SignalHandler.o", + "SignalHandler.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestArray.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/SignalHandler.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-SignalHandler.o" }, { - "file": "TestStr.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestStr.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestStr.Tpo", "-c", "-o", - "libtest_types_a-TestStr.o", - "TestStr.cc" + "libdap_la-DataDDS.o", + "DataDDS.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestStr.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DataDDS.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-DataDDS.o" }, { - "file": "TestGrid.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestGrid.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestGrid.Tpo", "-c", "-o", - "libtest_types_a-TestGrid.o", - "TestGrid.cc" + "libdap_la-Clause.o", + "Clause.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestGrid.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Clause.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Clause.o" }, { - "file": "TestSequence.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestSequence.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestSequence.Tpo", "-c", "-o", - "libtest_types_a-TestSequence.o", - "TestSequence.cc" + "libparsers_la-lex.das.o", + "lex.das.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestSequence.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/lex.das.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libparsers_la-lex.das.o" }, { - "file": "TestUInt16.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestUInt16.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestUInt16.Tpo", "-c", "-o", - "libtest_types_a-TestUInt16.o", - "TestUInt16.cc" + "libparsers_la-Error.tab.o", + "Error.tab.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestUInt16.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Error.tab.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libparsers_la-Error.tab.o" }, { - "file": "TestInt16.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestInt16.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestInt16.Tpo", "-c", "-o", - "libtest_types_a-TestInt16.o", - "TestInt16.cc" + "libparsers_la-lex.Error.o", + "lex.Error.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestInt16.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/lex.Error.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libparsers_la-lex.Error.o" }, { - "file": "TestUInt32.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestUInt32.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestUInt32.Tpo", "-c", "-o", - "libtest_types_a-TestUInt32.o", - "TestUInt32.cc" + "libdap_la-ServerFunctionsList.o", + "ServerFunctionsList.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestUInt32.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/ServerFunctionsList.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-ServerFunctionsList.o" }, { - "file": "TestTypeFactory.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestTypeFactory.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestTypeFactory.Tpo", "-c", "-o", - "libtest_types_a-TestTypeFactory.o", - "TestTypeFactory.cc" + "libdap_la-XDRFileUnMarshaller.o", + "XDRFileUnMarshaller.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestTypeFactory.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/XDRFileUnMarshaller.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-XDRFileUnMarshaller.o" }, { - "file": "TestFloat32.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestFloat32.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestFloat32.Tpo", "-c", "-o", - "libtest_types_a-TestFloat32.o", - "TestFloat32.cc" + "libdap_la-D4StreamMarshaller.o", + "D4StreamMarshaller.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestFloat32.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4StreamMarshaller.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4StreamMarshaller.o" }, { - "file": "D4TestTypeFactory.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", - "-O0", - "-fPIC", - "-MT", - "libtest_types_a-D4TestTypeFactory.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-D4TestTypeFactory.Tpo", + "-O0", "-c", "-o", - "libtest_types_a-D4TestTypeFactory.o", - "D4TestTypeFactory.cc" + "libdap_la-D4StreamUnMarshaller.o", + "D4StreamUnMarshaller.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-D4TestTypeFactory.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4StreamUnMarshaller.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4StreamUnMarshaller.o" }, { - "file": "TestD4Group.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestD4Group.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestD4Group.Tpo", "-c", "-o", - "libtest_types_a-TestD4Group.o", - "TestD4Group.cc" + "libdap_la-BaseTypeFactory.o", + "BaseTypeFactory.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestD4Group.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/BaseTypeFactory.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-BaseTypeFactory.o" }, { - "file": "TestInt8.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestInt8.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestInt8.Tpo", "-c", "-o", - "libtest_types_a-TestInt8.o", - "TestInt8.cc" + "Ancillary.o", + "Ancillary.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestInt8.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Ancillary.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/Ancillary.o" }, { - "file": "TestD4Sequence.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestD4Sequence.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestD4Sequence.Tpo", "-c", "-o", - "libtest_types_a-TestD4Sequence.o", - "TestD4Sequence.cc" + "libparsers_la-lex.dds.o", + "lex.dds.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestD4Sequence.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/lex.dds.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libparsers_la-lex.dds.o" }, { - "file": "TestUInt64.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestUInt64.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestUInt64.Tpo", "-c", "-o", - "libtest_types_a-TestUInt64.o", - "TestUInt64.cc" + "libparsers_la-das.tab.o", + "das.tab.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestUInt64.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/das.tab.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libparsers_la-das.tab.o" }, { - "file": "TestD4Opaque.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestD4Opaque.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestD4Opaque.Tpo", "-c", "-o", - "libtest_types_a-TestD4Opaque.o", - "TestD4Opaque.cc" + "libdap_la-XDRFileMarshaller.o", + "XDRFileMarshaller.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestD4Opaque.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/XDRFileMarshaller.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-XDRFileMarshaller.o" }, { - "file": "TestInt64.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestInt64.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestInt64.Tpo", "-c", "-o", - "libtest_types_a-TestInt64.o", - "TestInt64.cc" + "libdap_la-Str.o", + "Str.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestInt64.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Str.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Str.o" }, { - "file": "TestFunction.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestFunction.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestFunction.Tpo", "-c", "-o", - "libtest_types_a-TestFunction.o", - "TestFunction.cc" + "libdap_la-Int32.o", + "Int32.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestFunction.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Int32.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Int32.o" }, { - "file": "TestD4Enum.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-TestD4Enum.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-TestD4Enum.Tpo", "-c", "-o", - "libtest_types_a-TestD4Enum.o", - "TestD4Enum.cc" + "libdap_la-D4AsyncUtil.o", + "D4AsyncUtil.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-TestD4Enum.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4AsyncUtil.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4AsyncUtil.o" }, { - "file": "D4TestFunction.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I..", - "-I../GNU", - "-I../d4_ce", - "-I../d4_function", - "-I../http_dap", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", + "-Wno-deprecated-register", "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-fPIC", - "-MT", - "libtest_types_a-D4TestFunction.o", - "-MD", - "-MP", - "-MF", - ".deps/libtest_types_a-D4TestFunction.Tpo", "-c", "-o", - "libtest_types_a-D4TestFunction.o", - "D4TestFunction.cc" + "libdap_la-Float32.o", + "Float32.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "libtest_types_a-D4TestFunction.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Float32.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Float32.o" }, { - "file": "D4ConstraintEvaluatorTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I../..", - "-I../..", - "-I../../d4_ce", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4ConstraintEvaluatorTest.o", - "-MD", - "-MP", - "-MF", - ".deps/D4ConstraintEvaluatorTest.Tpo", "-c", "-o", - "D4ConstraintEvaluatorTest.o", - "D4ConstraintEvaluatorTest.cc" + "libdapclient_la-RCReader.o", + "RCReader.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/d4_ce/unit-tests", - "output": "D4ConstraintEvaluatorTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/RCReader.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdapclient_la-RCReader.o" }, { - "file": "HTTPThreadsConnectTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I../..", - "-I../..", - "-I../../GNU", - "-I../../http_dap", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "HTTPThreadsConnectTest-HTTPThreadsConnectTest.o", - "-MD", - "-MP", - "-MF", - ".deps/HTTPThreadsConnectTest-HTTPThreadsConnectTest.Tpo", "-c", "-o", - "HTTPThreadsConnectTest-HTTPThreadsConnectTest.o", - "HTTPThreadsConnectTest.cc" + "libdap_la-UInt16.o", + "UInt16.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap/unit-tests", - "output": "HTTPThreadsConnectTest-HTTPThreadsConnectTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/UInt16.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-UInt16.o" }, { - "file": "remove_directory.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I../..", - "-I../..", - "-I../../GNU", - "-I../../http_dap", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "HTTPThreadsConnectTest-remove_directory.o", - "-MD", - "-MP", - "-MF", - ".deps/HTTPThreadsConnectTest-remove_directory.Tpo", "-c", "-o", - "HTTPThreadsConnectTest-remove_directory.o", - "remove_directory.cc" + "libdap_la-ConstraintEvaluator.o", + "ConstraintEvaluator.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap/unit-tests", - "output": "HTTPThreadsConnectTest-remove_directory.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/ConstraintEvaluator.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-ConstraintEvaluator.o" }, { - "file": "HTTPConnectTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I../..", - "-I../..", - "-I../../GNU", - "-I../../http_dap", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "HTTPConnectTest-HTTPConnectTest.o", - "-MD", - "-MP", - "-MF", - ".deps/HTTPConnectTest-HTTPConnectTest.Tpo", "-c", "-o", - "HTTPConnectTest-HTTPConnectTest.o", - "HTTPConnectTest.cc" + "libparsers_la-lex.ce_expr.o", + "lex.ce_expr.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap/unit-tests", - "output": "HTTPConnectTest-HTTPConnectTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/lex.ce_expr.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libparsers_la-lex.ce_expr.o" }, { - "file": "remove_directory.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I../..", - "-I../..", - "-I../../GNU", - "-I../../http_dap", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "HTTPConnectTest-remove_directory.o", - "-MD", - "-MP", - "-MF", - ".deps/HTTPConnectTest-remove_directory.Tpo", "-c", "-o", - "HTTPConnectTest-remove_directory.o", - "remove_directory.cc" + "libdap_la-Int16.o", + "Int16.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap/unit-tests", - "output": "HTTPConnectTest-remove_directory.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Int16.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Int16.o" }, { - "file": "HTTPCacheTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I../..", - "-I../..", - "-I../../GNU", - "-I../../http_dap", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "HTTPCacheTest-HTTPCacheTest.o", - "-MD", - "-MP", - "-MF", - ".deps/HTTPCacheTest-HTTPCacheTest.Tpo", "-c", "-o", - "HTTPCacheTest-HTTPCacheTest.o", - "HTTPCacheTest.cc" + "libdap_la-UInt64.o", + "UInt64.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap/unit-tests", - "output": "HTTPCacheTest-HTTPCacheTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/UInt64.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-UInt64.o" }, { - "file": "remove_directory.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I../..", - "-I../..", - "-I../../GNU", - "-I../../http_dap", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "HTTPCacheTest-remove_directory.o", - "-MD", - "-MP", - "-MF", - ".deps/HTTPCacheTest-remove_directory.Tpo", "-c", "-o", - "HTTPCacheTest-remove_directory.o", - "remove_directory.cc" + "libdap_la-Int8.o", + "Int8.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/http_dap/unit-tests", - "output": "HTTPCacheTest-remove_directory.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Int8.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Int8.o" }, { - "file": "marshT.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "marshT.o", - "-MD", - "-MP", - "-MF", - ".deps/marshT.Tpo", "-c", "-o", - "marshT.o", - "marshT.cc" + "DODSFilter.o", + "DODSFilter.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "marshT.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DODSFilter.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/DODSFilter.o" }, { - "file": "arrayT.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "arrayT.o", - "-MD", - "-MP", - "-MF", - ".deps/arrayT.Tpo", "-c", "-o", - "arrayT.o", - "arrayT.cc" + "libdap_la-D4Opaque.o", + "D4Opaque.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "arrayT.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Opaque.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4Opaque.o" }, { - "file": "attrTableT.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "attrTableT.o", - "-MD", - "-MP", - "-MF", - ".deps/attrTableT.Tpo", "-c", "-o", - "attrTableT.o", - "attrTableT.cc" + "libdap_la-Float64.o", + "Float64.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "attrTableT.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Float64.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Float64.o" }, { - "file": "structT.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "structT.o", - "-MD", - "-MP", - "-MF", - ".deps/structT.Tpo", "-c", "-o", - "structT.o", - "structT.cc" + "libdap_la-UInt32.o", + "UInt32.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "structT.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/UInt32.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-UInt32.o" }, { - "file": "sequenceT.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "sequenceT.o", - "-MD", - "-MP", - "-MF", - ".deps/sequenceT.Tpo", "-c", "-o", - "sequenceT.o", - "sequenceT.cc" + "libdap_la-D4Dimensions.o", + "D4Dimensions.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "sequenceT.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Dimensions.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4Dimensions.o" }, { - "file": "testFile.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "testFile.o", - "-MD", - "-MP", - "-MF", - ".deps/testFile.Tpo", "-c", "-o", - "testFile.o", - "testFile.cc" + "libdap_la-XDRStreamUnMarshaller.o", + "XDRStreamUnMarshaller.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "testFile.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/XDRStreamUnMarshaller.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-XDRStreamUnMarshaller.o" }, { - "file": "ddsT.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "ddsT.o", - "-MD", - "-MP", - "-MF", - ".deps/ddsT.Tpo", "-c", "-o", - "ddsT.o", - "ddsT.cc" + "libdap_la-D4EnumDefs.o", + "D4EnumDefs.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "ddsT.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4EnumDefs.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4EnumDefs.o" }, { - "file": "dasT.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "dasT.o", - "-MD", - "-MP", - "-MF", - ".deps/dasT.Tpo", "-c", "-o", - "dasT.o", - "dasT.cc" + "libdap_la-Byte.o", + "Byte.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "dasT.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Byte.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Byte.o" }, { - "file": "RegexTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "RegexTest.o", - "-MD", - "-MP", - "-MF", - ".deps/RegexTest.Tpo", "-c", "-o", - "RegexTest.o", - "RegexTest.cc" + "libdap_la-XDRStreamMarshaller.o", + "XDRStreamMarshaller.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "RegexTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/XDRStreamMarshaller.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-XDRStreamMarshaller.o" }, { - "file": "ArrayTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "ArrayTest.o", - "-MD", - "-MP", - "-MF", - ".deps/ArrayTest.Tpo", "-c", "-o", - "ArrayTest.o", - "ArrayTest.cc" + "libdap_la-D4FilterClause.o", + "D4FilterClause.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "ArrayTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4FilterClause.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4FilterClause.o" }, { - "file": "GridTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "GridTest.o", - "-MD", - "-MP", - "-MF", - ".deps/GridTest.Tpo", "-c", "-o", - "GridTest.o", - "GridTest.cc" + "libdap_la-Int64.o", + "Int64.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "GridTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Int64.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Int64.o" }, { - "file": "AttrTableTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "AttrTableTest.o", - "-MD", - "-MP", - "-MF", - ".deps/AttrTableTest.Tpo", "-c", "-o", - "AttrTableTest.o", - "AttrTableTest.cc" + "libdap_la-D4RValue.o", + "D4RValue.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "AttrTableTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4RValue.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4RValue.o" }, { - "file": "MIMEUtilTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "MIMEUtilTest.o", - "-MD", - "-MP", - "-MF", - ".deps/MIMEUtilTest.Tpo", "-c", "-o", - "MIMEUtilTest.o", - "MIMEUtilTest.cc" + "libdap_la-D4Attributes.o", + "D4Attributes.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "MIMEUtilTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Attributes.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4Attributes.o" }, { - "file": "ByteTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "ByteTest.o", - "-MD", - "-MP", - "-MF", - ".deps/ByteTest.Tpo", "-c", "-o", - "ByteTest.o", - "ByteTest.cc" + "libdap_la-BaseType.o", + "BaseType.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "ByteTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/BaseType.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-BaseType.o" }, { - "file": "ancT.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "ancT.o", - "-MD", - "-MP", - "-MF", - ".deps/ancT.Tpo", "-c", "-o", - "ancT.o", - "ancT.cc" + "libdap_la-mime_util.o", + "mime_util.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "ancT.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/mime_util.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-mime_util.o" }, { - "file": "DASTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "DASTest.o", - "-MD", - "-MP", - "-MF", - ".deps/DASTest.Tpo", "-c", "-o", - "DASTest.o", - "DASTest.cc" + "libdap_la-D4Maps.o", + "D4Maps.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "DASTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Maps.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4Maps.o" }, { - "file": "RCReaderTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "RCReaderTest.o", - "-MD", - "-MP", - "-MF", - ".deps/RCReaderTest.Tpo", "-c", "-o", - "RCReaderTest.o", - "RCReaderTest.cc" + "libparsers_la-dds.tab.o", + "dds.tab.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "RCReaderTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/dds.tab.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libparsers_la-dds.tab.o" }, { - "file": "ServerFunctionsListUnitTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "ServerFunctionsListUnitTest.o", - "-MD", - "-MP", - "-MF", - ".deps/ServerFunctionsListUnitTest.Tpo", "-c", "-o", - "ServerFunctionsListUnitTest.o", - "ServerFunctionsListUnitTest.cc" + "libdap_la-Keywords2.o", + "Keywords2.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "ServerFunctionsListUnitTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Keywords2.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Keywords2.o" }, { - "file": "Int32Test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "Int32Test.o", - "-MD", - "-MP", - "-MF", - ".deps/Int32Test.Tpo", "-c", "-o", - "Int32Test.o", - "Int32Test.cc" + "libdap_la-Structure.o", + "Structure.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "Int32Test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Structure.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Structure.o" }, { - "file": "Int16Test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "Int16Test.o", - "-MD", - "-MP", - "-MF", - ".deps/Int16Test.Tpo", "-c", "-o", - "Int16Test.o", - "Int16Test.cc" + "libdap_la-AttrTable.o", + "AttrTable.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "Int16Test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/AttrTable.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-AttrTable.o" }, { - "file": "generalUtilTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "generalUtilTest.o", - "-MD", - "-MP", - "-MF", - ".deps/generalUtilTest.Tpo", "-c", "-o", - "generalUtilTest.o", - "generalUtilTest.cc" + "libdapclient_la-Connect.o", + "Connect.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "generalUtilTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Connect.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdapclient_la-Connect.o" }, { - "file": "DDSTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "DDSTest.o", - "-MD", - "-MP", - "-MF", - ".deps/DDSTest.Tpo", "-c", "-o", - "DDSTest.o", - "DDSTest.cc" + "libdap_la-D4BaseTypeFactory.o", + "D4BaseTypeFactory.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "DDSTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4BaseTypeFactory.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4BaseTypeFactory.o" }, { - "file": "Int8Test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "Int8Test.o", - "-MD", - "-MP", - "-MF", - ".deps/Int8Test.Tpo", "-c", "-o", - "Int8Test.o", - "Int8Test.cc" + "libdap_la-D4Sequence.o", + "D4Sequence.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "Int8Test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Sequence.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4Sequence.o" }, { - "file": "MarshallerFutureTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "MarshallerFutureTest.o", - "-MD", - "-MP", - "-MF", - ".deps/MarshallerFutureTest.Tpo", "-c", "-o", - "MarshallerFutureTest.o", - "MarshallerFutureTest.cc" + "libdap_la-DMR.o", + "DMR.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "MarshallerFutureTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DMR.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-DMR.o" }, { - "file": "MarshallerTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "MarshallerTest.o", - "-MD", - "-MP", - "-MF", - ".deps/MarshallerTest.Tpo", "-c", "-o", - "MarshallerTest.o", - "MarshallerTest.cc" + "libdap_la-DDS.o", + "DDS.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "MarshallerTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DDS.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-DDS.o" }, { - "file": "parserUtilTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "parserUtilTest.o", - "-MD", - "-MP", - "-MF", - ".deps/parserUtilTest.Tpo", "-c", "-o", - "parserUtilTest.o", - "parserUtilTest.cc" + "libdap_la-D4Enum.o", + "D4Enum.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "parserUtilTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Enum.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4Enum.o" }, { - "file": "Int64Test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "Int64Test.o", - "-MD", - "-MP", - "-MF", - ".deps/Int64Test.Tpo", "-c", "-o", - "Int64Test.o", - "Int64Test.cc" + "libdap_la-Sequence.o", + "Sequence.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "Int64Test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Sequence.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Sequence.o" }, { - "file": "util_mitTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "util_mitTest.o", - "-MD", - "-MP", - "-MF", - ".deps/util_mitTest.Tpo", "-c", "-o", - "util_mitTest.o", - "util_mitTest.cc" + "libdap_la-Grid.o", + "Grid.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "util_mitTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Grid.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Grid.o" }, { - "file": "SignalHandlerTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "SignalHandlerTest.o", - "-MD", - "-MP", - "-MF", - ".deps/SignalHandlerTest.Tpo", "-c", "-o", - "SignalHandlerTest.o", - "SignalHandlerTest.cc" + "libdap_la-Constructor.o", + "Constructor.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "SignalHandlerTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Constructor.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Constructor.o" }, { - "file": "ErrorTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "ErrorTest.o", - "-MD", - "-MP", - "-MF", - ".deps/ErrorTest.Tpo", "-c", "-o", - "ErrorTest.o", - "ErrorTest.cc" + "libdapclient_la-D4Connect.o", + "D4Connect.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "ErrorTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Connect.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdapclient_la-D4Connect.o" }, { - "file": "BaseTypeFactoryTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "BaseTypeFactoryTest.o", - "-MD", - "-MP", - "-MF", - ".deps/BaseTypeFactoryTest.Tpo", "-c", "-o", - "BaseTypeFactoryTest.o", - "BaseTypeFactoryTest.cc" + "libparsers_la-ce_expr.tab.o", + "ce_expr.tab.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "BaseTypeFactoryTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/ce_expr.tab.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libparsers_la-ce_expr.tab.o" }, { - "file": "D4MarshallerTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4MarshallerTest.o", - "-MD", - "-MP", - "-MF", - ".deps/D4MarshallerTest.Tpo", "-c", "-o", - "D4MarshallerTest.o", - "D4MarshallerTest.cc" + "libdap_la-Vector.o", + "Vector.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "D4MarshallerTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Vector.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Vector.o" }, { - "file": "D4DimensionsTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4DimensionsTest.o", - "-MD", - "-MP", - "-MF", - ".deps/D4DimensionsTest.Tpo", "-c", "-o", - "D4DimensionsTest.o", - "D4DimensionsTest.cc" + "libdap_la-DDXParserSAX2.o", + "DDXParserSAX2.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "D4DimensionsTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/DDXParserSAX2.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-DDXParserSAX2.o" }, { - "file": "DmrToDap2Test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "DmrToDap2Test.o", - "-MD", - "-MP", - "-MF", - ".deps/DmrToDap2Test.Tpo", "-c", "-o", - "DmrToDap2Test.o", - "DmrToDap2Test.cc" + "libdap_la-util.o", + "util.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "DmrToDap2Test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/util.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-util.o" }, { - "file": "IsDap4ProjectedTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "IsDap4ProjectedTest.o", - "-MD", - "-MP", - "-MF", - ".deps/IsDap4ProjectedTest.Tpo", "-c", "-o", - "IsDap4ProjectedTest.o", - "IsDap4ProjectedTest.cc" + "libdap_la-D4Group.o", + "D4Group.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "IsDap4ProjectedTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4Group.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4Group.o" }, { - "file": "SequenceTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "SequenceTest.o", - "-MD", - "-MP", - "-MF", - ".deps/SequenceTest.Tpo", "-c", "-o", - "SequenceTest.o", - "SequenceTest.cc" + "libdap_la-Array.o", + "Array.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "SequenceTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/Array.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-Array.o" }, { - "file": "D4FilterClauseTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", - "-I..", - "-I../GNU", - "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I./gl", + "-I./gl", + "-I./GNU", + "-I./http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-deprecated-register", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4FilterClauseTest.o", - "-MD", - "-MP", - "-MF", - ".deps/D4FilterClauseTest.Tpo", "-c", "-o", - "D4FilterClauseTest.o", - "D4FilterClauseTest.cc" + "libdap_la-D4ParserSax2.o", + "D4ParserSax2.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "D4FilterClauseTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/D4ParserSax2.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/libdap_la-D4ParserSax2.o" }, { - "file": "Float32Test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "Float32Test.o", - "-MD", - "-MP", - "-MF", - ".deps/Float32Test.Tpo", + "-fPIC", "-c", "-o", - "Float32Test.o", - "Float32Test.cc" + "libtest_types_a-TestStr.o", + "TestStr.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "Float32Test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestStr.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestStr.o" }, { - "file": "D4SequenceTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4SequenceTest.o", - "-MD", - "-MP", - "-MF", - ".deps/D4SequenceTest.Tpo", + "-fPIC", "-c", "-o", - "D4SequenceTest.o", - "D4SequenceTest.cc" + "libtest_types_a-TestFloat64.o", + "TestFloat64.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "D4SequenceTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestFloat64.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestFloat64.o" }, { - "file": "UInt32Test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "UInt32Test.o", - "-MD", - "-MP", - "-MF", - ".deps/UInt32Test.Tpo", + "-fPIC", "-c", "-o", - "UInt32Test.o", - "UInt32Test.cc" + "libtest_types_a-TestByte.o", + "TestByte.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "UInt32Test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestByte.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestByte.o" }, { - "file": "D4AttributesTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4AttributesTest.o", - "-MD", - "-MP", - "-MF", - ".deps/D4AttributesTest.Tpo", + "-fPIC", "-c", "-o", - "D4AttributesTest.o", - "D4AttributesTest.cc" + "libtest_types_a-TestInt32.o", + "TestInt32.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "D4AttributesTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestInt32.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestInt32.o" }, { - "file": "D4AsyncDocTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4AsyncDocTest.o", - "-MD", - "-MP", - "-MF", - ".deps/D4AsyncDocTest.Tpo", + "-fPIC", "-c", "-o", - "D4AsyncDocTest.o", - "D4AsyncDocTest.cc" + "libtest_types_a-TestArray.o", + "TestArray.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "D4AsyncDocTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestArray.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestArray.o" }, { - "file": "DDXParserTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "DDXParserTest-DDXParserTest.o", - "-MD", - "-MP", - "-MF", - ".deps/DDXParserTest-DDXParserTest.Tpo", + "-fPIC", "-c", "-o", - "DDXParserTest-DDXParserTest.o", - "DDXParserTest.cc" + "libtest_types_a-TestUrl.o", + "TestUrl.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "DDXParserTest-DDXParserTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestUrl.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestUrl.o" }, { - "file": "DMRTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "DMRTest.o", - "-MD", - "-MP", - "-MF", - ".deps/DMRTest.Tpo", + "-fPIC", "-c", "-o", - "DMRTest.o", - "DMRTest.cc" + "libtest_types_a-TestStructure.o", + "TestStructure.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "DMRTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestStructure.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestStructure.o" }, { - "file": "D4EnumTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4EnumTest.o", - "-MD", - "-MP", - "-MF", - ".deps/D4EnumTest.Tpo", + "-fPIC", "-c", "-o", - "D4EnumTest.o", - "D4EnumTest.cc" + "libtest_types_a-TestInt16.o", + "TestInt16.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "D4EnumTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestInt16.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestInt16.o" }, { - "file": "DmrRoundTripTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "DmrRoundTripTest.o", - "-MD", - "-MP", - "-MF", - ".deps/DmrRoundTripTest.Tpo", + "-fPIC", "-c", "-o", - "DmrRoundTripTest.o", - "DmrRoundTripTest.cc" + "libtest_types_a-TestUInt16.o", + "TestUInt16.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "DmrRoundTripTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestUInt16.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestUInt16.o" }, { - "file": "D4GroupTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4GroupTest.o", - "-MD", - "-MP", - "-MF", - ".deps/D4GroupTest.Tpo", + "-fPIC", "-c", "-o", - "D4GroupTest.o", - "D4GroupTest.cc" + "libtest_types_a-TestUInt32.o", + "TestUInt32.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "D4GroupTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestUInt32.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestUInt32.o" }, { - "file": "chunked_iostream_test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "chunked_iostream_test.o", - "-MD", - "-MP", - "-MF", - ".deps/chunked_iostream_test.Tpo", + "-fPIC", "-c", "-o", - "chunked_iostream_test.o", - "chunked_iostream_test.cc" + "libtest_types_a-TestSequence.o", + "TestSequence.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "chunked_iostream_test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestSequence.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestSequence.o" }, { - "file": "D4EnumDefsTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4EnumDefsTest.o", - "-MD", - "-MP", - "-MF", - ".deps/D4EnumDefsTest.Tpo", + "-fPIC", "-c", "-o", - "D4EnumDefsTest.o", - "D4EnumDefsTest.cc" + "libtest_types_a-TestGrid.o", + "TestGrid.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "D4EnumDefsTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestGrid.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestGrid.o" }, { - "file": "UInt64Test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "UInt64Test.o", - "-MD", - "-MP", - "-MF", - ".deps/UInt64Test.Tpo", + "-fPIC", "-c", "-o", - "UInt64Test.o", - "UInt64Test.cc" + "libtest_types_a-TestFloat32.o", + "TestFloat32.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "UInt64Test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestFloat32.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestFloat32.o" }, { - "file": "Float64Test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "Float64Test.o", - "-MD", - "-MP", - "-MF", - ".deps/Float64Test.Tpo", + "-fPIC", "-c", "-o", - "Float64Test.o", - "Float64Test.cc" + "libtest_types_a-TestUInt64.o", + "TestUInt64.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "Float64Test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestUInt64.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestUInt64.o" }, { - "file": "D4BaseTypeFactoryTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4BaseTypeFactoryTest.o", - "-MD", - "-MP", - "-MF", - ".deps/D4BaseTypeFactoryTest.Tpo", + "-fPIC", "-c", "-o", - "D4BaseTypeFactoryTest.o", - "D4BaseTypeFactoryTest.cc" + "libtest_types_a-TestTypeFactory.o", + "TestTypeFactory.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "D4BaseTypeFactoryTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestTypeFactory.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestTypeFactory.o" }, { - "file": "D4UnMarshallerTest.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4UnMarshallerTest.o", - "-MD", - "-MP", - "-MF", - ".deps/D4UnMarshallerTest.Tpo", + "-fPIC", "-c", "-o", - "D4UnMarshallerTest.o", - "D4UnMarshallerTest.cc" + "libtest_types_a-D4TestTypeFactory.o", + "D4TestTypeFactory.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "D4UnMarshallerTest.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/D4TestTypeFactory.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-D4TestTypeFactory.o" }, { - "file": "D4ParserSax2Test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4ParserSax2Test.o", - "-MD", - "-MP", - "-MF", - ".deps/D4ParserSax2Test.Tpo", + "-fPIC", "-c", "-o", - "D4ParserSax2Test.o", - "D4ParserSax2Test.cc" + "libtest_types_a-TestInt64.o", + "TestInt64.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "D4ParserSax2Test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestInt64.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestInt64.o" }, { - "file": "UInt16Test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", - "-I../GNU", "-I..", - "-I../tests", - "-I/opt/homebrew/Cellar/cppunit/1.15.1/include", - "-I/opt/homebrew/include", + "-I../GNU", + "-I../d4_ce", + "-I../d4_function", + "-I../http_dap", "--std=c++14", "-Wall", "-W", "-Wcast-align", - "-Wno-self-assign-overloaded", + "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "UInt16Test.o", - "-MD", - "-MP", - "-MF", - ".deps/UInt16Test.Tpo", + "-fPIC", "-c", "-o", - "UInt16Test.o", - "UInt16Test.cc" + "libtest_types_a-TestD4Group.o", + "TestD4Group.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/unit-tests", - "output": "UInt16Test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestD4Group.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestD4Group.o" }, { - "file": "das-test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", @@ -9716,7 +7869,6 @@ "-I../d4_ce", "-I../d4_function", "-I../http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -9724,24 +7876,19 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "das-test.o", - "-MD", - "-MP", - "-MF", - ".deps/das-test.Tpo", + "-fPIC", "-c", "-o", - "das-test.o", - "das-test.cc" + "libtest_types_a-TestInt8.o", + "TestInt8.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "das-test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestInt8.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestInt8.o" }, { - "file": "dds-test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", @@ -9750,7 +7897,6 @@ "-I../d4_ce", "-I../d4_function", "-I../http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -9758,24 +7904,19 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "dds-test.o", - "-MD", - "-MP", - "-MF", - ".deps/dds-test.Tpo", + "-fPIC", "-c", "-o", - "dds-test.o", - "dds-test.cc" + "libtest_types_a-TestD4Sequence.o", + "TestD4Sequence.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "dds-test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestD4Sequence.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestD4Sequence.o" }, { - "file": "expr-test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", @@ -9784,7 +7925,6 @@ "-I../d4_ce", "-I../d4_function", "-I../http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -9792,24 +7932,19 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "expr-test.o", - "-MD", - "-MP", - "-MF", - ".deps/expr-test.Tpo", + "-fPIC", "-c", "-o", - "expr-test.o", - "expr-test.cc" + "libtest_types_a-TestFunction.o", + "TestFunction.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "expr-test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestFunction.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestFunction.o" }, { - "file": "ResponseBuilder.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", @@ -9818,7 +7953,6 @@ "-I../d4_ce", "-I../d4_function", "-I../http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -9826,24 +7960,19 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "ResponseBuilder.o", - "-MD", - "-MP", - "-MF", - ".deps/ResponseBuilder.Tpo", + "-fPIC", "-c", "-o", - "ResponseBuilder.o", - "ResponseBuilder.cc" + "libtest_types_a-TestD4Opaque.o", + "TestD4Opaque.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "ResponseBuilder.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestD4Opaque.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestD4Opaque.o" }, { - "file": "dmr-test.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", @@ -9852,7 +7981,6 @@ "-I../d4_ce", "-I../d4_function", "-I../http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -9860,24 +7988,19 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "dmr-test.o", - "-MD", - "-MP", - "-MF", - ".deps/dmr-test.Tpo", + "-fPIC", "-c", "-o", - "dmr-test.o", - "dmr-test.cc" + "libtest_types_a-D4TestFunction.o", + "D4TestFunction.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "dmr-test.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/D4TestFunction.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-D4TestFunction.o" }, { - "file": "D4ResponseBuilder.cc", "arguments": [ - "g++", + "/usr/bin/g++", "-DHAVE_CONFIG_H", "-I.", "-I..", @@ -9886,7 +8009,6 @@ "-I../d4_ce", "-I../d4_function", "-I../http_dap", - "-I/opt/homebrew/include", "--std=c++14", "-Wall", "-W", @@ -9894,18 +8016,14 @@ "-Wno-inconsistent-missing-override", "-g3", "-O0", - "-MT", - "D4ResponseBuilder.o", - "-MD", - "-MP", - "-MF", - ".deps/D4ResponseBuilder.Tpo", + "-fPIC", "-c", "-o", - "D4ResponseBuilder.o", - "D4ResponseBuilder.cc" + "libtest_types_a-TestD4Enum.o", + "TestD4Enum.cc" ], - "directory": "/Users/jhrg/src/hyrax/libdap4/tests", - "output": "D4ResponseBuilder.o" + "directory": "/Users/jimg/src/opendap/hyrax/libdap4/tests", + "file": "/Users/jimg/src/opendap/hyrax/libdap4/tests/TestD4Enum.cc", + "output": "/Users/jimg/src/opendap/hyrax/libdap4/tests/libtest_types_a-TestD4Enum.o" } -] \ No newline at end of file +] From afb2ec6018bb1f15dab76d145a38f17a74a2ad1b Mon Sep 17 00:00:00 2001 From: James Gallagher Date: Sat, 28 Feb 2026 20:31:14 -0700 Subject: [PATCH 5/7] First pass: reorganize .gitignore --- .gitignore | 220 +++++++++++++++++++++++++++-------------------------- 1 file changed, 114 insertions(+), 106 deletions(-) diff --git a/.gitignore b/.gitignore index 1a45338eb..3c67dbe10 100644 --- a/.gitignore +++ b/.gitignore @@ -1,85 +1,68 @@ -## directories -.autotools -.deps -.libs +## OS/editor metadata +.DS_Store +*/.DS_Store .idea -.dirstamp +.vscode/ .cproject .project .settings -.DS_Store -.vscode/ -*/.DS_Store -gcovr-output/ -gcov-data/ +## Build directories and caches +.autotools +.deps +.libs +.dirstamp autom4te.cache -Default -docs -html -tmp -libdap_VERSION -libdap.spec - -libdap4-autotest-* - -# CLion CMake directory; might make this visible later on... jhrg 2/8/17 +build/** cmake-build-* +gcovr-output/ +gcov-data/ +/bw-output/ +/.scannerwork/ -## file ptterns +## Generic generated file patterns *~ *.o *.lo -*.output -*.tab.cc -*.tab.hh -lex.*.cc *.la -# Assuming there's a ...pc.in it's built from *.pc *.log *.trs *.docs +*.output +*.tab.cc +*.tab.hh +lex.*.cc *.gcov *.gcno *.gcda - -# OSX Instruments run-time profiling *.trace -# literal files -libdap.spec +## Top-level generated artifacts +Default +docs +html +latex +tmp libdap_VERSION +libdap.spec +libdap4-autotest-* +libdap-*.tar.gz +libdap-* + +## Autotools/configure outputs Makefile Makefile.in -conf/compile -conf/config.guess -conf/config.sub -conf/depcomp -conf/install-sh -conf/libtool.m4 -conf/ltmain.sh -conf/ltoptions.m4 -conf/ltsugar.m4 -conf/ltversion.m4 -conf/lt~obsolete.m4 -conf/missing -conf/test-driver +aclocal.m4 config.h config.h.in config.status configure -stamp-h? -aclocal.m4 libtool -doxy.conf -doxygen_warnings.txt -main_page.doxygen -dmr_memory_cache - -## libdap specific files -gl/*.h +stamp-h? +## Project generated files +abi_checker.xml dap-config dap-config.1 dods-datatypes-config.h @@ -90,14 +73,34 @@ getdap4 getdap4.1 xdr-datatypes-config.h xdr-datatypes.h +dmr_memory_cache +doxy.conf +doxygen_warnings.txt +main_page.doxygen -abi_checker.xml +## conf/ generated files +conf/compile +conf/config.guess +conf/config.sub +conf/depcomp +conf/install-sh +conf/libtool.m4 +conf/ltmain.sh +conf/ltoptions.m4 +conf/ltsugar.m4 +conf/ltversion.m4 +conf/lt~obsolete.m4 +conf/missing +conf/test-driver +## gnulib generated files +gl/*.h gl/charset.alias gl/ref-add.sed gl/ref-del.sed gl/sys/ +## Parser generator outputs d4_ce/location.hh d4_ce/position.hh d4_ce/stack.hh @@ -105,10 +108,11 @@ d4_function/location.hh d4_function/position.hh d4_function/stack.hh +## Integration/unit test artifacts (http_dap) http_dap/unit-tests/HTTPCacheTest http_dap/unit-tests/HTTPConnectTest +http_dap/unit-tests/HTTPThreadsConnectTest http_dap/unit-tests/test_config.h - http_dap/unit-tests/cache-testsuite/cleanup.sh http_dap/unit-tests/cache-testsuite/dods_cache/ http_dap/unit-tests/cache-testsuite/gc_cache/ @@ -116,45 +120,76 @@ http_dap/unit-tests/cache-testsuite/header_cache/ http_dap/unit-tests/cache-testsuite/purge_cache/ http_dap/unit-tests/cache-testsuite/singleton_cache/ -libdap-*.tar.gz -libdap-* - -html -latex - +## Integration/unit test artifacts (tests) tests/DASTest tests/DDSTest +tests/DMRTest tests/EXPRTest +tests/getdapTest +tests/*Test.dir tests/atconfig tests/atlocal tests/das-test tests/dds-test +tests/dmr-test tests/expr-test tests/libtest-types.a tests/package.m4 -tests/DMRTest -tests/dmr-test -tests/getdapTest -tests/*Test.dir +## Integration/unit test artifacts (unit-tests) unit-tests/*.file unit-tests/*.strm unit-tests/.dodsrc unit-tests/ArrayTest unit-tests/AttrTableTest +unit-tests/BaseTypeFactoryTest +unit-tests/BaseTypeTest unit-tests/ByteTest +unit-tests/ConstraintEvaluatorTest +unit-tests/D4AsyncDocTest +unit-tests/D4AttributesTest +unit-tests/D4BaseTypeFactoryTest +unit-tests/D4DimensionsTest +unit-tests/D4EnumDefsTest +unit-tests/D4EnumTest +unit-tests/D4FilterClauseTest +unit-tests/D4GroupTest +unit-tests/D4MarshallerTest +unit-tests/D4ParserSax2Test +unit-tests/D4SequenceTest +unit-tests/D4StreamRoundTripTest +unit-tests/D4UnMarshallerTest +unit-tests/DAPCache3Test unit-tests/DASTest unit-tests/DDSTest unit-tests/DDXParserTest +unit-tests/DMRTest +unit-tests/DmrRoundTripTest +unit-tests/DmrToDap2Test +unit-tests/ErrorTest +unit-tests/Float32Test +unit-tests/Float64Test +unit-tests/generalUtilTest +unit-tests/GridTest unit-tests/HTTPCacheTest unit-tests/HTTPConnectTest +unit-tests/Int16Test +unit-tests/Int32Test +unit-tests/Int64Test +unit-tests/Int8Test +unit-tests/IsDap4ProjectedTest unit-tests/MIMEUtilTest +unit-tests/MarshallerFutureTest unit-tests/MarshallerTest +unit-tests/MarshallerThreadTest unit-tests/RCReaderTest unit-tests/RegexTest unit-tests/SequenceTest unit-tests/ServerFunctionsListUnitTest unit-tests/SignalHandlerTest +unit-tests/UInt16Test +unit-tests/UInt32Test +unit-tests/UInt64Test unit-tests/ancT unit-tests/arrayT unit-tests/attrTableT @@ -165,57 +200,30 @@ unit-tests/cache-testsuite/header_cache/ unit-tests/cache-testsuite/http_connect_cache/ unit-tests/cache-testsuite/purge_cache/ unit-tests/cache-testsuite/singleton_cache/ +unit-tests/chunked-io/ +unit-tests/chunked_iostream_test +unit-tests/dapcache3test.* unit-tests/dasT unit-tests/ddsT -unit-tests/generalUtilTest +unit-tests/dmr_memory_cache unit-tests/marshT unit-tests/parserUtilTest unit-tests/sequenceT unit-tests/structT unit-tests/test_config.h -unit-tests/D4AsyncDocTest -unit-tests/D4AttributesTest -unit-tests/D4DimensionsTest -unit-tests/D4EnumDefsTest -unit-tests/D4EnumTest -unit-tests/D4GroupTest -unit-tests/D4MarshallerTest -unit-tests/D4ParserSax2Test -unit-tests/D4UnMarshallerTest -unit-tests/DMRTest -unit-tests/DmrRoundTripTest -unit-tests/DmrToDap2Test -unit-tests/chunked_iostream_test -unit-tests/D4FilterClauseTest -unit-tests/D4SequenceTest -unit-tests/BaseTypeFactoryTest -unit-tests/D4BaseTypeFactoryTest -unit-tests/Float32Test -unit-tests/Float64Test -unit-tests/Int16Test -unit-tests/Int32Test -unit-tests/Int64Test -unit-tests/Int8Test -unit-tests/UInt16Test -unit-tests/UInt32Test -unit-tests/UInt64Test -unit-tests/GridTest -unit-tests/IsDap4ProjectedTest unit-tests/util_mitTest -unit-tests/MarshallerFutureTest -unit-tests/BaseTypeTest -unit-tests/ConstraintEvaluatorTest -unit-tests/D4StreamRoundTripTest -unit-tests/DAPCache3Test -unit-tests/ErrorTest -unit-tests/MarshallerThreadTest -unit-tests/dmr_memory_cache -unit-tests/dapcache3test.* +## d4_ce unit tests d4_ce/unit-tests/D4ConstraintEvaluatorTest d4_ce/unit-tests/test_config.h -http_dap/unit-tests/HTTPThreadsConnectTest -unit-tests/chunked-io/ -/bw-output/ -/.scannerwork/ +## CMake generated files (out-of-source build artifacts) +CMakeFiles/ +CMakeCache.txt +cmake_install.cmake +CTestTestfile.cmake +Testing/ +install_manifest.txt +CPackConfig.cmake +CPackSourceConfig.cmake +*_CPack_Packages/ From 8b1aa68a424f06484fed3bf0179b86015b556059 Mon Sep 17 00:00:00 2001 From: James Gallagher Date: Sat, 28 Feb 2026 21:44:09 -0700 Subject: [PATCH 6/7] The four compiler warnings from the flex scanner code are now suppressed. --- CMakeLists.txt | 11 +++++++++++ Makefile.am | 6 ++++++ 2 files changed, 17 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d27adcb8..d574f7b89 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -220,6 +220,17 @@ set(GENERATED_PARSER_SRC ${FLEX_ErrorScanner_OUTPUTS} ) +# Suppress sign-compare warnings from flex-generated scanners only. +set(FLEX_SCANNER_SRC + ${FLEX_DDSScanner_OUTPUTS} + ${FLEX_DASScanner_OUTPUTS} + ${FLEX_CEScanner_OUTPUTS} + ${FLEX_ErrorScanner_OUTPUTS} +) +set_source_files_properties(${FLEX_SCANNER_SRC} PROPERTIES + COMPILE_OPTIONS "$<$:-Wno-sign-compare>" +) + # Ensure grammar files build before other sources set_source_files_properties(${GENERATED_PARSER_SRC} PROPERTIES GENERATED TRUE) diff --git a/Makefile.am b/Makefile.am index dafafbf5d..0d5e25255 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,6 +55,12 @@ libparsers_la_SOURCES = $(FLEX_SRC) $(BISON_SRC) libparsers_la_CPPFLAGS = $(XML2_CFLAGS) $(TIRPC_CFLAGS) libparsers_la_LIBADD = $(XML2_LIBS) +# Suppress sign-compare warnings from flex-generated scanners only. +libparsers_la-lex.das.lo \ +libparsers_la-lex.dds.lo \ +libparsers_la-lex.ce_expr.lo \ +libparsers_la-lex.Error.lo: AM_CXXFLAGS += -Wno-sign-compare + libdap_la_SOURCES = $(DAP_SRC) $(GNU_SRC) $(DAP4_ONLY_SRC) libdap_la_LDFLAGS = -version-info $(LIBDAP_VERSION) From a02fe617432c3a92407fe3b0e9eda5e4dc65d129 Mon Sep 17 00:00:00 2001 From: James Gallagher Date: Mon, 2 Mar 2026 10:12:43 -0700 Subject: [PATCH 7/7] /Users/jhrg --> ~ in PATH settings. This will need more work, but it's good enough. --- .vscode/launch.json | 2 +- .vscode/settings.json | 4 ++-- .vscode/tasks.json | 24 ++++++++++++------------ 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index beb0f5f57..c5d0f44fd 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -15,7 +15,7 @@ }, { "name": "PATH", - "value": "/Users/jimg/src/opendap/hyrax/build/bin:/Users/jimg/src/opendap/hyrax/build/deps/bin:${env:PATH}" + "value": "~/opendap/hyrax/build/bin:~/src/opendap/hyrax/build/deps/bin:${env:PATH}" } ], "MIMode": "lldb", diff --git a/.vscode/settings.json b/.vscode/settings.json index 5cbf39fa2..98e71e43a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,8 +4,8 @@ "C_Cpp.default.cppStandard": "c++14", "C_Cpp.default.intelliSenseMode": "macos-clang-arm64", "terminal.integrated.env.osx": { - "prefix": "/Users/jhrg/src/opendap/hyrax/build", - "PATH": "/Users/jhrg/src/opendap//hyrax/build/bin:/Users/jhrg/src/opendap/hyrax/build/deps/bin:${env:PATH}" + "prefix": "~/src/opendap/hyrax/build", + "PATH": "~/src/opendap//hyrax/build/bin:/Users/jhrg/src/opendap/hyrax/build/deps/bin:${env:PATH}" }, "makefile.configurations": [ { diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 6333cd5f7..bcbf0d14f 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -8,8 +8,8 @@ "options": { "cwd": "${workspaceFolder}", "env": { - "prefix": "/Users/jhrg/src/hyrax/build", - "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + "prefix": "~/src/hyrax/build", + "PATH": "~/src/hyrax/build/bin:~/src/hyrax/build/deps/bin:${env:PATH}" }, "shell": { "executable": "/bin/zsh", @@ -31,8 +31,8 @@ "options": { "cwd": "${workspaceFolder}", "env": { - "prefix": "/Users/jhrg/src/hyrax/build", - "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + "prefix": "~/src/hyrax/build", + "PATH": "~/src/hyrax/build/bin:~/src/hyrax/build/deps/bin:${env:PATH}" }, "shell": { "executable": "/bin/zsh", @@ -56,8 +56,8 @@ "options": { "cwd": "${workspaceFolder}", "env": { - "prefix": "/Users/jhrg/src/hyrax/build", - "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + "prefix": "~/src/hyrax/build", + "PATH": "~/src/hyrax/build/bin:~/src/hyrax/build/deps/bin:${env:PATH}" }, "shell": { "executable": "/bin/zsh", @@ -81,8 +81,8 @@ "options": { "cwd": "${workspaceFolder}", "env": { - "prefix": "/Users/jhrg/src/hyrax/build", - "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + "prefix": "~/src/hyrax/build", + "PATH": "~/src/hyrax/build/bin:~/src/hyrax/build/deps/bin:${env:PATH}" }, "shell": { "executable": "/bin/zsh", @@ -100,8 +100,8 @@ "options": { "cwd": "${workspaceFolder}", "env": { - "prefix": "/Users/jhrg/src/hyrax/build", - "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + "prefix": "~/src/hyrax/build", + "PATH": "~/src/hyrax/build/bin:~/src/hyrax/build/deps/bin:${env:PATH}" }, "shell": { "executable": "/bin/zsh", @@ -119,8 +119,8 @@ "options": { "cwd": "${workspaceFolder}", "env": { - "prefix": "/Users/jhrg/src/hyrax/build", - "PATH": "/Users/jhrg/src/hyrax/build/bin:/Users/jhrg/src/hyrax/build/deps/bin:${env:PATH}" + "prefix": "~/src/hyrax/build", + "PATH": "~/src/hyrax/build/bin:~/src/hyrax/build/deps/bin:${env:PATH}" }, "shell": { "executable": "/bin/zsh",