camenduru commited on
Commit
5610573
·
1 Parent(s): a1e9adf

pocketsphinx

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .dockerignore +14 -0
  2. .gitattributes +3 -0
  3. .github/workflows/build_wheels.yml +37 -0
  4. .github/workflows/tests.yml +48 -0
  5. .gitignore +15 -0
  6. .readthedocs.yml +13 -0
  7. AUTHORS +13 -0
  8. CMakeLists.txt +122 -0
  9. Dockerfile +22 -0
  10. LICENSE +136 -0
  11. MANIFEST.in +47 -0
  12. NEWS +54 -0
  13. README.md +174 -0
  14. build/CMakeCache.txt +595 -0
  15. build/CMakeFiles/3.22.6/CMakeCCompiler.cmake +72 -0
  16. build/CMakeFiles/3.22.6/CMakeDetermineCompilerABI_C.bin +3 -0
  17. build/CMakeFiles/3.22.6/CMakeSystem.cmake +15 -0
  18. build/CMakeFiles/3.22.6/CompilerIdC/CMakeCCompilerId.c +802 -0
  19. build/CMakeFiles/3.22.6/CompilerIdC/a.out +0 -0
  20. build/CMakeFiles/CMakeDirectoryInformation.cmake +16 -0
  21. build/CMakeFiles/CMakeOutput.log +372 -0
  22. build/CMakeFiles/CMakeRuleHashes.txt +31 -0
  23. build/CMakeFiles/CheckTypeSize/LONG.bin +3 -0
  24. build/CMakeFiles/CheckTypeSize/LONG.c +50 -0
  25. build/CMakeFiles/CheckTypeSize/LONG_LONG.bin +3 -0
  26. build/CMakeFiles/CheckTypeSize/LONG_LONG.c +50 -0
  27. build/CMakeFiles/Continuous.dir/DependInfo.cmake +18 -0
  28. build/CMakeFiles/Continuous.dir/build.make +87 -0
  29. build/CMakeFiles/Continuous.dir/cmake_clean.cmake +8 -0
  30. build/CMakeFiles/Continuous.dir/compiler_depend.make +2 -0
  31. build/CMakeFiles/Continuous.dir/compiler_depend.ts +2 -0
  32. build/CMakeFiles/Continuous.dir/progress.make +1 -0
  33. build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake +18 -0
  34. build/CMakeFiles/ContinuousBuild.dir/build.make +87 -0
  35. build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake +8 -0
  36. build/CMakeFiles/ContinuousBuild.dir/compiler_depend.make +2 -0
  37. build/CMakeFiles/ContinuousBuild.dir/compiler_depend.ts +2 -0
  38. build/CMakeFiles/ContinuousBuild.dir/progress.make +1 -0
  39. build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake +18 -0
  40. build/CMakeFiles/ContinuousConfigure.dir/build.make +87 -0
  41. build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake +8 -0
  42. build/CMakeFiles/ContinuousConfigure.dir/compiler_depend.make +2 -0
  43. build/CMakeFiles/ContinuousConfigure.dir/compiler_depend.ts +2 -0
  44. build/CMakeFiles/ContinuousConfigure.dir/progress.make +1 -0
  45. build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake +18 -0
  46. build/CMakeFiles/ContinuousCoverage.dir/build.make +87 -0
  47. build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake +8 -0
  48. build/CMakeFiles/ContinuousCoverage.dir/compiler_depend.make +2 -0
  49. build/CMakeFiles/ContinuousCoverage.dir/compiler_depend.ts +2 -0
  50. build/CMakeFiles/ContinuousCoverage.dir/progress.make +1 -0
.dockerignore ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ build
2
+ docs/build
3
+ cython/pocketsphinx/model
4
+ _skbuild
5
+ __pycache__
6
+ *~
7
+ CMakeCache.txt
8
+ CMakeFiles
9
+ CTestTestfile.cmake
10
+ DartConfiguration.tcl
11
+ cmake_install.cmake
12
+ Dockerfile
13
+ *.whl
14
+ dist
.gitattributes CHANGED
@@ -32,3 +32,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ build/libpocketsphinx.a filter=lfs diff=lfs merge=lfs -text
36
+ model/en-us/en-us/sendump filter=lfs diff=lfs merge=lfs -text
37
+ model/en-us/en-us/mdef filter=lfs diff=lfs merge=lfs -text
.github/workflows/build_wheels.yml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Build
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ make_sdist:
7
+ name: Build source distribution
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v3
12
+
13
+ - name: Build SDist
14
+ run: pipx run build --sdist
15
+
16
+ - uses: actions/upload-artifact@v3
17
+ with:
18
+ path: dist/*.tar.gz
19
+
20
+ build_wheels:
21
+ name: Build wheels on ${{ matrix.os }}
22
+ runs-on: ${{ matrix.os }}
23
+ strategy:
24
+ matrix:
25
+ os: [ubuntu-20.04, windows-2019, macos-11]
26
+
27
+ steps:
28
+ - name: Checkout
29
+ uses: actions/checkout@v3
30
+
31
+ - name: Build wheels
32
+ uses: pypa/cibuildwheel@v2.8.1
33
+
34
+ - name: Upload
35
+ uses: actions/upload-artifact@v3
36
+ with:
37
+ path: ./wheelhouse/*.whl
.github/workflows/tests.yml ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Run Tests
2
+ on:
3
+ - push
4
+ - pull_request
5
+ jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout
10
+ uses: actions/checkout@v3
11
+ - name: Install
12
+ run: |
13
+ sudo apt-get install sox ninja-build
14
+ - name: Build
15
+ run: |
16
+ cmake -S. -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug
17
+ cmake --build build
18
+ - name: Run tests
19
+ run: |
20
+ cmake --build build --target check
21
+ test-fixed:
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - name: Checkout
25
+ uses: actions/checkout@v3
26
+ - name: Install
27
+ run: |
28
+ sudo apt-get install sox ninja-build
29
+ - name: Build
30
+ run: |
31
+ cmake -S. -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug -DFIXED_POINT=ON
32
+ cmake --build build
33
+ - name: Run tests
34
+ run: |
35
+ cmake --build build --target check
36
+ pytest:
37
+ runs-on: ubuntu-latest
38
+ steps:
39
+ - name: Checkout
40
+ uses: actions/checkout@v3
41
+ - name: Install
42
+ run: |
43
+ sudo apt-get install sox
44
+ python -m pip install --upgrade pip
45
+ pip install -r requirements.dev.txt
46
+ pip install .
47
+ - name: Run tests
48
+ run: pytest
.gitignore ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ build/
2
+ *~
3
+ .vscode/settings.json
4
+ *.egg-info
5
+ _skbuild
6
+ dist
7
+ MANIFEST
8
+ __pycache__
9
+ jsbuild
10
+ CMakeCache.txt
11
+ CMakeFiles
12
+ CTestTestfile.cmake
13
+ DartConfiguration.tcl
14
+ cmake_install.cmake
15
+
.readthedocs.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: 2
2
+
3
+ build:
4
+ os: ubuntu-22.04
5
+ tools:
6
+ python: "3.9"
7
+
8
+ sphinx:
9
+ configuration: docs/source/conf.py
10
+
11
+ python:
12
+ install:
13
+ - requirements: docs/requirements.txt
AUTHORS ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Fil Alleva
2
+ Robert Brennan
3
+ Hsiao-wen Hon
4
+ Ravishankar Mosur
5
+ Eric Thayer
6
+ Kevin Lenzo
7
+ Alan W Black
8
+ Evandro Gouvea
9
+ David Huggins-Daines
10
+ Alexander Solovets
11
+ Vyacheslav Klimkov
12
+
13
+ More! please help us get all the names.
CMakeLists.txt ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cmake_minimum_required(VERSION 3.14) # I like pie
2
+
3
+ project(PocketSphinx VERSION 5.0.0
4
+ DESCRIPTION "A small speech recognizer"
5
+ HOMEPAGE_URL "https://github.com/cmusphinx/pocketsphinx"
6
+ LANGUAGES C)
7
+ include(CMakePrintHelpers)
8
+ set(PACKAGE_NAME ${PROJECT_NAME})
9
+ string(TOLOWER ${PROJECT_NAME} PROJECT_SHORTNAME)
10
+ set(PACKAGE_VERSION ${PROJECT_VERSION})
11
+ set(PACKAGE_STRING "${PROJECT_NAME} ${PROJECT_VERSION}")
12
+ set(PACKAGE_TARNAME "${PROJECT_SHORTNAME}-${PROJECT_VERSION}")
13
+ set(PACKAGE_URL ${PROJECT_HOMEPAGE_URL})
14
+ set(PACKAGE_BUGREPORT dhdaines@gmail.com)
15
+
16
+ if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
17
+ include(CTest)
18
+ add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND})
19
+ endif()
20
+
21
+ include(CheckTypeSize)
22
+ include(CheckSymbolExists)
23
+ include(CheckLibraryExists)
24
+ include(TestBigEndian)
25
+ include(GNUInstallDirs)
26
+
27
+ CHECK_INCLUDE_FILE(unistd.h HAVE_UNISTD_H)
28
+ CHECK_INCLUDE_FILE(sys/types.h HAVE_SYS_TYPES_H)
29
+ CHECK_INCLUDE_FILE(sys/stat.h HAVE_SYS_STAT_H)
30
+ CHECK_INCLUDE_FILE(stdint.h HAVE_STDINT_H)
31
+ CHECK_SYMBOL_EXISTS(snprintf stdio.h HAVE_SNPRINTF)
32
+ CHECK_SYMBOL_EXISTS(popen stdio.h HAVE_POPEN)
33
+ CHECK_TYPE_SIZE(long LONG)
34
+ CHECK_TYPE_SIZE("long long" LONG_LONG)
35
+ # OMG CMake is so incredibly awful
36
+ set(SIZEOF_LONG ${LONG})
37
+ set(SIZEOF_LONG_LONG ${LONG_LONG})
38
+ cmake_print_variables(SIZEOF_LONG SIZEOF_LONG_LONG)
39
+ test_big_endian(WORDS_BIGENDIAN)
40
+ cmake_print_variables(WORDS_BIGENDIAN)
41
+
42
+ # Don't do this
43
+ #if(CMAKE_BUILD_TYPE STREQUAL Debug)
44
+ # set(SPHINX_DEBUG 1)
45
+ #endif()
46
+
47
+ # Compiles some code as the wrong endianness in order to ensure that
48
+ # it works properly
49
+ if(DEBUG_ENDIAN)
50
+ add_definitions(-DDEBUG_ENDIAN)
51
+ endif()
52
+ cmake_print_variables(SPHINX_DEBUG DEBUG_ENDIAN)
53
+
54
+ if(MSVC)
55
+ add_compile_options(/W3)
56
+ else()
57
+ add_compile_options(-Wall -Wextra)
58
+ endif()
59
+
60
+ option(FIXED_POINT "Build using fixed-point math" OFF)
61
+ if(NOT DEFAULT_RADIX)
62
+ set(DEFAULT_RADIX 12)
63
+ endif()
64
+ cmake_print_variables(FIXED_POINT DEFAULT_RADIX)
65
+
66
+ # Maybe not a great idea, but it does work on both Windows and Linux
67
+ set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
68
+ set (CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
69
+ set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
70
+
71
+ configure_file(config.h.in config.h)
72
+ configure_file(sphinx_config.h.in include/pocketsphinx/sphinx_config.h)
73
+ add_definitions(-DHAVE_CONFIG_H)
74
+
75
+ if(SKBUILD)
76
+ # Python build
77
+
78
+ # Allow compiling against systemwide libpocketsphinx.so for Docker
79
+ # or distribution packages
80
+ option(USE_INSTALLED_POCKETSPHINX "Build using installed PocketSphinx library" OFF)
81
+ if(USE_INSTALLED_POCKETSPHINX)
82
+ find_package(PkgConfig)
83
+ # Get the libraries and headers
84
+ pkg_check_modules(POCKETSPHINX pocketsphinx)
85
+ # Set the model directory to the systemwide one. Don't try to use
86
+ # CMAKE_INSTALL_FULL_DATADIR! That is not what you want.
87
+ pkg_get_variable(MODELDIR pocketsphinx modeldir)
88
+ else()
89
+ add_subdirectory(src)
90
+ endif()
91
+ add_subdirectory(cython)
92
+ else()
93
+ # C build
94
+
95
+ # Set the default model directory to the install location
96
+ set(MODELDIR ${CMAKE_INSTALL_FULL_DATADIR}/pocketsphinx/model)
97
+ option(BUILD_SHARED_LIBS "Build using shared libraries" OFF)
98
+ if(BUILD_SHARED_LIBS)
99
+ add_definitions(-DSPHINX_DLL)
100
+ endif()
101
+ add_subdirectory(src)
102
+ add_subdirectory(model)
103
+ add_subdirectory(doxygen)
104
+ add_subdirectory(programs)
105
+ add_subdirectory(examples)
106
+ if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME AND BUILD_TESTING)
107
+ add_subdirectory(test)
108
+ endif()
109
+ configure_file(pocketsphinx.pc.in pocketsphinx.pc @ONLY)
110
+ install(TARGETS pocketsphinx LIBRARY)
111
+ install(DIRECTORY include TYPE INCLUDE)
112
+ install(DIRECTORY ${CMAKE_BINARY_DIR}/include TYPE INCLUDE)
113
+ install(FILES ${CMAKE_BINARY_DIR}/pocketsphinx.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
114
+
115
+ option(BUILD_GSTREAMER "Build GStreamer plugin" OFF)
116
+ if(BUILD_GSTREAMER)
117
+ add_subdirectory(gst)
118
+ endif()
119
+ endif()
120
+
121
+ # Can print this at the end, just to know what it was
122
+ cmake_print_variables(MODELDIR)
Dockerfile ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM alpine:latest as runtime
2
+ RUN apk add --no-cache python3 py3-pip sox
3
+
4
+ FROM runtime as build
5
+ RUN apk add --no-cache cmake ninja gcc musl-dev python3-dev pkgconfig
6
+
7
+ COPY . /pocketsphinx
8
+ WORKDIR /pocketsphinx
9
+ RUN cmake -S . -B build -DBUILD_SHARED_LIBS=ON -G Ninja && cmake --build build --target install
10
+ # Cannot use --build-option because pip sucks
11
+ RUN CMAKE_ARGS="-DUSE_INSTALLED_POCKETSPHINX=ON" pip wheel -v .
12
+
13
+ FROM runtime
14
+ COPY --from=build /usr/local/ /usr/local/
15
+ COPY --from=build /pocketsphinx/*.whl /
16
+ RUN pip install /*.whl && rm /*.whl
17
+
18
+ RUN adduser -u 1000 -DHD pocketsphinx && adduser pocketsphinx audio
19
+ COPY examples/ /work/examples/
20
+ RUN chown -R pocketsphinx:pocketsphinx /work
21
+ USER pocketsphinx
22
+ WORKDIR /work
LICENSE ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Copyright (c) 1999-2016 Carnegie Mellon University. All rights
2
+ reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions
6
+ are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright
9
+ notice, this list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright
12
+ notice, this list of conditions and the following disclaimer in
13
+ the documentation and/or other materials provided with the
14
+ distribution.
15
+
16
+ This work was supported in part by funding from the Defense Advanced
17
+ Research Projects Agency and the National Science Foundation of the
18
+ United States of America, and the CMU Sphinx Speech Consortium.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND
21
+ ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY
24
+ NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
+
32
+ WebRTC VAD code (in src/vad):
33
+
34
+ Copyright (c) 2011, The WebRTC project authors. All rights reserved.
35
+
36
+ Redistribution and use in source and binary forms, with or without
37
+ modification, are permitted provided that the following conditions are
38
+ met:
39
+
40
+ * Redistributions of source code must retain the above copyright
41
+ notice, this list of conditions and the following disclaimer.
42
+
43
+ * Redistributions in binary form must reproduce the above copyright
44
+ notice, this list of conditions and the following disclaimer in
45
+ the documentation and/or other materials provided with the
46
+ distribution.
47
+
48
+ * Neither the name of Google nor the names of its contributors may
49
+ be used to endorse or promote products derived from this software
50
+ without specific prior written permission.
51
+
52
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63
+
64
+ Python WebRTC VAD code and test files (in cython and test/data/vad):
65
+
66
+ The MIT License (MIT)
67
+
68
+ Copyright (c) 2016 John Wiseman
69
+
70
+ Permission is hereby granted, free of charge, to any person obtaining a copy
71
+ of this software and associated documentation files (the "Software"), to deal
72
+ in the Software without restriction, including without limitation the rights
73
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
74
+ copies of the Software, and to permit persons to whom the Software is
75
+ furnished to do so, subject to the following conditions:
76
+
77
+ The above copyright notice and this permission notice shall be included in all
78
+ copies or substantial portions of the Software.
79
+
80
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
81
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
82
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
83
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
84
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
85
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
86
+ SOFTWARE.
87
+
88
+ JSON parser (in src/jsmn.h):
89
+
90
+ Copyright (c) 2010 Serge A. Zaitsev
91
+
92
+ Permission is hereby granted, free of charge, to any person obtaining a copy
93
+ of this software and associated documentation files (the "Software"), to deal
94
+ in the Software without restriction, including without limitation the rights
95
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
96
+ copies of the Software, and to permit persons to whom the Software is
97
+ furnished to do so, subject to the following conditions:
98
+
99
+ The above copyright notice and this permission notice shall be included in
100
+ all copies or substantial portions of the Software.
101
+
102
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
103
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
104
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
105
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
106
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
107
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
108
+ THE SOFTWARE.
109
+
110
+ Escaping code in JSON serialization (src/ps_config.c):
111
+
112
+ Copyright (C) 2014 James McLaughlin. All rights reserved.
113
+ https://github.com/udp/json-builder
114
+
115
+ Redistribution and use in source and binary forms, with or without
116
+ modification, are permitted provided that the following conditions
117
+ are met:
118
+
119
+ 1. Redistributions of source code must retain the above copyright
120
+ notice, this list of conditions and the following disclaimer.
121
+
122
+ 2. Redistributions in binary form must reproduce the above copyright
123
+ notice, this list of conditions and the following disclaimer in the
124
+ documentation and/or other materials provided with the distribution.
125
+
126
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
127
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
128
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
129
+ ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
130
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
131
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
132
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
133
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
134
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
135
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
136
+ SUCH DAMAGE.
MANIFEST.in ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ include AUTHORS
2
+ include CMakeLists.txt
3
+ include LICENSE
4
+ include NEWS
5
+ include README.md
6
+ include Dockerfile
7
+ include .dockerignore
8
+ include build_wheels.sh
9
+ include config.h.in
10
+ include pocketsphinx.pc.in
11
+ include indent.sh
12
+ include pyproject.toml
13
+ include requirements.dev.txt
14
+ include setup.cfg
15
+ include setup.py
16
+ include sphinx_config.h.in
17
+ recursive-include cython *
18
+ recursive-include gst *
19
+ recursive-include docs *
20
+ recursive-include doxygen *
21
+ recursive-include examples *
22
+ recursive-include include *
23
+ recursive-include model *
24
+ recursive-include programs *
25
+ recursive-include src *
26
+ recursive-include test *
27
+ exclude MANIFEST.in
28
+ exclude .readthedocs.yml
29
+ exclude .travis.yml
30
+ exclude .gitignore
31
+ exclude examples/simple
32
+ exclude examples/live
33
+ exclude examples/vad
34
+ recursive-exclude .github *
35
+ recursive-exclude _skbuild *
36
+ recursive-exclude build *
37
+ recursive-exclude docs/build *
38
+ recursive-exclude cython/pocketsphinx/model *
39
+ recursive-exclude cython/pocketsphinx.egg-info *
40
+ recursive-exclude * .gitignore
41
+ recursive-exclude * *.py[co]
42
+ recursive-exclude * *~
43
+ recursive-exclude * *.orig
44
+ recursive-exclude * *.DS_Store
45
+ recursive-exclude * __pycache__
46
+ recursive-exclude * *.so
47
+ recursive-exclude * *.egg-info
NEWS ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PocketSphinx 5.0.0
2
+ ^^^^^^^^^^^^^^^^^^
3
+
4
+ Not released yet!
5
+
6
+ Pocketsphinx 0.8
7
+ ^^^^^^^^^^^^^^^^
8
+
9
+ Thanks: Tanel Alumae, Douglas Bagnall, Halle Winkler, Peter Grasch, Vyacheslav Klimkov
10
+ Erik Andresen, Nicola Murino, Melmahdy, Scott Silliman, Riccardo Magliocchetti, Marc Legendre,
11
+ Kho-And-Mica, Zheng6822, Pankaj Pailwar, Evandro Gouvea
12
+
13
+ Improvements:
14
+ * API is better exposed in Python, SWIG and gstreamer
15
+ * New API for exact grammar match
16
+ * Configurable type for the frame counter, allows utterances way longer than 5 minutes
17
+
18
+ Fixes:
19
+ * Memory leaks, refcounting and other memory-related issues
20
+ * Use proper word bounary senones for the words added on the fly
21
+ * Accurate FSG lextree construction
22
+
23
+ Pocketsphinx 0.7
24
+ ^^^^^^^^^^^^^^^^
25
+
26
+ Thanks: David Huggins-Daines, Chen Tao, creative64, Edwin Miguel, Bhiksha Raj
27
+
28
+ Improvements:
29
+
30
+ * Nice performance improvements
31
+ * Use arc iterators to build FSG lextrees, speeds this up immensely
32
+ * Filler word propagation is responsible for 5% speedup
33
+ * Continuous decoder can decode files, not from the microphone
34
+ * Add senone score dumping and reloading capability
35
+ * Functional alignment pass
36
+ * Symbian support
37
+ * Add the Android makefile and other JNI stuff
38
+ * Case sensitive names, including phone names
39
+ * Better error messages
40
+ * Report timing for individual search passes
41
+
42
+ Bug fixes:
43
+
44
+ * Accuracy regression fixes
45
+ * Fixes the bug with reading transition matrix on big-endian platforms
46
+ * Fixes very important regression with NULL transitions in fsg search
47
+ * Proper acoustic score scaling during posterior calculation.
48
+
49
+ And many, many, many more intersting things!
50
+
51
+ Pocketsphinx pre
52
+ ^^^^^^^^^^^^^^^^
53
+
54
+ 2000-01-27 CMU Sphinx is going Open Source!
README.md ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PocketSphinx 5.0.0
2
+ ==================
3
+
4
+ This is PocketSphinx, one of Carnegie Mellon University's open source large
5
+ vocabulary, speaker-independent continuous speech recognition engines.
6
+
7
+ Although this was at one point a research system, active development
8
+ has largely ceased and it has become very, very far from the state of
9
+ the art. I am making a release, because people are nonetheless using
10
+ it, and there are a number of historical errors in the build system
11
+ and API which needed to be corrected.
12
+
13
+ The version number is strangely large because there was a "release"
14
+ that people are using called 5prealpha, and we will use proper
15
+ [semantic versioning](https://semver.org/) from now on.
16
+
17
+ **Please see the LICENSE file for terms of use.**
18
+
19
+ Installation
20
+ ------------
21
+
22
+ We now use CMake for building, which should give reasonable results
23
+ across Linux and Windows. Not certain about Mac OS X because I don't
24
+ have one of those. In addition, the audio library, which never really
25
+ built or worked correctly on any platform at all, has simply been
26
+ removed.
27
+
28
+ There is no longer any dependency on SphinxBase. There is no
29
+ SphinxBase anymore. This is not the SphinxBase you're looking for.
30
+ All your SphinxBase are belong to us.
31
+
32
+ To install the Python module in a virtual environment (replace
33
+ `~/ve_pocketsphinx` with the virtual environment you wish to create),
34
+ from the top level directory:
35
+
36
+ ```
37
+ python3 -m venv ~/ve_pocketsphinx
38
+ . ~/ve_pocketsphinx/bin/activate
39
+ pip install .
40
+ ```
41
+
42
+ To install the C library and bindings (assuming you have access to
43
+ /usr/local - if not, use `-DCMAKE_INSTALL_PREFIX` to set a different
44
+ prefix in the first `cmake` command below):
45
+
46
+ ```
47
+ cmake -S . -B build
48
+ cmake --build build
49
+ cmake --build build --target install
50
+ ```
51
+
52
+ Usage
53
+ -----
54
+
55
+ The `pocketsphinx` command-line program reads single-channel 16-bit
56
+ PCM audio from standard input or one or more files, and attemps to
57
+ recognize speech in it using the default acoustic and language model.
58
+ It accepts a large number of options which you probably don't care
59
+ about, a *command* which defaults to `live`, and one or more inputs
60
+ (except in `align` mode), or `-` to read from standard input.
61
+
62
+ If you have a single-channel WAV file called "speech.wav" and you want
63
+ to recognize speech in it, you can try doing this (the results may not
64
+ be wonderful):
65
+
66
+ pocketsphinx single speech.wav
67
+
68
+ If your input is in some other format I suggest converting it with
69
+ `sox` as described below.
70
+
71
+ The commands are as follows:
72
+
73
+ - `help`: Print a long list of those options you don't care about.
74
+
75
+ - `config`: Dump configuration as JSON to standard output (can be
76
+ loaded with the `-config` option).
77
+
78
+ - `live`: Detect speech segments in each input, run recognition
79
+ on them (using those options you don't care about), and write the
80
+ results to standard output in line-delimited JSON. I realize this
81
+ isn't the prettiest format, but it sure beats XML. Each line
82
+ contains a JSON object with these fields, which have short names
83
+ to make the lines more readable:
84
+
85
+ - `b`: Start time in seconds, from the beginning of the stream
86
+ - `d`: Duration in seconds
87
+ - `p`: Estimated probability of the recognition result, i.e. a
88
+ number between 0 and 1 representing the likelihood of the input
89
+ according to the model
90
+ - `t`: Full text of recognition result
91
+ - `w`: List of segments (usually words), each of which in turn
92
+ contains the `b`, `d`, `p`, and `t` fields, for start, end,
93
+ probability, and the text of the word. If `-phone_align yes`
94
+ has been passed, then a `w` field will be present containing
95
+ phone segmentations, in the same format.
96
+
97
+ - `single`: Recognize each input as a single utterance, and write a
98
+ JSON object in the same format described above.
99
+
100
+ - `align`: Align a single input file (or `-` for standard input) to
101
+ a word sequence, and write a JSON object in the same format
102
+ described above. The first positional argument is the input, and
103
+ all subsequent ones are concatenated to make the text, to avoid
104
+ surprises if you forget to quote it. You are responsible for
105
+ normalizing the text to remove punctuation, uppercase, centipedes,
106
+ etc. For example:
107
+
108
+ pocketsphinx align goforward.wav "go forward ten meters"
109
+
110
+ By default, only word-level alignment is done. To get phone
111
+ alignments, pass `-phone_align yes` in the flags, e.g.:
112
+
113
+ pocketsphinx -phone_align yes align audio.wav $text
114
+
115
+ This will make not particularly readable output, but you can use
116
+ [jq](https://stedolan.github.io/jq/) to clean it up. For example,
117
+ you can get just the word names and start times like this:
118
+
119
+ pocketsphinx align audio.wav $text | jq '.w[]|[.t,.b]'
120
+
121
+ Or you could get the phone names and durations like this:
122
+
123
+ pocketsphinx -phone_align yes align audio.wav $text | jq '.w[]|.w[]|[.t,.d]'
124
+
125
+ There are many, many other possibilities, of course.
126
+
127
+ - `soxflags`: Return arguments to `sox` which will create the
128
+ appropriate input format. Note that because the `sox`
129
+ command-line is slightly quirky these must always come *after* the
130
+ filename or `-d` (which tells `sox` to read from the microphone).
131
+ You can run live recognition like this:
132
+
133
+ sox -d $(pocketsphinx soxflags) | pocketsphinx -
134
+
135
+ or decode from a file named "audio.mp3" like this:
136
+
137
+ sox audio.mp3 $(pocketsphinx soxflags) | pocketsphinx -
138
+
139
+ By default only errors are printed to standard error, but if you want
140
+ more information you can pass `-loglevel INFO`. Partial results are
141
+ not printed, maybe they will be in the future, but don't hold your
142
+ breath.
143
+
144
+ Programming
145
+ -----------
146
+
147
+ For programming, see the [examples directory](./examples/) for a
148
+ number of examples of using the library from C and Python. You can
149
+ also read the [documentation for the Python
150
+ API](https://pocketsphinx.readthedocs.io) or [the C
151
+ API](https://cmusphinx.github.io/doc/pocketsphinx/)
152
+
153
+ Authors
154
+ -------
155
+
156
+ PocketSphinx is ultimately based on `Sphinx-II` which in turn was
157
+ based on some older systems at Carnegie Mellon University, which were
158
+ released as free software under a BSD-like license thanks to the
159
+ efforts of Kevin Lenzo. Much of the decoder in particular was written
160
+ by Ravishankar Mosur (look for "rkm" in the comments), but various
161
+ other people contributed as well, see [the AUTHORS file](./AUTHORS)
162
+ for more details.
163
+
164
+ David Huggins-Daines (the author of this document) is
165
+ guilty^H^H^H^H^Hresponsible for creating `PocketSphinx` which added
166
+ various speed and memory optimizations, fixed-point computation, JSGF
167
+ support, portability to various platforms, and a somewhat coherent
168
+ API. He then disappeared for a while.
169
+
170
+ Nickolay Shmyrev took over maintenance for quite a long time
171
+ afterwards, and a lot of code was contributed by Alexander Solovets,
172
+ Vyacheslav Klimkov, and others.
173
+
174
+ Currently this is maintained by David Huggins-Daines again.
build/CMakeCache.txt ADDED
@@ -0,0 +1,595 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This is the CMakeCache file.
2
+ # For build in directory: /content/pocketsphinx/build
3
+ # It was generated by CMake: /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake
4
+ # You can edit this file to change values found and used by cmake.
5
+ # If you do not want to change any of the values, simply exit the editor.
6
+ # If you do want to change a value, simply edit, save, and exit the editor.
7
+ # The syntax for the file is as follows:
8
+ # KEY:TYPE=VALUE
9
+ # KEY is the name of a variable in the cache.
10
+ # TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
11
+ # VALUE is the current value for the KEY.
12
+
13
+ ########################
14
+ # EXTERNAL cache entries
15
+ ########################
16
+
17
+ //Path to a program.
18
+ BASH_PROGRAM:FILEPATH=/bin/bash
19
+
20
+ //Build GStreamer plugin
21
+ BUILD_GSTREAMER:BOOL=OFF
22
+
23
+ //Build using shared libraries
24
+ BUILD_SHARED_LIBS:BOOL=OFF
25
+
26
+ //Build the testing tree.
27
+ BUILD_TESTING:BOOL=ON
28
+
29
+ //Path to a program.
30
+ CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
31
+
32
+ //Path to a program.
33
+ CMAKE_AR:FILEPATH=/usr/bin/ar
34
+
35
+ //Choose the type of build, options are: None Debug Release RelWithDebInfo
36
+ // MinSizeRel ...
37
+ CMAKE_BUILD_TYPE:STRING=
38
+
39
+ //Enable/Disable color output during build.
40
+ CMAKE_COLOR_MAKEFILE:BOOL=ON
41
+
42
+ //C compiler
43
+ CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
44
+
45
+ //A wrapper around 'ar' adding the appropriate '--plugin' option
46
+ // for the GCC compiler
47
+ CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7
48
+
49
+ //A wrapper around 'ranlib' adding the appropriate '--plugin' option
50
+ // for the GCC compiler
51
+ CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7
52
+
53
+ //Flags used by the C compiler during all build types.
54
+ CMAKE_C_FLAGS:STRING=
55
+
56
+ //Flags used by the C compiler during DEBUG builds.
57
+ CMAKE_C_FLAGS_DEBUG:STRING=-g
58
+
59
+ //Flags used by the C compiler during MINSIZEREL builds.
60
+ CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
61
+
62
+ //Flags used by the C compiler during RELEASE builds.
63
+ CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
64
+
65
+ //Flags used by the C compiler during RELWITHDEBINFO builds.
66
+ CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
67
+
68
+ //Path to a program.
69
+ CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
70
+
71
+ //Flags used by the linker during all build types.
72
+ CMAKE_EXE_LINKER_FLAGS:STRING=
73
+
74
+ //Flags used by the linker during DEBUG builds.
75
+ CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
76
+
77
+ //Flags used by the linker during MINSIZEREL builds.
78
+ CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
79
+
80
+ //Flags used by the linker during RELEASE builds.
81
+ CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
82
+
83
+ //Flags used by the linker during RELWITHDEBINFO builds.
84
+ CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
85
+
86
+ //Enable/Disable output of compile commands during generation.
87
+ CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
88
+
89
+ //User executables (bin)
90
+ CMAKE_INSTALL_BINDIR:PATH=bin
91
+
92
+ //Read-only architecture-independent data (DATAROOTDIR)
93
+ CMAKE_INSTALL_DATADIR:PATH=
94
+
95
+ //Read-only architecture-independent data root (share)
96
+ CMAKE_INSTALL_DATAROOTDIR:PATH=share
97
+
98
+ //Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
99
+ CMAKE_INSTALL_DOCDIR:PATH=
100
+
101
+ //C header files (include)
102
+ CMAKE_INSTALL_INCLUDEDIR:PATH=include
103
+
104
+ //Info documentation (DATAROOTDIR/info)
105
+ CMAKE_INSTALL_INFODIR:PATH=
106
+
107
+ //Object code libraries (lib)
108
+ CMAKE_INSTALL_LIBDIR:PATH=lib
109
+
110
+ //Program executables (libexec)
111
+ CMAKE_INSTALL_LIBEXECDIR:PATH=libexec
112
+
113
+ //Locale-dependent data (DATAROOTDIR/locale)
114
+ CMAKE_INSTALL_LOCALEDIR:PATH=
115
+
116
+ //Modifiable single-machine data (var)
117
+ CMAKE_INSTALL_LOCALSTATEDIR:PATH=var
118
+
119
+ //Man documentation (DATAROOTDIR/man)
120
+ CMAKE_INSTALL_MANDIR:PATH=
121
+
122
+ //C header files for non-gcc (/usr/include)
123
+ CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include
124
+
125
+ //Install path prefix, prepended onto install directories.
126
+ CMAKE_INSTALL_PREFIX:PATH=/usr/local
127
+
128
+ //Run-time variable data (LOCALSTATEDIR/run)
129
+ CMAKE_INSTALL_RUNSTATEDIR:PATH=
130
+
131
+ //System admin executables (sbin)
132
+ CMAKE_INSTALL_SBINDIR:PATH=sbin
133
+
134
+ //Modifiable architecture-independent data (com)
135
+ CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
136
+
137
+ //Read-only single-machine data (etc)
138
+ CMAKE_INSTALL_SYSCONFDIR:PATH=etc
139
+
140
+ //Path to a program.
141
+ CMAKE_LINKER:FILEPATH=/usr/bin/ld
142
+
143
+ //Path to a program.
144
+ CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
145
+
146
+ //Flags used by the linker during the creation of modules during
147
+ // all build types.
148
+ CMAKE_MODULE_LINKER_FLAGS:STRING=
149
+
150
+ //Flags used by the linker during the creation of modules during
151
+ // DEBUG builds.
152
+ CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
153
+
154
+ //Flags used by the linker during the creation of modules during
155
+ // MINSIZEREL builds.
156
+ CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
157
+
158
+ //Flags used by the linker during the creation of modules during
159
+ // RELEASE builds.
160
+ CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
161
+
162
+ //Flags used by the linker during the creation of modules during
163
+ // RELWITHDEBINFO builds.
164
+ CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
165
+
166
+ //Path to a program.
167
+ CMAKE_NM:FILEPATH=/usr/bin/nm
168
+
169
+ //Path to a program.
170
+ CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
171
+
172
+ //Path to a program.
173
+ CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
174
+
175
+ //Value Computed by CMake
176
+ CMAKE_PROJECT_DESCRIPTION:STATIC=A small speech recognizer
177
+
178
+ //Value Computed by CMake
179
+ CMAKE_PROJECT_HOMEPAGE_URL:STATIC=https://github.com/cmusphinx/pocketsphinx
180
+
181
+ //Value Computed by CMake
182
+ CMAKE_PROJECT_NAME:STATIC=PocketSphinx
183
+
184
+ //Value Computed by CMake
185
+ CMAKE_PROJECT_VERSION:STATIC=5.0.0
186
+
187
+ //Value Computed by CMake
188
+ CMAKE_PROJECT_VERSION_MAJOR:STATIC=5
189
+
190
+ //Value Computed by CMake
191
+ CMAKE_PROJECT_VERSION_MINOR:STATIC=0
192
+
193
+ //Value Computed by CMake
194
+ CMAKE_PROJECT_VERSION_PATCH:STATIC=0
195
+
196
+ //Value Computed by CMake
197
+ CMAKE_PROJECT_VERSION_TWEAK:STATIC=
198
+
199
+ //Path to a program.
200
+ CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
201
+
202
+ //Path to a program.
203
+ CMAKE_READELF:FILEPATH=/usr/bin/readelf
204
+
205
+ //Flags used by the linker during the creation of shared libraries
206
+ // during all build types.
207
+ CMAKE_SHARED_LINKER_FLAGS:STRING=
208
+
209
+ //Flags used by the linker during the creation of shared libraries
210
+ // during DEBUG builds.
211
+ CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
212
+
213
+ //Flags used by the linker during the creation of shared libraries
214
+ // during MINSIZEREL builds.
215
+ CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
216
+
217
+ //Flags used by the linker during the creation of shared libraries
218
+ // during RELEASE builds.
219
+ CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
220
+
221
+ //Flags used by the linker during the creation of shared libraries
222
+ // during RELWITHDEBINFO builds.
223
+ CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
224
+
225
+ //If set, runtime paths are not added when installing shared libraries,
226
+ // but are added when building.
227
+ CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
228
+
229
+ //If set, runtime paths are not added when using shared libraries.
230
+ CMAKE_SKIP_RPATH:BOOL=NO
231
+
232
+ //Flags used by the linker during the creation of static libraries
233
+ // during all build types.
234
+ CMAKE_STATIC_LINKER_FLAGS:STRING=
235
+
236
+ //Flags used by the linker during the creation of static libraries
237
+ // during DEBUG builds.
238
+ CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
239
+
240
+ //Flags used by the linker during the creation of static libraries
241
+ // during MINSIZEREL builds.
242
+ CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
243
+
244
+ //Flags used by the linker during the creation of static libraries
245
+ // during RELEASE builds.
246
+ CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
247
+
248
+ //Flags used by the linker during the creation of static libraries
249
+ // during RELWITHDEBINFO builds.
250
+ CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
251
+
252
+ //Path to a program.
253
+ CMAKE_STRIP:FILEPATH=/usr/bin/strip
254
+
255
+ //If this value is on, makefiles will be generated without the
256
+ // .SILENT directive, and all commands will be echoed to the console
257
+ // during the make. This is useful for debugging only. With Visual
258
+ // Studio IDE projects all commands are done without /nologo.
259
+ CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
260
+
261
+ //Path to the coverage program that CTest uses for performing coverage
262
+ // inspection
263
+ COVERAGE_COMMAND:FILEPATH=/usr/bin/gcov
264
+
265
+ //Extra command line flags to pass to the coverage tool
266
+ COVERAGE_EXTRA_FLAGS:STRING=-l
267
+
268
+ //How many times to retry timed-out CTest submissions.
269
+ CTEST_SUBMIT_RETRY_COUNT:STRING=3
270
+
271
+ //How long to wait between timed-out CTest submissions.
272
+ CTEST_SUBMIT_RETRY_DELAY:STRING=5
273
+
274
+ //Maximum time allowed before CTest will kill the test.
275
+ DART_TESTING_TIMEOUT:STRING=1500
276
+
277
+ //Dot tool for use with Doxygen
278
+ DOXYGEN_DOT_EXECUTABLE:FILEPATH=/usr/bin/dot
279
+
280
+ //Doxygen documentation generation tool (http://www.doxygen.org)
281
+ DOXYGEN_EXECUTABLE:FILEPATH=DOXYGEN_EXECUTABLE-NOTFOUND
282
+
283
+ //Build using fixed-point math
284
+ FIXED_POINT:BOOL=OFF
285
+
286
+ //Path to a program.
287
+ GITCOMMAND:FILEPATH=/usr/bin/git
288
+
289
+ //Command to build the project
290
+ MAKECOMMAND:STRING=/usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake --build . --config "${CTEST_CONFIGURATION_TYPE}"
291
+
292
+ //Path to a library.
293
+ MATH_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libm.so
294
+
295
+ //Path to the memory checking command, used for memory error detection.
296
+ MEMORYCHECK_COMMAND:FILEPATH=/usr/local/cuda/bin/cuda-memcheck
297
+
298
+ //File that contains suppressions for the memory checker
299
+ MEMORYCHECK_SUPPRESSIONS_FILE:FILEPATH=
300
+
301
+ //Arguments to supply to pkg-config
302
+ PKG_CONFIG_ARGN:STRING=
303
+
304
+ //pkg-config executable
305
+ PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config
306
+
307
+ //Value Computed by CMake
308
+ PocketSphinx_BINARY_DIR:STATIC=/content/pocketsphinx/build
309
+
310
+ //Value Computed by CMake
311
+ PocketSphinx_IS_TOP_LEVEL:STATIC=ON
312
+
313
+ //Value Computed by CMake
314
+ PocketSphinx_SOURCE_DIR:STATIC=/content/pocketsphinx
315
+
316
+ //The directory containing a CMake configuration file for PortAudio.
317
+ PortAudio_DIR:PATH=PortAudio_DIR-NOTFOUND
318
+
319
+ //Name of the computer/site where compile is being run
320
+ SITE:STRING=c74ee41928de
321
+
322
+ //The directory containing a CMake configuration file for portaudio.
323
+ portaudio_DIR:PATH=portaudio_DIR-NOTFOUND
324
+
325
+
326
+ ########################
327
+ # INTERNAL cache entries
328
+ ########################
329
+
330
+ //ADVANCED property for variable: CMAKE_ADDR2LINE
331
+ CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
332
+ //ADVANCED property for variable: CMAKE_AR
333
+ CMAKE_AR-ADVANCED:INTERNAL=1
334
+ //This is the directory where this CMakeCache.txt was created
335
+ CMAKE_CACHEFILE_DIR:INTERNAL=/content/pocketsphinx/build
336
+ //Major version of cmake used to create the current loaded cache
337
+ CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
338
+ //Minor version of cmake used to create the current loaded cache
339
+ CMAKE_CACHE_MINOR_VERSION:INTERNAL=22
340
+ //Patch version of cmake used to create the current loaded cache
341
+ CMAKE_CACHE_PATCH_VERSION:INTERNAL=6
342
+ //ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
343
+ CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
344
+ //Path to CMake executable.
345
+ CMAKE_COMMAND:INTERNAL=/usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake
346
+ //Path to cpack program executable.
347
+ CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/lib/python3.8/dist-packages/cmake/data/bin/cpack
348
+ //ADVANCED property for variable: CMAKE_CTEST_COMMAND
349
+ CMAKE_CTEST_COMMAND-ADVANCED:INTERNAL=1
350
+ //Path to ctest program executable.
351
+ CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/lib/python3.8/dist-packages/cmake/data/bin/ctest
352
+ //ADVANCED property for variable: CMAKE_C_COMPILER
353
+ CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
354
+ //ADVANCED property for variable: CMAKE_C_COMPILER_AR
355
+ CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
356
+ //ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
357
+ CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
358
+ //ADVANCED property for variable: CMAKE_C_FLAGS
359
+ CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
360
+ //ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
361
+ CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
362
+ //ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
363
+ CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
364
+ //ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
365
+ CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
366
+ //ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
367
+ CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
368
+ //ADVANCED property for variable: CMAKE_DLLTOOL
369
+ CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
370
+ //Executable file format
371
+ CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
372
+ //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
373
+ CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
374
+ //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
375
+ CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
376
+ //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
377
+ CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
378
+ //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
379
+ CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
380
+ //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
381
+ CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
382
+ //ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
383
+ CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
384
+ //Name of external makefile project generator.
385
+ CMAKE_EXTRA_GENERATOR:INTERNAL=
386
+ //Name of generator.
387
+ CMAKE_GENERATOR:INTERNAL=Unix Makefiles
388
+ //Generator instance identifier.
389
+ CMAKE_GENERATOR_INSTANCE:INTERNAL=
390
+ //Name of generator platform.
391
+ CMAKE_GENERATOR_PLATFORM:INTERNAL=
392
+ //Name of generator toolset.
393
+ CMAKE_GENERATOR_TOOLSET:INTERNAL=
394
+ //Source directory with the top level CMakeLists.txt file for this
395
+ // project
396
+ CMAKE_HOME_DIRECTORY:INTERNAL=/content/pocketsphinx
397
+ //ADVANCED property for variable: CMAKE_INSTALL_BINDIR
398
+ CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
399
+ //ADVANCED property for variable: CMAKE_INSTALL_DATADIR
400
+ CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
401
+ //ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
402
+ CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
403
+ //ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
404
+ CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
405
+ //ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
406
+ CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
407
+ //ADVANCED property for variable: CMAKE_INSTALL_INFODIR
408
+ CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
409
+ //ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
410
+ CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
411
+ //ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
412
+ CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
413
+ //ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
414
+ CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
415
+ //ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
416
+ CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
417
+ //ADVANCED property for variable: CMAKE_INSTALL_MANDIR
418
+ CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
419
+ //ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
420
+ CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
421
+ //ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
422
+ CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
423
+ //ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
424
+ CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
425
+ //ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
426
+ CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
427
+ //Install .so files without execute permission.
428
+ CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
429
+ //ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
430
+ CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
431
+ //ADVANCED property for variable: CMAKE_LINKER
432
+ CMAKE_LINKER-ADVANCED:INTERNAL=1
433
+ //ADVANCED property for variable: CMAKE_MAKE_PROGRAM
434
+ CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
435
+ //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
436
+ CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
437
+ //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
438
+ CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
439
+ //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
440
+ CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
441
+ //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
442
+ CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
443
+ //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
444
+ CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
445
+ //ADVANCED property for variable: CMAKE_NM
446
+ CMAKE_NM-ADVANCED:INTERNAL=1
447
+ //number of local generators
448
+ CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=19
449
+ //ADVANCED property for variable: CMAKE_OBJCOPY
450
+ CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
451
+ //ADVANCED property for variable: CMAKE_OBJDUMP
452
+ CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
453
+ //Platform information initialized
454
+ CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
455
+ //ADVANCED property for variable: CMAKE_RANLIB
456
+ CMAKE_RANLIB-ADVANCED:INTERNAL=1
457
+ //ADVANCED property for variable: CMAKE_READELF
458
+ CMAKE_READELF-ADVANCED:INTERNAL=1
459
+ //Path to CMake installation.
460
+ CMAKE_ROOT:INTERNAL=/usr/local/lib/python3.8/dist-packages/cmake/data/share/cmake-3.22
461
+ //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
462
+ CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
463
+ //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
464
+ CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
465
+ //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
466
+ CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
467
+ //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
468
+ CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
469
+ //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
470
+ CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
471
+ //ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
472
+ CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
473
+ //ADVANCED property for variable: CMAKE_SKIP_RPATH
474
+ CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
475
+ //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
476
+ CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
477
+ //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
478
+ CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
479
+ //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
480
+ CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
481
+ //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
482
+ CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
483
+ //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
484
+ CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
485
+ //ADVANCED property for variable: CMAKE_STRIP
486
+ CMAKE_STRIP-ADVANCED:INTERNAL=1
487
+ //uname command
488
+ CMAKE_UNAME:INTERNAL=/bin/uname
489
+ //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
490
+ CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
491
+ //ADVANCED property for variable: COVERAGE_COMMAND
492
+ COVERAGE_COMMAND-ADVANCED:INTERNAL=1
493
+ //ADVANCED property for variable: COVERAGE_EXTRA_FLAGS
494
+ COVERAGE_EXTRA_FLAGS-ADVANCED:INTERNAL=1
495
+ //ADVANCED property for variable: CTEST_SUBMIT_RETRY_COUNT
496
+ CTEST_SUBMIT_RETRY_COUNT-ADVANCED:INTERNAL=1
497
+ //ADVANCED property for variable: CTEST_SUBMIT_RETRY_DELAY
498
+ CTEST_SUBMIT_RETRY_DELAY-ADVANCED:INTERNAL=1
499
+ //ADVANCED property for variable: DART_TESTING_TIMEOUT
500
+ DART_TESTING_TIMEOUT-ADVANCED:INTERNAL=1
501
+ //ADVANCED property for variable: DOXYGEN_DOT_EXECUTABLE
502
+ DOXYGEN_DOT_EXECUTABLE-ADVANCED:INTERNAL=1
503
+ //ADVANCED property for variable: DOXYGEN_EXECUTABLE
504
+ DOXYGEN_EXECUTABLE-ADVANCED:INTERNAL=1
505
+ //ADVANCED property for variable: GITCOMMAND
506
+ GITCOMMAND-ADVANCED:INTERNAL=1
507
+ //Result of TRY_COMPILE
508
+ HAVE_LONG:INTERNAL=TRUE
509
+ //Result of TRY_COMPILE
510
+ HAVE_LONG_LONG:INTERNAL=TRUE
511
+ //Have symbol popen
512
+ HAVE_POPEN:INTERNAL=1
513
+ //Have symbol snprintf
514
+ HAVE_SNPRINTF:INTERNAL=1
515
+ //Have include stddef.h
516
+ HAVE_STDDEF_H:INTERNAL=1
517
+ //Have include stdint.h
518
+ HAVE_STDINT_H:INTERNAL=1
519
+ //Have include sys/stat.h
520
+ HAVE_SYS_STAT_H:INTERNAL=1
521
+ //Have include sys/types.h
522
+ HAVE_SYS_TYPES_H:INTERNAL=1
523
+ //Have include unistd.h
524
+ HAVE_UNISTD_H:INTERNAL=1
525
+ //CHECK_TYPE_SIZE: sizeof(long)
526
+ LONG:INTERNAL=8
527
+ //CHECK_TYPE_SIZE: sizeof(long long)
528
+ LONG_LONG:INTERNAL=8
529
+ //ADVANCED property for variable: MAKECOMMAND
530
+ MAKECOMMAND-ADVANCED:INTERNAL=1
531
+ //ADVANCED property for variable: MEMORYCHECK_COMMAND
532
+ MEMORYCHECK_COMMAND-ADVANCED:INTERNAL=1
533
+ //ADVANCED property for variable: MEMORYCHECK_SUPPRESSIONS_FILE
534
+ MEMORYCHECK_SUPPRESSIONS_FILE-ADVANCED:INTERNAL=1
535
+ //ADVANCED property for variable: PKG_CONFIG_ARGN
536
+ PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1
537
+ //ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
538
+ PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
539
+ PORTAUDIO_CFLAGS:INTERNAL=
540
+ PORTAUDIO_CFLAGS_I:INTERNAL=
541
+ PORTAUDIO_CFLAGS_OTHER:INTERNAL=
542
+ PORTAUDIO_FOUND:INTERNAL=
543
+ PORTAUDIO_INCLUDEDIR:INTERNAL=
544
+ PORTAUDIO_LIBDIR:INTERNAL=
545
+ PORTAUDIO_LIBS:INTERNAL=
546
+ PORTAUDIO_LIBS_L:INTERNAL=
547
+ PORTAUDIO_LIBS_OTHER:INTERNAL=
548
+ PORTAUDIO_LIBS_PATHS:INTERNAL=
549
+ PORTAUDIO_MODULE_NAME:INTERNAL=
550
+ PORTAUDIO_PREFIX:INTERNAL=
551
+ PORTAUDIO_STATIC_CFLAGS:INTERNAL=
552
+ PORTAUDIO_STATIC_CFLAGS_I:INTERNAL=
553
+ PORTAUDIO_STATIC_CFLAGS_OTHER:INTERNAL=
554
+ PORTAUDIO_STATIC_LIBDIR:INTERNAL=
555
+ PORTAUDIO_STATIC_LIBS:INTERNAL=
556
+ PORTAUDIO_STATIC_LIBS_L:INTERNAL=
557
+ PORTAUDIO_STATIC_LIBS_OTHER:INTERNAL=
558
+ PORTAUDIO_STATIC_LIBS_PATHS:INTERNAL=
559
+ PORTAUDIO_VERSION:INTERNAL=
560
+ PORTAUDIO_portaudio-2.0_INCLUDEDIR:INTERNAL=
561
+ PORTAUDIO_portaudio-2.0_LIBDIR:INTERNAL=
562
+ PORTAUDIO_portaudio-2.0_PREFIX:INTERNAL=
563
+ PORTAUDIO_portaudio-2.0_VERSION:INTERNAL=
564
+ PULSEAUDIO_CFLAGS:INTERNAL=
565
+ PULSEAUDIO_CFLAGS_I:INTERNAL=
566
+ PULSEAUDIO_CFLAGS_OTHER:INTERNAL=
567
+ PULSEAUDIO_FOUND:INTERNAL=
568
+ PULSEAUDIO_INCLUDEDIR:INTERNAL=
569
+ PULSEAUDIO_LIBDIR:INTERNAL=
570
+ PULSEAUDIO_LIBS:INTERNAL=
571
+ PULSEAUDIO_LIBS_L:INTERNAL=
572
+ PULSEAUDIO_LIBS_OTHER:INTERNAL=
573
+ PULSEAUDIO_LIBS_PATHS:INTERNAL=
574
+ PULSEAUDIO_MODULE_NAME:INTERNAL=
575
+ PULSEAUDIO_PREFIX:INTERNAL=
576
+ PULSEAUDIO_STATIC_CFLAGS:INTERNAL=
577
+ PULSEAUDIO_STATIC_CFLAGS_I:INTERNAL=
578
+ PULSEAUDIO_STATIC_CFLAGS_OTHER:INTERNAL=
579
+ PULSEAUDIO_STATIC_LIBDIR:INTERNAL=
580
+ PULSEAUDIO_STATIC_LIBS:INTERNAL=
581
+ PULSEAUDIO_STATIC_LIBS_L:INTERNAL=
582
+ PULSEAUDIO_STATIC_LIBS_OTHER:INTERNAL=
583
+ PULSEAUDIO_STATIC_LIBS_PATHS:INTERNAL=
584
+ PULSEAUDIO_VERSION:INTERNAL=
585
+ PULSEAUDIO_libpulse-simple_INCLUDEDIR:INTERNAL=
586
+ PULSEAUDIO_libpulse-simple_LIBDIR:INTERNAL=
587
+ PULSEAUDIO_libpulse-simple_PREFIX:INTERNAL=
588
+ PULSEAUDIO_libpulse-simple_VERSION:INTERNAL=
589
+ //ADVANCED property for variable: SITE
590
+ SITE-ADVANCED:INTERNAL=1
591
+ //CMAKE_INSTALL_PREFIX during last run
592
+ _GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local
593
+ __pkg_config_checked_PORTAUDIO:INTERNAL=1
594
+ __pkg_config_checked_PULSEAUDIO:INTERNAL=1
595
+
build/CMakeFiles/3.22.6/CMakeCCompiler.cmake ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ set(CMAKE_C_COMPILER "/usr/bin/cc")
2
+ set(CMAKE_C_COMPILER_ARG1 "")
3
+ set(CMAKE_C_COMPILER_ID "GNU")
4
+ set(CMAKE_C_COMPILER_VERSION "7.5.0")
5
+ set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
6
+ set(CMAKE_C_COMPILER_WRAPPER "")
7
+ set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
8
+ set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
9
+ set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert")
10
+ set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
11
+ set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
12
+ set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
13
+ set(CMAKE_C17_COMPILE_FEATURES "")
14
+ set(CMAKE_C23_COMPILE_FEATURES "")
15
+
16
+ set(CMAKE_C_PLATFORM_ID "Linux")
17
+ set(CMAKE_C_SIMULATE_ID "")
18
+ set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
19
+ set(CMAKE_C_SIMULATE_VERSION "")
20
+
21
+
22
+
23
+
24
+ set(CMAKE_AR "/usr/bin/ar")
25
+ set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-7")
26
+ set(CMAKE_RANLIB "/usr/bin/ranlib")
27
+ set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7")
28
+ set(CMAKE_LINKER "/usr/bin/ld")
29
+ set(CMAKE_MT "")
30
+ set(CMAKE_COMPILER_IS_GNUCC 1)
31
+ set(CMAKE_C_COMPILER_LOADED 1)
32
+ set(CMAKE_C_COMPILER_WORKS TRUE)
33
+ set(CMAKE_C_ABI_COMPILED TRUE)
34
+
35
+ set(CMAKE_C_COMPILER_ENV_VAR "CC")
36
+
37
+ set(CMAKE_C_COMPILER_ID_RUN 1)
38
+ set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
39
+ set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
40
+ set(CMAKE_C_LINKER_PREFERENCE 10)
41
+
42
+ # Save compiler ABI information.
43
+ set(CMAKE_C_SIZEOF_DATA_PTR "8")
44
+ set(CMAKE_C_COMPILER_ABI "ELF")
45
+ set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
46
+ set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
47
+
48
+ if(CMAKE_C_SIZEOF_DATA_PTR)
49
+ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
50
+ endif()
51
+
52
+ if(CMAKE_C_COMPILER_ABI)
53
+ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
54
+ endif()
55
+
56
+ if(CMAKE_C_LIBRARY_ARCHITECTURE)
57
+ set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
58
+ endif()
59
+
60
+ set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
61
+ if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
62
+ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
63
+ endif()
64
+
65
+
66
+
67
+
68
+
69
+ set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include")
70
+ set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
71
+ set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib;/usr/local/cuda/lib64/stubs")
72
+ set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
build/CMakeFiles/3.22.6/CMakeDetermineCompilerABI_C.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:142beb1b73ef99e29a5daaa4e8e75dda502bdff2abd0d306166ac4dc55754a09
3
+ size 8360
build/CMakeFiles/3.22.6/CMakeSystem.cmake ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ set(CMAKE_HOST_SYSTEM "Linux-5.10.147+")
2
+ set(CMAKE_HOST_SYSTEM_NAME "Linux")
3
+ set(CMAKE_HOST_SYSTEM_VERSION "5.10.147+")
4
+ set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
5
+
6
+
7
+
8
+ set(CMAKE_SYSTEM "Linux-5.10.147+")
9
+ set(CMAKE_SYSTEM_NAME "Linux")
10
+ set(CMAKE_SYSTEM_VERSION "5.10.147+")
11
+ set(CMAKE_SYSTEM_PROCESSOR "x86_64")
12
+
13
+ set(CMAKE_CROSSCOMPILING "FALSE")
14
+
15
+ set(CMAKE_SYSTEM_LOADED 1)
build/CMakeFiles/3.22.6/CompilerIdC/CMakeCCompilerId.c ADDED
@@ -0,0 +1,802 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #ifdef __cplusplus
2
+ # error "A C++ compiler has been selected for C."
3
+ #endif
4
+
5
+ #if defined(__18CXX)
6
+ # define ID_VOID_MAIN
7
+ #endif
8
+ #if defined(__CLASSIC_C__)
9
+ /* cv-qualifiers did not exist in K&R C */
10
+ # define const
11
+ # define volatile
12
+ #endif
13
+
14
+ #if !defined(__has_include)
15
+ /* If the compiler does not have __has_include, pretend the answer is
16
+ always no. */
17
+ # define __has_include(x) 0
18
+ #endif
19
+
20
+
21
+ /* Version number components: V=Version, R=Revision, P=Patch
22
+ Version date components: YYYY=Year, MM=Month, DD=Day */
23
+
24
+ #if defined(__INTEL_COMPILER) || defined(__ICC)
25
+ # define COMPILER_ID "Intel"
26
+ # if defined(_MSC_VER)
27
+ # define SIMULATE_ID "MSVC"
28
+ # endif
29
+ # if defined(__GNUC__)
30
+ # define SIMULATE_ID "GNU"
31
+ # endif
32
+ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
33
+ except that a few beta releases use the old format with V=2021. */
34
+ # if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
35
+ # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
36
+ # define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
37
+ # if defined(__INTEL_COMPILER_UPDATE)
38
+ # define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
39
+ # else
40
+ # define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
41
+ # endif
42
+ # else
43
+ # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
44
+ # define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
45
+ /* The third version component from --version is an update index,
46
+ but no macro is provided for it. */
47
+ # define COMPILER_VERSION_PATCH DEC(0)
48
+ # endif
49
+ # if defined(__INTEL_COMPILER_BUILD_DATE)
50
+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
51
+ # define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
52
+ # endif
53
+ # if defined(_MSC_VER)
54
+ /* _MSC_VER = VVRR */
55
+ # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
56
+ # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
57
+ # endif
58
+ # if defined(__GNUC__)
59
+ # define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
60
+ # elif defined(__GNUG__)
61
+ # define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
62
+ # endif
63
+ # if defined(__GNUC_MINOR__)
64
+ # define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
65
+ # endif
66
+ # if defined(__GNUC_PATCHLEVEL__)
67
+ # define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
68
+ # endif
69
+
70
+ #elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
71
+ # define COMPILER_ID "IntelLLVM"
72
+ #if defined(_MSC_VER)
73
+ # define SIMULATE_ID "MSVC"
74
+ #endif
75
+ #if defined(__GNUC__)
76
+ # define SIMULATE_ID "GNU"
77
+ #endif
78
+ /* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
79
+ * later. Look for 6 digit vs. 8 digit version number to decide encoding.
80
+ * VVVV is no smaller than the current year when a version is released.
81
+ */
82
+ #if __INTEL_LLVM_COMPILER < 1000000L
83
+ # define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
84
+ # define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
85
+ # define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
86
+ #else
87
+ # define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
88
+ # define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
89
+ # define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
90
+ #endif
91
+ #if defined(_MSC_VER)
92
+ /* _MSC_VER = VVRR */
93
+ # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
94
+ # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
95
+ #endif
96
+ #if defined(__GNUC__)
97
+ # define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
98
+ #elif defined(__GNUG__)
99
+ # define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
100
+ #endif
101
+ #if defined(__GNUC_MINOR__)
102
+ # define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
103
+ #endif
104
+ #if defined(__GNUC_PATCHLEVEL__)
105
+ # define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
106
+ #endif
107
+
108
+ #elif defined(__PATHCC__)
109
+ # define COMPILER_ID "PathScale"
110
+ # define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
111
+ # define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
112
+ # if defined(__PATHCC_PATCHLEVEL__)
113
+ # define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
114
+ # endif
115
+
116
+ #elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
117
+ # define COMPILER_ID "Embarcadero"
118
+ # define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
119
+ # define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
120
+ # define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
121
+
122
+ #elif defined(__BORLANDC__)
123
+ # define COMPILER_ID "Borland"
124
+ /* __BORLANDC__ = 0xVRR */
125
+ # define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
126
+ # define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
127
+
128
+ #elif defined(__WATCOMC__) && __WATCOMC__ < 1200
129
+ # define COMPILER_ID "Watcom"
130
+ /* __WATCOMC__ = VVRR */
131
+ # define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
132
+ # define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
133
+ # if (__WATCOMC__ % 10) > 0
134
+ # define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
135
+ # endif
136
+
137
+ #elif defined(__WATCOMC__)
138
+ # define COMPILER_ID "OpenWatcom"
139
+ /* __WATCOMC__ = VVRP + 1100 */
140
+ # define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
141
+ # define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
142
+ # if (__WATCOMC__ % 10) > 0
143
+ # define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
144
+ # endif
145
+
146
+ #elif defined(__SUNPRO_C)
147
+ # define COMPILER_ID "SunPro"
148
+ # if __SUNPRO_C >= 0x5100
149
+ /* __SUNPRO_C = 0xVRRP */
150
+ # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
151
+ # define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
152
+ # define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
153
+ # else
154
+ /* __SUNPRO_CC = 0xVRP */
155
+ # define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
156
+ # define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
157
+ # define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
158
+ # endif
159
+
160
+ #elif defined(__HP_cc)
161
+ # define COMPILER_ID "HP"
162
+ /* __HP_cc = VVRRPP */
163
+ # define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
164
+ # define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
165
+ # define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
166
+
167
+ #elif defined(__DECC)
168
+ # define COMPILER_ID "Compaq"
169
+ /* __DECC_VER = VVRRTPPPP */
170
+ # define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
171
+ # define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
172
+ # define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
173
+
174
+ #elif defined(__IBMC__) && defined(__COMPILER_VER__)
175
+ # define COMPILER_ID "zOS"
176
+ /* __IBMC__ = VRP */
177
+ # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
178
+ # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
179
+ # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
180
+
181
+ #elif defined(__ibmxl__) && defined(__clang__)
182
+ # define COMPILER_ID "XLClang"
183
+ # define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
184
+ # define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
185
+ # define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
186
+ # define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
187
+
188
+
189
+ #elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
190
+ # define COMPILER_ID "XL"
191
+ /* __IBMC__ = VRP */
192
+ # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
193
+ # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
194
+ # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
195
+
196
+ #elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
197
+ # define COMPILER_ID "VisualAge"
198
+ /* __IBMC__ = VRP */
199
+ # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
200
+ # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
201
+ # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
202
+
203
+ #elif defined(__NVCOMPILER)
204
+ # define COMPILER_ID "NVHPC"
205
+ # define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
206
+ # define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
207
+ # if defined(__NVCOMPILER_PATCHLEVEL__)
208
+ # define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
209
+ # endif
210
+
211
+ #elif defined(__PGI)
212
+ # define COMPILER_ID "PGI"
213
+ # define COMPILER_VERSION_MAJOR DEC(__PGIC__)
214
+ # define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
215
+ # if defined(__PGIC_PATCHLEVEL__)
216
+ # define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
217
+ # endif
218
+
219
+ #elif defined(_CRAYC)
220
+ # define COMPILER_ID "Cray"
221
+ # define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
222
+ # define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
223
+
224
+ #elif defined(__TI_COMPILER_VERSION__)
225
+ # define COMPILER_ID "TI"
226
+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
227
+ # define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
228
+ # define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
229
+ # define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
230
+
231
+ #elif defined(__CLANG_FUJITSU)
232
+ # define COMPILER_ID "FujitsuClang"
233
+ # define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
234
+ # define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
235
+ # define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
236
+ # define COMPILER_VERSION_INTERNAL_STR __clang_version__
237
+
238
+
239
+ #elif defined(__FUJITSU)
240
+ # define COMPILER_ID "Fujitsu"
241
+ # if defined(__FCC_version__)
242
+ # define COMPILER_VERSION __FCC_version__
243
+ # elif defined(__FCC_major__)
244
+ # define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
245
+ # define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
246
+ # define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
247
+ # endif
248
+ # if defined(__fcc_version)
249
+ # define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
250
+ # elif defined(__FCC_VERSION)
251
+ # define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
252
+ # endif
253
+
254
+
255
+ #elif defined(__ghs__)
256
+ # define COMPILER_ID "GHS"
257
+ /* __GHS_VERSION_NUMBER = VVVVRP */
258
+ # ifdef __GHS_VERSION_NUMBER
259
+ # define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
260
+ # define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
261
+ # define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
262
+ # endif
263
+
264
+ #elif defined(__TINYC__)
265
+ # define COMPILER_ID "TinyCC"
266
+
267
+ #elif defined(__BCC__)
268
+ # define COMPILER_ID "Bruce"
269
+
270
+ #elif defined(__SCO_VERSION__)
271
+ # define COMPILER_ID "SCO"
272
+
273
+ #elif defined(__ARMCC_VERSION) && !defined(__clang__)
274
+ # define COMPILER_ID "ARMCC"
275
+ #if __ARMCC_VERSION >= 1000000
276
+ /* __ARMCC_VERSION = VRRPPPP */
277
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
278
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
279
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
280
+ #else
281
+ /* __ARMCC_VERSION = VRPPPP */
282
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
283
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
284
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
285
+ #endif
286
+
287
+
288
+ #elif defined(__clang__) && defined(__apple_build_version__)
289
+ # define COMPILER_ID "AppleClang"
290
+ # if defined(_MSC_VER)
291
+ # define SIMULATE_ID "MSVC"
292
+ # endif
293
+ # define COMPILER_VERSION_MAJOR DEC(__clang_major__)
294
+ # define COMPILER_VERSION_MINOR DEC(__clang_minor__)
295
+ # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
296
+ # if defined(_MSC_VER)
297
+ /* _MSC_VER = VVRR */
298
+ # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
299
+ # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
300
+ # endif
301
+ # define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
302
+
303
+ #elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
304
+ # define COMPILER_ID "ARMClang"
305
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
306
+ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
307
+ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
308
+ # define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
309
+
310
+ #elif defined(__clang__)
311
+ # define COMPILER_ID "Clang"
312
+ # if defined(_MSC_VER)
313
+ # define SIMULATE_ID "MSVC"
314
+ # endif
315
+ # define COMPILER_VERSION_MAJOR DEC(__clang_major__)
316
+ # define COMPILER_VERSION_MINOR DEC(__clang_minor__)
317
+ # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
318
+ # if defined(_MSC_VER)
319
+ /* _MSC_VER = VVRR */
320
+ # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
321
+ # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
322
+ # endif
323
+
324
+ #elif defined(__GNUC__)
325
+ # define COMPILER_ID "GNU"
326
+ # define COMPILER_VERSION_MAJOR DEC(__GNUC__)
327
+ # if defined(__GNUC_MINOR__)
328
+ # define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
329
+ # endif
330
+ # if defined(__GNUC_PATCHLEVEL__)
331
+ # define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
332
+ # endif
333
+
334
+ #elif defined(_MSC_VER)
335
+ # define COMPILER_ID "MSVC"
336
+ /* _MSC_VER = VVRR */
337
+ # define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
338
+ # define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
339
+ # if defined(_MSC_FULL_VER)
340
+ # if _MSC_VER >= 1400
341
+ /* _MSC_FULL_VER = VVRRPPPPP */
342
+ # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
343
+ # else
344
+ /* _MSC_FULL_VER = VVRRPPPP */
345
+ # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
346
+ # endif
347
+ # endif
348
+ # if defined(_MSC_BUILD)
349
+ # define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
350
+ # endif
351
+
352
+ #elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
353
+ # define COMPILER_ID "ADSP"
354
+ #if defined(__VISUALDSPVERSION__)
355
+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
356
+ # define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
357
+ # define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
358
+ # define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
359
+ #endif
360
+
361
+ #elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
362
+ # define COMPILER_ID "IAR"
363
+ # if defined(__VER__) && defined(__ICCARM__)
364
+ # define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
365
+ # define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
366
+ # define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
367
+ # define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
368
+ # elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
369
+ # define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
370
+ # define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
371
+ # define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
372
+ # define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
373
+ # endif
374
+
375
+ #elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
376
+ # define COMPILER_ID "SDCC"
377
+ # if defined(__SDCC_VERSION_MAJOR)
378
+ # define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
379
+ # define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
380
+ # define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
381
+ # else
382
+ /* SDCC = VRP */
383
+ # define COMPILER_VERSION_MAJOR DEC(SDCC/100)
384
+ # define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
385
+ # define COMPILER_VERSION_PATCH DEC(SDCC % 10)
386
+ # endif
387
+
388
+
389
+ /* These compilers are either not known or too old to define an
390
+ identification macro. Try to identify the platform and guess that
391
+ it is the native compiler. */
392
+ #elif defined(__hpux) || defined(__hpua)
393
+ # define COMPILER_ID "HP"
394
+
395
+ #else /* unknown compiler */
396
+ # define COMPILER_ID ""
397
+ #endif
398
+
399
+ /* Construct the string literal in pieces to prevent the source from
400
+ getting matched. Store it in a pointer rather than an array
401
+ because some compilers will just produce instructions to fill the
402
+ array rather than assigning a pointer to a static array. */
403
+ char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
404
+ #ifdef SIMULATE_ID
405
+ char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
406
+ #endif
407
+
408
+ #ifdef __QNXNTO__
409
+ char const* qnxnto = "INFO" ":" "qnxnto[]";
410
+ #endif
411
+
412
+ #if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
413
+ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
414
+ #endif
415
+
416
+ #define STRINGIFY_HELPER(X) #X
417
+ #define STRINGIFY(X) STRINGIFY_HELPER(X)
418
+
419
+ /* Identify known platforms by name. */
420
+ #if defined(__linux) || defined(__linux__) || defined(linux)
421
+ # define PLATFORM_ID "Linux"
422
+
423
+ #elif defined(__MSYS__)
424
+ # define PLATFORM_ID "MSYS"
425
+
426
+ #elif defined(__CYGWIN__)
427
+ # define PLATFORM_ID "Cygwin"
428
+
429
+ #elif defined(__MINGW32__)
430
+ # define PLATFORM_ID "MinGW"
431
+
432
+ #elif defined(__APPLE__)
433
+ # define PLATFORM_ID "Darwin"
434
+
435
+ #elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
436
+ # define PLATFORM_ID "Windows"
437
+
438
+ #elif defined(__FreeBSD__) || defined(__FreeBSD)
439
+ # define PLATFORM_ID "FreeBSD"
440
+
441
+ #elif defined(__NetBSD__) || defined(__NetBSD)
442
+ # define PLATFORM_ID "NetBSD"
443
+
444
+ #elif defined(__OpenBSD__) || defined(__OPENBSD)
445
+ # define PLATFORM_ID "OpenBSD"
446
+
447
+ #elif defined(__sun) || defined(sun)
448
+ # define PLATFORM_ID "SunOS"
449
+
450
+ #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
451
+ # define PLATFORM_ID "AIX"
452
+
453
+ #elif defined(__hpux) || defined(__hpux__)
454
+ # define PLATFORM_ID "HP-UX"
455
+
456
+ #elif defined(__HAIKU__)
457
+ # define PLATFORM_ID "Haiku"
458
+
459
+ #elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
460
+ # define PLATFORM_ID "BeOS"
461
+
462
+ #elif defined(__QNX__) || defined(__QNXNTO__)
463
+ # define PLATFORM_ID "QNX"
464
+
465
+ #elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
466
+ # define PLATFORM_ID "Tru64"
467
+
468
+ #elif defined(__riscos) || defined(__riscos__)
469
+ # define PLATFORM_ID "RISCos"
470
+
471
+ #elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
472
+ # define PLATFORM_ID "SINIX"
473
+
474
+ #elif defined(__UNIX_SV__)
475
+ # define PLATFORM_ID "UNIX_SV"
476
+
477
+ #elif defined(__bsdos__)
478
+ # define PLATFORM_ID "BSDOS"
479
+
480
+ #elif defined(_MPRAS) || defined(MPRAS)
481
+ # define PLATFORM_ID "MP-RAS"
482
+
483
+ #elif defined(__osf) || defined(__osf__)
484
+ # define PLATFORM_ID "OSF1"
485
+
486
+ #elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
487
+ # define PLATFORM_ID "SCO_SV"
488
+
489
+ #elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
490
+ # define PLATFORM_ID "ULTRIX"
491
+
492
+ #elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
493
+ # define PLATFORM_ID "Xenix"
494
+
495
+ #elif defined(__WATCOMC__)
496
+ # if defined(__LINUX__)
497
+ # define PLATFORM_ID "Linux"
498
+
499
+ # elif defined(__DOS__)
500
+ # define PLATFORM_ID "DOS"
501
+
502
+ # elif defined(__OS2__)
503
+ # define PLATFORM_ID "OS2"
504
+
505
+ # elif defined(__WINDOWS__)
506
+ # define PLATFORM_ID "Windows3x"
507
+
508
+ # elif defined(__VXWORKS__)
509
+ # define PLATFORM_ID "VxWorks"
510
+
511
+ # else /* unknown platform */
512
+ # define PLATFORM_ID
513
+ # endif
514
+
515
+ #elif defined(__INTEGRITY)
516
+ # if defined(INT_178B)
517
+ # define PLATFORM_ID "Integrity178"
518
+
519
+ # else /* regular Integrity */
520
+ # define PLATFORM_ID "Integrity"
521
+ # endif
522
+
523
+ #else /* unknown platform */
524
+ # define PLATFORM_ID
525
+
526
+ #endif
527
+
528
+ /* For windows compilers MSVC and Intel we can determine
529
+ the architecture of the compiler being used. This is because
530
+ the compilers do not have flags that can change the architecture,
531
+ but rather depend on which compiler is being used
532
+ */
533
+ #if defined(_WIN32) && defined(_MSC_VER)
534
+ # if defined(_M_IA64)
535
+ # define ARCHITECTURE_ID "IA64"
536
+
537
+ # elif defined(_M_ARM64EC)
538
+ # define ARCHITECTURE_ID "ARM64EC"
539
+
540
+ # elif defined(_M_X64) || defined(_M_AMD64)
541
+ # define ARCHITECTURE_ID "x64"
542
+
543
+ # elif defined(_M_IX86)
544
+ # define ARCHITECTURE_ID "X86"
545
+
546
+ # elif defined(_M_ARM64)
547
+ # define ARCHITECTURE_ID "ARM64"
548
+
549
+ # elif defined(_M_ARM)
550
+ # if _M_ARM == 4
551
+ # define ARCHITECTURE_ID "ARMV4I"
552
+ # elif _M_ARM == 5
553
+ # define ARCHITECTURE_ID "ARMV5I"
554
+ # else
555
+ # define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
556
+ # endif
557
+
558
+ # elif defined(_M_MIPS)
559
+ # define ARCHITECTURE_ID "MIPS"
560
+
561
+ # elif defined(_M_SH)
562
+ # define ARCHITECTURE_ID "SHx"
563
+
564
+ # else /* unknown architecture */
565
+ # define ARCHITECTURE_ID ""
566
+ # endif
567
+
568
+ #elif defined(__WATCOMC__)
569
+ # if defined(_M_I86)
570
+ # define ARCHITECTURE_ID "I86"
571
+
572
+ # elif defined(_M_IX86)
573
+ # define ARCHITECTURE_ID "X86"
574
+
575
+ # else /* unknown architecture */
576
+ # define ARCHITECTURE_ID ""
577
+ # endif
578
+
579
+ #elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
580
+ # if defined(__ICCARM__)
581
+ # define ARCHITECTURE_ID "ARM"
582
+
583
+ # elif defined(__ICCRX__)
584
+ # define ARCHITECTURE_ID "RX"
585
+
586
+ # elif defined(__ICCRH850__)
587
+ # define ARCHITECTURE_ID "RH850"
588
+
589
+ # elif defined(__ICCRL78__)
590
+ # define ARCHITECTURE_ID "RL78"
591
+
592
+ # elif defined(__ICCRISCV__)
593
+ # define ARCHITECTURE_ID "RISCV"
594
+
595
+ # elif defined(__ICCAVR__)
596
+ # define ARCHITECTURE_ID "AVR"
597
+
598
+ # elif defined(__ICC430__)
599
+ # define ARCHITECTURE_ID "MSP430"
600
+
601
+ # elif defined(__ICCV850__)
602
+ # define ARCHITECTURE_ID "V850"
603
+
604
+ # elif defined(__ICC8051__)
605
+ # define ARCHITECTURE_ID "8051"
606
+
607
+ # elif defined(__ICCSTM8__)
608
+ # define ARCHITECTURE_ID "STM8"
609
+
610
+ # else /* unknown architecture */
611
+ # define ARCHITECTURE_ID ""
612
+ # endif
613
+
614
+ #elif defined(__ghs__)
615
+ # if defined(__PPC64__)
616
+ # define ARCHITECTURE_ID "PPC64"
617
+
618
+ # elif defined(__ppc__)
619
+ # define ARCHITECTURE_ID "PPC"
620
+
621
+ # elif defined(__ARM__)
622
+ # define ARCHITECTURE_ID "ARM"
623
+
624
+ # elif defined(__x86_64__)
625
+ # define ARCHITECTURE_ID "x64"
626
+
627
+ # elif defined(__i386__)
628
+ # define ARCHITECTURE_ID "X86"
629
+
630
+ # else /* unknown architecture */
631
+ # define ARCHITECTURE_ID ""
632
+ # endif
633
+
634
+ #elif defined(__TI_COMPILER_VERSION__)
635
+ # if defined(__TI_ARM__)
636
+ # define ARCHITECTURE_ID "ARM"
637
+
638
+ # elif defined(__MSP430__)
639
+ # define ARCHITECTURE_ID "MSP430"
640
+
641
+ # elif defined(__TMS320C28XX__)
642
+ # define ARCHITECTURE_ID "TMS320C28x"
643
+
644
+ # elif defined(__TMS320C6X__) || defined(_TMS320C6X)
645
+ # define ARCHITECTURE_ID "TMS320C6x"
646
+
647
+ # else /* unknown architecture */
648
+ # define ARCHITECTURE_ID ""
649
+ # endif
650
+
651
+ #else
652
+ # define ARCHITECTURE_ID
653
+ #endif
654
+
655
+ /* Convert integer to decimal digit literals. */
656
+ #define DEC(n) \
657
+ ('0' + (((n) / 10000000)%10)), \
658
+ ('0' + (((n) / 1000000)%10)), \
659
+ ('0' + (((n) / 100000)%10)), \
660
+ ('0' + (((n) / 10000)%10)), \
661
+ ('0' + (((n) / 1000)%10)), \
662
+ ('0' + (((n) / 100)%10)), \
663
+ ('0' + (((n) / 10)%10)), \
664
+ ('0' + ((n) % 10))
665
+
666
+ /* Convert integer to hex digit literals. */
667
+ #define HEX(n) \
668
+ ('0' + ((n)>>28 & 0xF)), \
669
+ ('0' + ((n)>>24 & 0xF)), \
670
+ ('0' + ((n)>>20 & 0xF)), \
671
+ ('0' + ((n)>>16 & 0xF)), \
672
+ ('0' + ((n)>>12 & 0xF)), \
673
+ ('0' + ((n)>>8 & 0xF)), \
674
+ ('0' + ((n)>>4 & 0xF)), \
675
+ ('0' + ((n) & 0xF))
676
+
677
+ /* Construct a string literal encoding the version number. */
678
+ #ifdef COMPILER_VERSION
679
+ char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
680
+
681
+ /* Construct a string literal encoding the version number components. */
682
+ #elif defined(COMPILER_VERSION_MAJOR)
683
+ char const info_version[] = {
684
+ 'I', 'N', 'F', 'O', ':',
685
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
686
+ COMPILER_VERSION_MAJOR,
687
+ # ifdef COMPILER_VERSION_MINOR
688
+ '.', COMPILER_VERSION_MINOR,
689
+ # ifdef COMPILER_VERSION_PATCH
690
+ '.', COMPILER_VERSION_PATCH,
691
+ # ifdef COMPILER_VERSION_TWEAK
692
+ '.', COMPILER_VERSION_TWEAK,
693
+ # endif
694
+ # endif
695
+ # endif
696
+ ']','\0'};
697
+ #endif
698
+
699
+ /* Construct a string literal encoding the internal version number. */
700
+ #ifdef COMPILER_VERSION_INTERNAL
701
+ char const info_version_internal[] = {
702
+ 'I', 'N', 'F', 'O', ':',
703
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
704
+ 'i','n','t','e','r','n','a','l','[',
705
+ COMPILER_VERSION_INTERNAL,']','\0'};
706
+ #elif defined(COMPILER_VERSION_INTERNAL_STR)
707
+ char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
708
+ #endif
709
+
710
+ /* Construct a string literal encoding the version number components. */
711
+ #ifdef SIMULATE_VERSION_MAJOR
712
+ char const info_simulate_version[] = {
713
+ 'I', 'N', 'F', 'O', ':',
714
+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
715
+ SIMULATE_VERSION_MAJOR,
716
+ # ifdef SIMULATE_VERSION_MINOR
717
+ '.', SIMULATE_VERSION_MINOR,
718
+ # ifdef SIMULATE_VERSION_PATCH
719
+ '.', SIMULATE_VERSION_PATCH,
720
+ # ifdef SIMULATE_VERSION_TWEAK
721
+ '.', SIMULATE_VERSION_TWEAK,
722
+ # endif
723
+ # endif
724
+ # endif
725
+ ']','\0'};
726
+ #endif
727
+
728
+ /* Construct the string literal in pieces to prevent the source from
729
+ getting matched. Store it in a pointer rather than an array
730
+ because some compilers will just produce instructions to fill the
731
+ array rather than assigning a pointer to a static array. */
732
+ char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
733
+ char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
734
+
735
+
736
+
737
+ #if !defined(__STDC__) && !defined(__clang__)
738
+ # if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
739
+ # define C_VERSION "90"
740
+ # else
741
+ # define C_VERSION
742
+ # endif
743
+ #elif __STDC_VERSION__ > 201710L
744
+ # define C_VERSION "23"
745
+ #elif __STDC_VERSION__ >= 201710L
746
+ # define C_VERSION "17"
747
+ #elif __STDC_VERSION__ >= 201000L
748
+ # define C_VERSION "11"
749
+ #elif __STDC_VERSION__ >= 199901L
750
+ # define C_VERSION "99"
751
+ #else
752
+ # define C_VERSION "90"
753
+ #endif
754
+ const char* info_language_standard_default =
755
+ "INFO" ":" "standard_default[" C_VERSION "]";
756
+
757
+ const char* info_language_extensions_default = "INFO" ":" "extensions_default["
758
+ #if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
759
+ defined(__TI_COMPILER_VERSION__)) && \
760
+ !defined(__STRICT_ANSI__)
761
+ "ON"
762
+ #else
763
+ "OFF"
764
+ #endif
765
+ "]";
766
+
767
+ /*--------------------------------------------------------------------------*/
768
+
769
+ #ifdef ID_VOID_MAIN
770
+ void main() {}
771
+ #else
772
+ # if defined(__CLASSIC_C__)
773
+ int main(argc, argv) int argc; char *argv[];
774
+ # else
775
+ int main(int argc, char* argv[])
776
+ # endif
777
+ {
778
+ int require = 0;
779
+ require += info_compiler[argc];
780
+ require += info_platform[argc];
781
+ require += info_arch[argc];
782
+ #ifdef COMPILER_VERSION_MAJOR
783
+ require += info_version[argc];
784
+ #endif
785
+ #ifdef COMPILER_VERSION_INTERNAL
786
+ require += info_version_internal[argc];
787
+ #endif
788
+ #ifdef SIMULATE_ID
789
+ require += info_simulate[argc];
790
+ #endif
791
+ #ifdef SIMULATE_VERSION_MAJOR
792
+ require += info_simulate_version[argc];
793
+ #endif
794
+ #if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
795
+ require += info_cray[argc];
796
+ #endif
797
+ require += info_language_standard_default[argc];
798
+ require += info_language_extensions_default[argc];
799
+ (void)argv;
800
+ return require;
801
+ }
802
+ #endif
build/CMakeFiles/3.22.6/CompilerIdC/a.out ADDED
Binary file (8.47 kB). View file
 
build/CMakeFiles/CMakeDirectoryInformation.cmake ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CMAKE generated file: DO NOT EDIT!
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.22
3
+
4
+ # Relative path conversion top directories.
5
+ set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/content/pocketsphinx")
6
+ set(CMAKE_RELATIVE_PATH_TOP_BINARY "/content/pocketsphinx/build")
7
+
8
+ # Force unix paths in dependencies.
9
+ set(CMAKE_FORCE_UNIX_PATHS 1)
10
+
11
+
12
+ # The C and CXX include file regular expressions for this directory.
13
+ set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
14
+ set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
15
+ set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
16
+ set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
build/CMakeFiles/CMakeOutput.log ADDED
@@ -0,0 +1,372 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ The system is: Linux - 5.10.147+ - x86_64
2
+ Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
3
+ Compiler: /usr/bin/cc
4
+ Build flags:
5
+ Id flags:
6
+
7
+ The output was:
8
+ 0
9
+
10
+
11
+ Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
12
+
13
+ The C compiler identification is GNU, found in "/content/pocketsphinx/build/CMakeFiles/3.22.6/CompilerIdC/a.out"
14
+
15
+ Detecting C compiler ABI info compiled with the following output:
16
+ Change Dir: /content/pocketsphinx/build/CMakeFiles/CMakeTmp
17
+
18
+ Run Build Command(s):/usr/bin/make -f Makefile cmTC_63944/fast && /usr/bin/make -f CMakeFiles/cmTC_63944.dir/build.make CMakeFiles/cmTC_63944.dir/build
19
+ make[1]: Entering directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
20
+ Building C object CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o
21
+ /usr/bin/cc -v -o CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o -c /usr/local/lib/python3.8/dist-packages/cmake/data/share/cmake-3.22/Modules/CMakeCCompilerABI.c
22
+ Using built-in specs.
23
+ COLLECT_GCC=/usr/bin/cc
24
+ OFFLOAD_TARGET_NAMES=nvptx-none
25
+ OFFLOAD_TARGET_DEFAULT=1
26
+ Target: x86_64-linux-gnu
27
+ Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
28
+ Thread model: posix
29
+ gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
30
+ COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
31
+ /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/lib/python3.8/dist-packages/cmake/data/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccrm7upB.s
32
+ GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)
33
+ compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP
34
+
35
+ GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
36
+ ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
37
+ ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"
38
+ #include "..." search starts here:
39
+ #include <...> search starts here:
40
+ /usr/lib/gcc/x86_64-linux-gnu/7/include
41
+ /usr/local/include
42
+ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed
43
+ /usr/include/x86_64-linux-gnu
44
+ /usr/include
45
+ End of search list.
46
+ GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)
47
+ compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP
48
+
49
+ GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
50
+ Compiler executable checksum: b62ed4a2880cd4159476ea8293b72fa8
51
+ COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
52
+ as -v --64 -o CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o /tmp/ccrm7upB.s
53
+ GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30
54
+ COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
55
+ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/local/cuda/lib64/stubs/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
56
+ COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
57
+ Linking C executable cmTC_63944
58
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_63944.dir/link.txt --verbose=1
59
+ /usr/bin/cc -v CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o -o cmTC_63944
60
+ Using built-in specs.
61
+ COLLECT_GCC=/usr/bin/cc
62
+ COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
63
+ OFFLOAD_TARGET_NAMES=nvptx-none
64
+ OFFLOAD_TARGET_DEFAULT=1
65
+ Target: x86_64-linux-gnu
66
+ Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
67
+ Thread model: posix
68
+ gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
69
+ COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
70
+ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/local/cuda/lib64/stubs/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
71
+ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_63944' '-mtune=generic' '-march=x86-64'
72
+ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cc7pEmVD.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_63944 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/local/cuda/lib64/stubs -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o
73
+ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_63944' '-mtune=generic' '-march=x86-64'
74
+ make[1]: Leaving directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
75
+
76
+
77
+
78
+ Parsed C implicit include dir info from above output: rv=done
79
+ found start of include info
80
+ found start of implicit include info
81
+ add: [/usr/lib/gcc/x86_64-linux-gnu/7/include]
82
+ add: [/usr/local/include]
83
+ add: [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed]
84
+ add: [/usr/include/x86_64-linux-gnu]
85
+ add: [/usr/include]
86
+ end of search list found
87
+ collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include]
88
+ collapse include dir [/usr/local/include] ==> [/usr/local/include]
89
+ collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed]
90
+ collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
91
+ collapse include dir [/usr/include] ==> [/usr/include]
92
+ implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include]
93
+
94
+
95
+ Parsed C implicit link information from above output:
96
+ link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
97
+ ignore line: [Change Dir: /content/pocketsphinx/build/CMakeFiles/CMakeTmp]
98
+ ignore line: []
99
+ ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_63944/fast && /usr/bin/make -f CMakeFiles/cmTC_63944.dir/build.make CMakeFiles/cmTC_63944.dir/build]
100
+ ignore line: [make[1]: Entering directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp']
101
+ ignore line: [Building C object CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o]
102
+ ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o -c /usr/local/lib/python3.8/dist-packages/cmake/data/share/cmake-3.22/Modules/CMakeCCompilerABI.c]
103
+ ignore line: [Using built-in specs.]
104
+ ignore line: [COLLECT_GCC=/usr/bin/cc]
105
+ ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
106
+ ignore line: [OFFLOAD_TARGET_DEFAULT=1]
107
+ ignore line: [Target: x86_64-linux-gnu]
108
+ ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
109
+ ignore line: [Thread model: posix]
110
+ ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
111
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
112
+ ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/lib/python3.8/dist-packages/cmake/data/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccrm7upB.s]
113
+ ignore line: [GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)]
114
+ ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP]
115
+ ignore line: []
116
+ ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
117
+ ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
118
+ ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"]
119
+ ignore line: [#include "..." search starts here:]
120
+ ignore line: [#include <...> search starts here:]
121
+ ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include]
122
+ ignore line: [ /usr/local/include]
123
+ ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed]
124
+ ignore line: [ /usr/include/x86_64-linux-gnu]
125
+ ignore line: [ /usr/include]
126
+ ignore line: [End of search list.]
127
+ ignore line: [GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)]
128
+ ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP]
129
+ ignore line: []
130
+ ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
131
+ ignore line: [Compiler executable checksum: b62ed4a2880cd4159476ea8293b72fa8]
132
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
133
+ ignore line: [ as -v --64 -o CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o /tmp/ccrm7upB.s]
134
+ ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30]
135
+ ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
136
+ ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/local/cuda/lib64/stubs/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
137
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
138
+ ignore line: [Linking C executable cmTC_63944]
139
+ ignore line: [/usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_63944.dir/link.txt --verbose=1]
140
+ ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o -o cmTC_63944 ]
141
+ ignore line: [Using built-in specs.]
142
+ ignore line: [COLLECT_GCC=/usr/bin/cc]
143
+ ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper]
144
+ ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
145
+ ignore line: [OFFLOAD_TARGET_DEFAULT=1]
146
+ ignore line: [Target: x86_64-linux-gnu]
147
+ ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
148
+ ignore line: [Thread model: posix]
149
+ ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
150
+ ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
151
+ ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/local/cuda/lib64/stubs/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
152
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_63944' '-mtune=generic' '-march=x86-64']
153
+ link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cc7pEmVD.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_63944 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/local/cuda/lib64/stubs -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o]
154
+ arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore
155
+ arg [-plugin] ==> ignore
156
+ arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore
157
+ arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore
158
+ arg [-plugin-opt=-fresolution=/tmp/cc7pEmVD.res] ==> ignore
159
+ arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
160
+ arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
161
+ arg [-plugin-opt=-pass-through=-lc] ==> ignore
162
+ arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
163
+ arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
164
+ arg [--build-id] ==> ignore
165
+ arg [--eh-frame-hdr] ==> ignore
166
+ arg [-m] ==> ignore
167
+ arg [elf_x86_64] ==> ignore
168
+ arg [--hash-style=gnu] ==> ignore
169
+ arg [--as-needed] ==> ignore
170
+ arg [-dynamic-linker] ==> ignore
171
+ arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
172
+ arg [-pie] ==> ignore
173
+ arg [-znow] ==> ignore
174
+ arg [-zrelro] ==> ignore
175
+ arg [-o] ==> ignore
176
+ arg [cmTC_63944] ==> ignore
177
+ arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o]
178
+ arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o]
179
+ arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o]
180
+ arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7]
181
+ arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu]
182
+ arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib]
183
+ arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
184
+ arg [-L/lib/../lib] ==> dir [/lib/../lib]
185
+ arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
186
+ arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
187
+ arg [-L/usr/local/cuda/lib64/stubs] ==> dir [/usr/local/cuda/lib64/stubs]
188
+ arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..]
189
+ arg [CMakeFiles/cmTC_63944.dir/CMakeCCompilerABI.c.o] ==> ignore
190
+ arg [-lgcc] ==> lib [gcc]
191
+ arg [--push-state] ==> ignore
192
+ arg [--as-needed] ==> ignore
193
+ arg [-lgcc_s] ==> lib [gcc_s]
194
+ arg [--pop-state] ==> ignore
195
+ arg [-lc] ==> lib [c]
196
+ arg [-lgcc] ==> lib [gcc]
197
+ arg [--push-state] ==> ignore
198
+ arg [--as-needed] ==> ignore
199
+ arg [-lgcc_s] ==> lib [gcc_s]
200
+ arg [--pop-state] ==> ignore
201
+ arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o]
202
+ arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o]
203
+ collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o]
204
+ collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o]
205
+ collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o]
206
+ collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7]
207
+ collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
208
+ collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib]
209
+ collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
210
+ collapse library dir [/lib/../lib] ==> [/lib]
211
+ collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
212
+ collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
213
+ collapse library dir [/usr/local/cuda/lib64/stubs] ==> [/usr/local/cuda/lib64/stubs]
214
+ collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib]
215
+ implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
216
+ implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o]
217
+ implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib;/usr/local/cuda/lib64/stubs]
218
+ implicit fwks: []
219
+
220
+
221
+ Determining if the include file unistd.h exists passed with the following output:
222
+ Change Dir: /content/pocketsphinx/build/CMakeFiles/CMakeTmp
223
+
224
+ Run Build Command(s):/usr/bin/make -f Makefile cmTC_21ae9/fast && /usr/bin/make -f CMakeFiles/cmTC_21ae9.dir/build.make CMakeFiles/cmTC_21ae9.dir/build
225
+ make[1]: Entering directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
226
+ Building C object CMakeFiles/cmTC_21ae9.dir/CheckIncludeFile.c.o
227
+ /usr/bin/cc -o CMakeFiles/cmTC_21ae9.dir/CheckIncludeFile.c.o -c /content/pocketsphinx/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
228
+ Linking C executable cmTC_21ae9
229
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_21ae9.dir/link.txt --verbose=1
230
+ /usr/bin/cc CMakeFiles/cmTC_21ae9.dir/CheckIncludeFile.c.o -o cmTC_21ae9
231
+ make[1]: Leaving directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
232
+
233
+
234
+
235
+ Determining if the include file sys/types.h exists passed with the following output:
236
+ Change Dir: /content/pocketsphinx/build/CMakeFiles/CMakeTmp
237
+
238
+ Run Build Command(s):/usr/bin/make -f Makefile cmTC_9e7a1/fast && /usr/bin/make -f CMakeFiles/cmTC_9e7a1.dir/build.make CMakeFiles/cmTC_9e7a1.dir/build
239
+ make[1]: Entering directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
240
+ Building C object CMakeFiles/cmTC_9e7a1.dir/CheckIncludeFile.c.o
241
+ /usr/bin/cc -o CMakeFiles/cmTC_9e7a1.dir/CheckIncludeFile.c.o -c /content/pocketsphinx/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
242
+ Linking C executable cmTC_9e7a1
243
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9e7a1.dir/link.txt --verbose=1
244
+ /usr/bin/cc CMakeFiles/cmTC_9e7a1.dir/CheckIncludeFile.c.o -o cmTC_9e7a1
245
+ make[1]: Leaving directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
246
+
247
+
248
+
249
+ Determining if the include file sys/stat.h exists passed with the following output:
250
+ Change Dir: /content/pocketsphinx/build/CMakeFiles/CMakeTmp
251
+
252
+ Run Build Command(s):/usr/bin/make -f Makefile cmTC_bed83/fast && /usr/bin/make -f CMakeFiles/cmTC_bed83.dir/build.make CMakeFiles/cmTC_bed83.dir/build
253
+ make[1]: Entering directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
254
+ Building C object CMakeFiles/cmTC_bed83.dir/CheckIncludeFile.c.o
255
+ /usr/bin/cc -o CMakeFiles/cmTC_bed83.dir/CheckIncludeFile.c.o -c /content/pocketsphinx/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
256
+ Linking C executable cmTC_bed83
257
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bed83.dir/link.txt --verbose=1
258
+ /usr/bin/cc CMakeFiles/cmTC_bed83.dir/CheckIncludeFile.c.o -o cmTC_bed83
259
+ make[1]: Leaving directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
260
+
261
+
262
+
263
+ Determining if the include file stdint.h exists passed with the following output:
264
+ Change Dir: /content/pocketsphinx/build/CMakeFiles/CMakeTmp
265
+
266
+ Run Build Command(s):/usr/bin/make -f Makefile cmTC_705a4/fast && /usr/bin/make -f CMakeFiles/cmTC_705a4.dir/build.make CMakeFiles/cmTC_705a4.dir/build
267
+ make[1]: Entering directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
268
+ Building C object CMakeFiles/cmTC_705a4.dir/CheckIncludeFile.c.o
269
+ /usr/bin/cc -o CMakeFiles/cmTC_705a4.dir/CheckIncludeFile.c.o -c /content/pocketsphinx/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
270
+ Linking C executable cmTC_705a4
271
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_705a4.dir/link.txt --verbose=1
272
+ /usr/bin/cc CMakeFiles/cmTC_705a4.dir/CheckIncludeFile.c.o -o cmTC_705a4
273
+ make[1]: Leaving directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
274
+
275
+
276
+
277
+ Determining if the snprintf exist passed with the following output:
278
+ Change Dir: /content/pocketsphinx/build/CMakeFiles/CMakeTmp
279
+
280
+ Run Build Command(s):/usr/bin/make -f Makefile cmTC_27ab9/fast && /usr/bin/make -f CMakeFiles/cmTC_27ab9.dir/build.make CMakeFiles/cmTC_27ab9.dir/build
281
+ make[1]: Entering directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
282
+ Building C object CMakeFiles/cmTC_27ab9.dir/CheckSymbolExists.c.o
283
+ /usr/bin/cc -o CMakeFiles/cmTC_27ab9.dir/CheckSymbolExists.c.o -c /content/pocketsphinx/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
284
+ Linking C executable cmTC_27ab9
285
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_27ab9.dir/link.txt --verbose=1
286
+ /usr/bin/cc CMakeFiles/cmTC_27ab9.dir/CheckSymbolExists.c.o -o cmTC_27ab9
287
+ make[1]: Leaving directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
288
+
289
+
290
+ File /content/pocketsphinx/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
291
+ /* */
292
+ #include <stdio.h>
293
+
294
+ int main(int argc, char** argv)
295
+ {
296
+ (void)argv;
297
+ #ifndef snprintf
298
+ return ((int*)(&snprintf))[argc];
299
+ #else
300
+ (void)argc;
301
+ return 0;
302
+ #endif
303
+ }
304
+ Determining if the popen exist passed with the following output:
305
+ Change Dir: /content/pocketsphinx/build/CMakeFiles/CMakeTmp
306
+
307
+ Run Build Command(s):/usr/bin/make -f Makefile cmTC_09a82/fast && /usr/bin/make -f CMakeFiles/cmTC_09a82.dir/build.make CMakeFiles/cmTC_09a82.dir/build
308
+ make[1]: Entering directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
309
+ Building C object CMakeFiles/cmTC_09a82.dir/CheckSymbolExists.c.o
310
+ /usr/bin/cc -o CMakeFiles/cmTC_09a82.dir/CheckSymbolExists.c.o -c /content/pocketsphinx/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
311
+ Linking C executable cmTC_09a82
312
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_09a82.dir/link.txt --verbose=1
313
+ /usr/bin/cc CMakeFiles/cmTC_09a82.dir/CheckSymbolExists.c.o -o cmTC_09a82
314
+ make[1]: Leaving directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
315
+
316
+
317
+ File /content/pocketsphinx/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
318
+ /* */
319
+ #include <stdio.h>
320
+
321
+ int main(int argc, char** argv)
322
+ {
323
+ (void)argv;
324
+ #ifndef popen
325
+ return ((int*)(&popen))[argc];
326
+ #else
327
+ (void)argc;
328
+ return 0;
329
+ #endif
330
+ }
331
+ Determining if the include file stddef.h exists passed with the following output:
332
+ Change Dir: /content/pocketsphinx/build/CMakeFiles/CMakeTmp
333
+
334
+ Run Build Command(s):/usr/bin/make -f Makefile cmTC_55e93/fast && /usr/bin/make -f CMakeFiles/cmTC_55e93.dir/build.make CMakeFiles/cmTC_55e93.dir/build
335
+ make[1]: Entering directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
336
+ Building C object CMakeFiles/cmTC_55e93.dir/CheckIncludeFile.c.o
337
+ /usr/bin/cc -o CMakeFiles/cmTC_55e93.dir/CheckIncludeFile.c.o -c /content/pocketsphinx/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
338
+ Linking C executable cmTC_55e93
339
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_55e93.dir/link.txt --verbose=1
340
+ /usr/bin/cc CMakeFiles/cmTC_55e93.dir/CheckIncludeFile.c.o -o cmTC_55e93
341
+ make[1]: Leaving directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
342
+
343
+
344
+
345
+ Determining size of long passed with the following output:
346
+ Change Dir: /content/pocketsphinx/build/CMakeFiles/CMakeTmp
347
+
348
+ Run Build Command(s):/usr/bin/make -f Makefile cmTC_09ca8/fast && /usr/bin/make -f CMakeFiles/cmTC_09ca8.dir/build.make CMakeFiles/cmTC_09ca8.dir/build
349
+ make[1]: Entering directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
350
+ Building C object CMakeFiles/cmTC_09ca8.dir/LONG.c.o
351
+ /usr/bin/cc -o CMakeFiles/cmTC_09ca8.dir/LONG.c.o -c /content/pocketsphinx/build/CMakeFiles/CheckTypeSize/LONG.c
352
+ Linking C executable cmTC_09ca8
353
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_09ca8.dir/link.txt --verbose=1
354
+ /usr/bin/cc CMakeFiles/cmTC_09ca8.dir/LONG.c.o -o cmTC_09ca8
355
+ make[1]: Leaving directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
356
+
357
+
358
+
359
+ Determining size of long long passed with the following output:
360
+ Change Dir: /content/pocketsphinx/build/CMakeFiles/CMakeTmp
361
+
362
+ Run Build Command(s):/usr/bin/make -f Makefile cmTC_91ee7/fast && /usr/bin/make -f CMakeFiles/cmTC_91ee7.dir/build.make CMakeFiles/cmTC_91ee7.dir/build
363
+ make[1]: Entering directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
364
+ Building C object CMakeFiles/cmTC_91ee7.dir/LONG_LONG.c.o
365
+ /usr/bin/cc -o CMakeFiles/cmTC_91ee7.dir/LONG_LONG.c.o -c /content/pocketsphinx/build/CMakeFiles/CheckTypeSize/LONG_LONG.c
366
+ Linking C executable cmTC_91ee7
367
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_91ee7.dir/link.txt --verbose=1
368
+ /usr/bin/cc CMakeFiles/cmTC_91ee7.dir/LONG_LONG.c.o -o cmTC_91ee7
369
+ make[1]: Leaving directory '/content/pocketsphinx/build/CMakeFiles/CMakeTmp'
370
+
371
+
372
+
build/CMakeFiles/CMakeRuleHashes.txt ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Hashes of file build rules.
2
+ 402052e12526fed0cd1ec235cdde1f55 CMakeFiles/Continuous
3
+ 3fcc847206e6caa0d65fff4c2d921afb CMakeFiles/ContinuousBuild
4
+ 795f3b35a7bd88c114a88380cc185fd2 CMakeFiles/ContinuousConfigure
5
+ 6e5bdae727d438f9942e5ed41c1036a3 CMakeFiles/ContinuousCoverage
6
+ 58ae9a05699fd52d61ccdd48daa55b86 CMakeFiles/ContinuousMemCheck
7
+ 64d4b2efdbe345a8406dd26b3b941097 CMakeFiles/ContinuousStart
8
+ e9f578c42c4de2068004e47c11a2f03d CMakeFiles/ContinuousSubmit
9
+ 61240756e8e7d6c41a294185b1c0ae4d CMakeFiles/ContinuousTest
10
+ e024de5f0c1f5cb8ea1f82190803ca8b CMakeFiles/ContinuousUpdate
11
+ 586ee963acdacce7982212a0f0120766 CMakeFiles/Experimental
12
+ 5e695745ab5f61e7c764cb34157b86f3 CMakeFiles/ExperimentalBuild
13
+ 17e0d2b1c9e6a9b0f5ec2f4b40182bcb CMakeFiles/ExperimentalConfigure
14
+ 69a271f92b8f08ee99c9b544bacad12d CMakeFiles/ExperimentalCoverage
15
+ 5a3a0057ae21edbf6a45579e4d158302 CMakeFiles/ExperimentalMemCheck
16
+ 98fcd52b369b276673cbd710301b1a4d CMakeFiles/ExperimentalStart
17
+ 04b38dac39398a9628077a26ef05a857 CMakeFiles/ExperimentalSubmit
18
+ 3449628121687b2b80d400c4a567b619 CMakeFiles/ExperimentalTest
19
+ a04d9a8ff30cd3e697e3a013f2ee1016 CMakeFiles/ExperimentalUpdate
20
+ 893b03ae776473419f4a7738dc2c3b12 CMakeFiles/Nightly
21
+ 3aa82ae6af539808a02198e8655e72ed CMakeFiles/NightlyBuild
22
+ dee9fc53aed2bf8f857a360216cd2445 CMakeFiles/NightlyConfigure
23
+ c0c9b6d2578674dca361a736b7ccc675 CMakeFiles/NightlyCoverage
24
+ 0639ca3bbc39ed1b87968c0febd896c4 CMakeFiles/NightlyMemCheck
25
+ d134ff114c4fe6e7269411ed414c0a7d CMakeFiles/NightlyMemoryCheck
26
+ 2c4b8d8959344f77d8cc06f5a99a8831 CMakeFiles/NightlyStart
27
+ a03fddda9200dd3c984323b0a4f3b6cd CMakeFiles/NightlySubmit
28
+ baf1794f439d460b0cf859451d9ea08c CMakeFiles/NightlyTest
29
+ 02bc630c759febbf738d051ed5ffbfd4 CMakeFiles/NightlyUpdate
30
+ 61559de13d69d95d4f42086c1277bca9 CMakeFiles/check
31
+ f706328cb66ef55b9163d2ab2a851e8d examples/CMakeFiles/examples
build/CMakeFiles/CheckTypeSize/LONG.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6395d4d259ba464c62d9a945f05effcff8141207a33e55a2de989176110b863
3
+ size 8224
build/CMakeFiles/CheckTypeSize/LONG.c ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #include <sys/types.h>
2
+ #include <stdint.h>
3
+ #include <stddef.h>
4
+
5
+
6
+ #undef KEY
7
+ #if defined(__i386)
8
+ # define KEY '_','_','i','3','8','6'
9
+ #elif defined(__x86_64)
10
+ # define KEY '_','_','x','8','6','_','6','4'
11
+ #elif defined(__PPC64__)
12
+ # define KEY '_','_','P','P','C','6','4','_','_'
13
+ #elif defined(__ppc64__)
14
+ # define KEY '_','_','p','p','c','6','4','_','_'
15
+ #elif defined(__PPC__)
16
+ # define KEY '_','_','P','P','C','_','_'
17
+ #elif defined(__ppc__)
18
+ # define KEY '_','_','p','p','c','_','_'
19
+ #elif defined(__aarch64__)
20
+ # define KEY '_','_','a','a','r','c','h','6','4','_','_'
21
+ #elif defined(__ARM_ARCH_7A__)
22
+ # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
23
+ #elif defined(__ARM_ARCH_7S__)
24
+ # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
25
+ #endif
26
+
27
+ #define SIZE (sizeof(long))
28
+ static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
29
+ ('0' + ((SIZE / 10000)%10)),
30
+ ('0' + ((SIZE / 1000)%10)),
31
+ ('0' + ((SIZE / 100)%10)),
32
+ ('0' + ((SIZE / 10)%10)),
33
+ ('0' + (SIZE % 10)),
34
+ ']',
35
+ #ifdef KEY
36
+ ' ','k','e','y','[', KEY, ']',
37
+ #endif
38
+ '\0'};
39
+
40
+ #ifdef __CLASSIC_C__
41
+ int main(argc, argv) int argc; char *argv[];
42
+ #else
43
+ int main(int argc, char *argv[])
44
+ #endif
45
+ {
46
+ int require = 0;
47
+ require += info_size[argc];
48
+ (void)argv;
49
+ return require;
50
+ }
build/CMakeFiles/CheckTypeSize/LONG_LONG.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b25a95c0c667a5023a5dd5462a946e7844cf869d6a1bf85ac1e19f6b69e64c46
3
+ size 8224
build/CMakeFiles/CheckTypeSize/LONG_LONG.c ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #include <sys/types.h>
2
+ #include <stdint.h>
3
+ #include <stddef.h>
4
+
5
+
6
+ #undef KEY
7
+ #if defined(__i386)
8
+ # define KEY '_','_','i','3','8','6'
9
+ #elif defined(__x86_64)
10
+ # define KEY '_','_','x','8','6','_','6','4'
11
+ #elif defined(__PPC64__)
12
+ # define KEY '_','_','P','P','C','6','4','_','_'
13
+ #elif defined(__ppc64__)
14
+ # define KEY '_','_','p','p','c','6','4','_','_'
15
+ #elif defined(__PPC__)
16
+ # define KEY '_','_','P','P','C','_','_'
17
+ #elif defined(__ppc__)
18
+ # define KEY '_','_','p','p','c','_','_'
19
+ #elif defined(__aarch64__)
20
+ # define KEY '_','_','a','a','r','c','h','6','4','_','_'
21
+ #elif defined(__ARM_ARCH_7A__)
22
+ # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
23
+ #elif defined(__ARM_ARCH_7S__)
24
+ # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
25
+ #endif
26
+
27
+ #define SIZE (sizeof(long long))
28
+ static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
29
+ ('0' + ((SIZE / 10000)%10)),
30
+ ('0' + ((SIZE / 1000)%10)),
31
+ ('0' + ((SIZE / 100)%10)),
32
+ ('0' + ((SIZE / 10)%10)),
33
+ ('0' + (SIZE % 10)),
34
+ ']',
35
+ #ifdef KEY
36
+ ' ','k','e','y','[', KEY, ']',
37
+ #endif
38
+ '\0'};
39
+
40
+ #ifdef __CLASSIC_C__
41
+ int main(argc, argv) int argc; char *argv[];
42
+ #else
43
+ int main(int argc, char *argv[])
44
+ #endif
45
+ {
46
+ int require = 0;
47
+ require += info_size[argc];
48
+ (void)argv;
49
+ return require;
50
+ }
build/CMakeFiles/Continuous.dir/DependInfo.cmake ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Consider dependencies only in project.
3
+ set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
4
+
5
+ # The set of languages for which implicit dependencies are needed:
6
+ set(CMAKE_DEPENDS_LANGUAGES
7
+ )
8
+
9
+ # The set of dependency files which are needed:
10
+ set(CMAKE_DEPENDS_DEPENDENCY_FILES
11
+ )
12
+
13
+ # Targets to which this target links.
14
+ set(CMAKE_TARGET_LINKED_INFO_FILES
15
+ )
16
+
17
+ # Fortran module output directory.
18
+ set(CMAKE_Fortran_TARGET_MODULE_DIR "")
build/CMakeFiles/Continuous.dir/build.make ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CMAKE generated file: DO NOT EDIT!
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.22
3
+
4
+ # Delete rule output on recipe failure.
5
+ .DELETE_ON_ERROR:
6
+
7
+ #=============================================================================
8
+ # Special targets provided by cmake.
9
+
10
+ # Disable implicit rules so canonical targets will work.
11
+ .SUFFIXES:
12
+
13
+ # Disable VCS-based implicit rules.
14
+ % : %,v
15
+
16
+ # Disable VCS-based implicit rules.
17
+ % : RCS/%
18
+
19
+ # Disable VCS-based implicit rules.
20
+ % : RCS/%,v
21
+
22
+ # Disable VCS-based implicit rules.
23
+ % : SCCS/s.%
24
+
25
+ # Disable VCS-based implicit rules.
26
+ % : s.%
27
+
28
+ .SUFFIXES: .hpux_make_needs_suffix_list
29
+
30
+ # Command-line flag to silence nested $(MAKE).
31
+ $(VERBOSE)MAKESILENT = -s
32
+
33
+ #Suppress display of executed commands.
34
+ $(VERBOSE).SILENT:
35
+
36
+ # A target that is always out of date.
37
+ cmake_force:
38
+ .PHONY : cmake_force
39
+
40
+ #=============================================================================
41
+ # Set environment variables for the build.
42
+
43
+ # The shell in which to execute make rules.
44
+ SHELL = /bin/sh
45
+
46
+ # The CMake executable.
47
+ CMAKE_COMMAND = /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake
48
+
49
+ # The command to remove a file.
50
+ RM = /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E rm -f
51
+
52
+ # Escaping for special characters.
53
+ EQUALS = =
54
+
55
+ # The top-level source directory on which CMake was run.
56
+ CMAKE_SOURCE_DIR = /content/pocketsphinx
57
+
58
+ # The top-level build directory on which CMake was run.
59
+ CMAKE_BINARY_DIR = /content/pocketsphinx/build
60
+
61
+ # Utility rule file for Continuous.
62
+
63
+ # Include any custom commands dependencies for this target.
64
+ include CMakeFiles/Continuous.dir/compiler_depend.make
65
+
66
+ # Include the progress variables for this target.
67
+ include CMakeFiles/Continuous.dir/progress.make
68
+
69
+ CMakeFiles/Continuous:
70
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/ctest -D Continuous
71
+
72
+ Continuous: CMakeFiles/Continuous
73
+ Continuous: CMakeFiles/Continuous.dir/build.make
74
+ .PHONY : Continuous
75
+
76
+ # Rule to build all files generated by this target.
77
+ CMakeFiles/Continuous.dir/build: Continuous
78
+ .PHONY : CMakeFiles/Continuous.dir/build
79
+
80
+ CMakeFiles/Continuous.dir/clean:
81
+ $(CMAKE_COMMAND) -P CMakeFiles/Continuous.dir/cmake_clean.cmake
82
+ .PHONY : CMakeFiles/Continuous.dir/clean
83
+
84
+ CMakeFiles/Continuous.dir/depend:
85
+ cd /content/pocketsphinx/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /content/pocketsphinx /content/pocketsphinx /content/pocketsphinx/build /content/pocketsphinx/build /content/pocketsphinx/build/CMakeFiles/Continuous.dir/DependInfo.cmake --color=$(COLOR)
86
+ .PHONY : CMakeFiles/Continuous.dir/depend
87
+
build/CMakeFiles/Continuous.dir/cmake_clean.cmake ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ file(REMOVE_RECURSE
2
+ "CMakeFiles/Continuous"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ foreach(lang )
7
+ include(CMakeFiles/Continuous.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ endforeach()
build/CMakeFiles/Continuous.dir/compiler_depend.make ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # Empty custom commands generated dependencies file for Continuous.
2
+ # This may be replaced when dependencies are built.
build/CMakeFiles/Continuous.dir/compiler_depend.ts ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # CMAKE generated file: DO NOT EDIT!
2
+ # Timestamp file for custom commands dependencies management for Continuous.
build/CMakeFiles/Continuous.dir/progress.make ADDED
@@ -0,0 +1 @@
 
 
1
+
build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Consider dependencies only in project.
3
+ set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
4
+
5
+ # The set of languages for which implicit dependencies are needed:
6
+ set(CMAKE_DEPENDS_LANGUAGES
7
+ )
8
+
9
+ # The set of dependency files which are needed:
10
+ set(CMAKE_DEPENDS_DEPENDENCY_FILES
11
+ )
12
+
13
+ # Targets to which this target links.
14
+ set(CMAKE_TARGET_LINKED_INFO_FILES
15
+ )
16
+
17
+ # Fortran module output directory.
18
+ set(CMAKE_Fortran_TARGET_MODULE_DIR "")
build/CMakeFiles/ContinuousBuild.dir/build.make ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CMAKE generated file: DO NOT EDIT!
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.22
3
+
4
+ # Delete rule output on recipe failure.
5
+ .DELETE_ON_ERROR:
6
+
7
+ #=============================================================================
8
+ # Special targets provided by cmake.
9
+
10
+ # Disable implicit rules so canonical targets will work.
11
+ .SUFFIXES:
12
+
13
+ # Disable VCS-based implicit rules.
14
+ % : %,v
15
+
16
+ # Disable VCS-based implicit rules.
17
+ % : RCS/%
18
+
19
+ # Disable VCS-based implicit rules.
20
+ % : RCS/%,v
21
+
22
+ # Disable VCS-based implicit rules.
23
+ % : SCCS/s.%
24
+
25
+ # Disable VCS-based implicit rules.
26
+ % : s.%
27
+
28
+ .SUFFIXES: .hpux_make_needs_suffix_list
29
+
30
+ # Command-line flag to silence nested $(MAKE).
31
+ $(VERBOSE)MAKESILENT = -s
32
+
33
+ #Suppress display of executed commands.
34
+ $(VERBOSE).SILENT:
35
+
36
+ # A target that is always out of date.
37
+ cmake_force:
38
+ .PHONY : cmake_force
39
+
40
+ #=============================================================================
41
+ # Set environment variables for the build.
42
+
43
+ # The shell in which to execute make rules.
44
+ SHELL = /bin/sh
45
+
46
+ # The CMake executable.
47
+ CMAKE_COMMAND = /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake
48
+
49
+ # The command to remove a file.
50
+ RM = /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E rm -f
51
+
52
+ # Escaping for special characters.
53
+ EQUALS = =
54
+
55
+ # The top-level source directory on which CMake was run.
56
+ CMAKE_SOURCE_DIR = /content/pocketsphinx
57
+
58
+ # The top-level build directory on which CMake was run.
59
+ CMAKE_BINARY_DIR = /content/pocketsphinx/build
60
+
61
+ # Utility rule file for ContinuousBuild.
62
+
63
+ # Include any custom commands dependencies for this target.
64
+ include CMakeFiles/ContinuousBuild.dir/compiler_depend.make
65
+
66
+ # Include the progress variables for this target.
67
+ include CMakeFiles/ContinuousBuild.dir/progress.make
68
+
69
+ CMakeFiles/ContinuousBuild:
70
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/ctest -D ContinuousBuild
71
+
72
+ ContinuousBuild: CMakeFiles/ContinuousBuild
73
+ ContinuousBuild: CMakeFiles/ContinuousBuild.dir/build.make
74
+ .PHONY : ContinuousBuild
75
+
76
+ # Rule to build all files generated by this target.
77
+ CMakeFiles/ContinuousBuild.dir/build: ContinuousBuild
78
+ .PHONY : CMakeFiles/ContinuousBuild.dir/build
79
+
80
+ CMakeFiles/ContinuousBuild.dir/clean:
81
+ $(CMAKE_COMMAND) -P CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake
82
+ .PHONY : CMakeFiles/ContinuousBuild.dir/clean
83
+
84
+ CMakeFiles/ContinuousBuild.dir/depend:
85
+ cd /content/pocketsphinx/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /content/pocketsphinx /content/pocketsphinx /content/pocketsphinx/build /content/pocketsphinx/build /content/pocketsphinx/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake --color=$(COLOR)
86
+ .PHONY : CMakeFiles/ContinuousBuild.dir/depend
87
+
build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ file(REMOVE_RECURSE
2
+ "CMakeFiles/ContinuousBuild"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ foreach(lang )
7
+ include(CMakeFiles/ContinuousBuild.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ endforeach()
build/CMakeFiles/ContinuousBuild.dir/compiler_depend.make ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # Empty custom commands generated dependencies file for ContinuousBuild.
2
+ # This may be replaced when dependencies are built.
build/CMakeFiles/ContinuousBuild.dir/compiler_depend.ts ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # CMAKE generated file: DO NOT EDIT!
2
+ # Timestamp file for custom commands dependencies management for ContinuousBuild.
build/CMakeFiles/ContinuousBuild.dir/progress.make ADDED
@@ -0,0 +1 @@
 
 
1
+
build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Consider dependencies only in project.
3
+ set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
4
+
5
+ # The set of languages for which implicit dependencies are needed:
6
+ set(CMAKE_DEPENDS_LANGUAGES
7
+ )
8
+
9
+ # The set of dependency files which are needed:
10
+ set(CMAKE_DEPENDS_DEPENDENCY_FILES
11
+ )
12
+
13
+ # Targets to which this target links.
14
+ set(CMAKE_TARGET_LINKED_INFO_FILES
15
+ )
16
+
17
+ # Fortran module output directory.
18
+ set(CMAKE_Fortran_TARGET_MODULE_DIR "")
build/CMakeFiles/ContinuousConfigure.dir/build.make ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CMAKE generated file: DO NOT EDIT!
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.22
3
+
4
+ # Delete rule output on recipe failure.
5
+ .DELETE_ON_ERROR:
6
+
7
+ #=============================================================================
8
+ # Special targets provided by cmake.
9
+
10
+ # Disable implicit rules so canonical targets will work.
11
+ .SUFFIXES:
12
+
13
+ # Disable VCS-based implicit rules.
14
+ % : %,v
15
+
16
+ # Disable VCS-based implicit rules.
17
+ % : RCS/%
18
+
19
+ # Disable VCS-based implicit rules.
20
+ % : RCS/%,v
21
+
22
+ # Disable VCS-based implicit rules.
23
+ % : SCCS/s.%
24
+
25
+ # Disable VCS-based implicit rules.
26
+ % : s.%
27
+
28
+ .SUFFIXES: .hpux_make_needs_suffix_list
29
+
30
+ # Command-line flag to silence nested $(MAKE).
31
+ $(VERBOSE)MAKESILENT = -s
32
+
33
+ #Suppress display of executed commands.
34
+ $(VERBOSE).SILENT:
35
+
36
+ # A target that is always out of date.
37
+ cmake_force:
38
+ .PHONY : cmake_force
39
+
40
+ #=============================================================================
41
+ # Set environment variables for the build.
42
+
43
+ # The shell in which to execute make rules.
44
+ SHELL = /bin/sh
45
+
46
+ # The CMake executable.
47
+ CMAKE_COMMAND = /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake
48
+
49
+ # The command to remove a file.
50
+ RM = /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E rm -f
51
+
52
+ # Escaping for special characters.
53
+ EQUALS = =
54
+
55
+ # The top-level source directory on which CMake was run.
56
+ CMAKE_SOURCE_DIR = /content/pocketsphinx
57
+
58
+ # The top-level build directory on which CMake was run.
59
+ CMAKE_BINARY_DIR = /content/pocketsphinx/build
60
+
61
+ # Utility rule file for ContinuousConfigure.
62
+
63
+ # Include any custom commands dependencies for this target.
64
+ include CMakeFiles/ContinuousConfigure.dir/compiler_depend.make
65
+
66
+ # Include the progress variables for this target.
67
+ include CMakeFiles/ContinuousConfigure.dir/progress.make
68
+
69
+ CMakeFiles/ContinuousConfigure:
70
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/ctest -D ContinuousConfigure
71
+
72
+ ContinuousConfigure: CMakeFiles/ContinuousConfigure
73
+ ContinuousConfigure: CMakeFiles/ContinuousConfigure.dir/build.make
74
+ .PHONY : ContinuousConfigure
75
+
76
+ # Rule to build all files generated by this target.
77
+ CMakeFiles/ContinuousConfigure.dir/build: ContinuousConfigure
78
+ .PHONY : CMakeFiles/ContinuousConfigure.dir/build
79
+
80
+ CMakeFiles/ContinuousConfigure.dir/clean:
81
+ $(CMAKE_COMMAND) -P CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake
82
+ .PHONY : CMakeFiles/ContinuousConfigure.dir/clean
83
+
84
+ CMakeFiles/ContinuousConfigure.dir/depend:
85
+ cd /content/pocketsphinx/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /content/pocketsphinx /content/pocketsphinx /content/pocketsphinx/build /content/pocketsphinx/build /content/pocketsphinx/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake --color=$(COLOR)
86
+ .PHONY : CMakeFiles/ContinuousConfigure.dir/depend
87
+
build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ file(REMOVE_RECURSE
2
+ "CMakeFiles/ContinuousConfigure"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ foreach(lang )
7
+ include(CMakeFiles/ContinuousConfigure.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ endforeach()
build/CMakeFiles/ContinuousConfigure.dir/compiler_depend.make ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # Empty custom commands generated dependencies file for ContinuousConfigure.
2
+ # This may be replaced when dependencies are built.
build/CMakeFiles/ContinuousConfigure.dir/compiler_depend.ts ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # CMAKE generated file: DO NOT EDIT!
2
+ # Timestamp file for custom commands dependencies management for ContinuousConfigure.
build/CMakeFiles/ContinuousConfigure.dir/progress.make ADDED
@@ -0,0 +1 @@
 
 
1
+
build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Consider dependencies only in project.
3
+ set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
4
+
5
+ # The set of languages for which implicit dependencies are needed:
6
+ set(CMAKE_DEPENDS_LANGUAGES
7
+ )
8
+
9
+ # The set of dependency files which are needed:
10
+ set(CMAKE_DEPENDS_DEPENDENCY_FILES
11
+ )
12
+
13
+ # Targets to which this target links.
14
+ set(CMAKE_TARGET_LINKED_INFO_FILES
15
+ )
16
+
17
+ # Fortran module output directory.
18
+ set(CMAKE_Fortran_TARGET_MODULE_DIR "")
build/CMakeFiles/ContinuousCoverage.dir/build.make ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CMAKE generated file: DO NOT EDIT!
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.22
3
+
4
+ # Delete rule output on recipe failure.
5
+ .DELETE_ON_ERROR:
6
+
7
+ #=============================================================================
8
+ # Special targets provided by cmake.
9
+
10
+ # Disable implicit rules so canonical targets will work.
11
+ .SUFFIXES:
12
+
13
+ # Disable VCS-based implicit rules.
14
+ % : %,v
15
+
16
+ # Disable VCS-based implicit rules.
17
+ % : RCS/%
18
+
19
+ # Disable VCS-based implicit rules.
20
+ % : RCS/%,v
21
+
22
+ # Disable VCS-based implicit rules.
23
+ % : SCCS/s.%
24
+
25
+ # Disable VCS-based implicit rules.
26
+ % : s.%
27
+
28
+ .SUFFIXES: .hpux_make_needs_suffix_list
29
+
30
+ # Command-line flag to silence nested $(MAKE).
31
+ $(VERBOSE)MAKESILENT = -s
32
+
33
+ #Suppress display of executed commands.
34
+ $(VERBOSE).SILENT:
35
+
36
+ # A target that is always out of date.
37
+ cmake_force:
38
+ .PHONY : cmake_force
39
+
40
+ #=============================================================================
41
+ # Set environment variables for the build.
42
+
43
+ # The shell in which to execute make rules.
44
+ SHELL = /bin/sh
45
+
46
+ # The CMake executable.
47
+ CMAKE_COMMAND = /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake
48
+
49
+ # The command to remove a file.
50
+ RM = /usr/local/lib/python3.8/dist-packages/cmake/data/bin/cmake -E rm -f
51
+
52
+ # Escaping for special characters.
53
+ EQUALS = =
54
+
55
+ # The top-level source directory on which CMake was run.
56
+ CMAKE_SOURCE_DIR = /content/pocketsphinx
57
+
58
+ # The top-level build directory on which CMake was run.
59
+ CMAKE_BINARY_DIR = /content/pocketsphinx/build
60
+
61
+ # Utility rule file for ContinuousCoverage.
62
+
63
+ # Include any custom commands dependencies for this target.
64
+ include CMakeFiles/ContinuousCoverage.dir/compiler_depend.make
65
+
66
+ # Include the progress variables for this target.
67
+ include CMakeFiles/ContinuousCoverage.dir/progress.make
68
+
69
+ CMakeFiles/ContinuousCoverage:
70
+ /usr/local/lib/python3.8/dist-packages/cmake/data/bin/ctest -D ContinuousCoverage
71
+
72
+ ContinuousCoverage: CMakeFiles/ContinuousCoverage
73
+ ContinuousCoverage: CMakeFiles/ContinuousCoverage.dir/build.make
74
+ .PHONY : ContinuousCoverage
75
+
76
+ # Rule to build all files generated by this target.
77
+ CMakeFiles/ContinuousCoverage.dir/build: ContinuousCoverage
78
+ .PHONY : CMakeFiles/ContinuousCoverage.dir/build
79
+
80
+ CMakeFiles/ContinuousCoverage.dir/clean:
81
+ $(CMAKE_COMMAND) -P CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake
82
+ .PHONY : CMakeFiles/ContinuousCoverage.dir/clean
83
+
84
+ CMakeFiles/ContinuousCoverage.dir/depend:
85
+ cd /content/pocketsphinx/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /content/pocketsphinx /content/pocketsphinx /content/pocketsphinx/build /content/pocketsphinx/build /content/pocketsphinx/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake --color=$(COLOR)
86
+ .PHONY : CMakeFiles/ContinuousCoverage.dir/depend
87
+
build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ file(REMOVE_RECURSE
2
+ "CMakeFiles/ContinuousCoverage"
3
+ )
4
+
5
+ # Per-language clean rules from dependency scanning.
6
+ foreach(lang )
7
+ include(CMakeFiles/ContinuousCoverage.dir/cmake_clean_${lang}.cmake OPTIONAL)
8
+ endforeach()
build/CMakeFiles/ContinuousCoverage.dir/compiler_depend.make ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # Empty custom commands generated dependencies file for ContinuousCoverage.
2
+ # This may be replaced when dependencies are built.
build/CMakeFiles/ContinuousCoverage.dir/compiler_depend.ts ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # CMAKE generated file: DO NOT EDIT!
2
+ # Timestamp file for custom commands dependencies management for ContinuousCoverage.
build/CMakeFiles/ContinuousCoverage.dir/progress.make ADDED
@@ -0,0 +1 @@
 
 
1
+