Spaces:
Running
Running
kevinwang676
commited on
Commit
•
9f5b176
1
Parent(s):
d9e9124
Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- REAPER/CMakeLists.txt +39 -0
- REAPER/CONTRIBUTING.md +13 -0
- REAPER/LICENSE +202 -0
- REAPER/README.md +159 -0
- REAPER/build/CMakeCache.txt +389 -0
- REAPER/build/CMakeFiles/3.27.9/CMakeCCompiler.cmake +74 -0
- REAPER/build/CMakeFiles/3.27.9/CMakeCXXCompiler.cmake +85 -0
- REAPER/build/CMakeFiles/3.27.9/CMakeDetermineCompilerABI_C.bin +3 -0
- REAPER/build/CMakeFiles/3.27.9/CMakeDetermineCompilerABI_CXX.bin +3 -0
- REAPER/build/CMakeFiles/3.27.9/CMakeSystem.cmake +15 -0
- REAPER/build/CMakeFiles/3.27.9/CompilerIdC/CMakeCCompilerId.c +866 -0
- REAPER/build/CMakeFiles/3.27.9/CompilerIdC/a.out +0 -0
- REAPER/build/CMakeFiles/3.27.9/CompilerIdCXX/CMakeCXXCompilerId.cpp +855 -0
- REAPER/build/CMakeFiles/3.27.9/CompilerIdCXX/a.out +0 -0
- REAPER/build/CMakeFiles/CMakeConfigureLog.yaml +607 -0
- REAPER/build/CMakeFiles/CMakeDirectoryInformation.cmake +16 -0
- REAPER/build/CMakeFiles/Makefile.cmake +137 -0
- REAPER/build/CMakeFiles/Makefile2 +199 -0
- REAPER/build/CMakeFiles/TargetDirectories.txt +6 -0
- REAPER/build/CMakeFiles/cmake.check_cache +1 -0
- REAPER/build/CMakeFiles/core.dir/DependInfo.cmake +21 -0
- REAPER/build/CMakeFiles/core.dir/build.make +143 -0
- REAPER/build/CMakeFiles/core.dir/cmake_clean.cmake +15 -0
- REAPER/build/CMakeFiles/core.dir/cmake_clean_target.cmake +3 -0
- REAPER/build/CMakeFiles/core.dir/compiler_depend.make +2 -0
- REAPER/build/CMakeFiles/core.dir/compiler_depend.ts +2 -0
- REAPER/build/CMakeFiles/core.dir/core/file_resource.cc.o +0 -0
- REAPER/build/CMakeFiles/core.dir/core/file_resource.cc.o.d +129 -0
- REAPER/build/CMakeFiles/core.dir/core/float_matrix.cc.o +0 -0
- REAPER/build/CMakeFiles/core.dir/core/float_matrix.cc.o.d +130 -0
- REAPER/build/CMakeFiles/core.dir/core/track.cc.o +0 -0
- REAPER/build/CMakeFiles/core.dir/core/track.cc.o.d +165 -0
- REAPER/build/CMakeFiles/core.dir/depend.make +2 -0
- REAPER/build/CMakeFiles/core.dir/flags.make +10 -0
- REAPER/build/CMakeFiles/core.dir/link.txt +2 -0
- REAPER/build/CMakeFiles/core.dir/progress.make +5 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/DependInfo.cmake +22 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/build.make +159 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/cmake_clean.cmake +17 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/cmake_clean_target.cmake +3 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/compiler_depend.make +2 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/compiler_depend.ts +2 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/depend.make +2 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o +0 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o.d +164 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o +0 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o.d +76 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o +0 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o.d +71 -0
- REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o +0 -0
REAPER/CMakeLists.txt
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
cmake_minimum_required(VERSION 2.8)
|
2 |
+
project(Reaper)
|
3 |
+
|
4 |
+
# Use C11 for unique_ptr
|
5 |
+
include(CheckCXXCompilerFlag)
|
6 |
+
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
|
7 |
+
CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
|
8 |
+
if(COMPILER_SUPPORTS_CXX11)
|
9 |
+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
10 |
+
elseif(COMPILER_SUPPORTS_CXX0X)
|
11 |
+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
|
12 |
+
else()
|
13 |
+
message(STATUS "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
|
14 |
+
endif()
|
15 |
+
|
16 |
+
include_directories(".")
|
17 |
+
|
18 |
+
# Core functionality.
|
19 |
+
add_library(core STATIC core/file_resource.h
|
20 |
+
core/file_resource.cc core/float_matrix.h
|
21 |
+
core/float_matrix-inl.h core/float_matrix.cc core/track.h
|
22 |
+
core/track.cc)
|
23 |
+
|
24 |
+
# Wave functionality.
|
25 |
+
add_library(wave STATIC wave/codec_riff.h wave/codec_riff.cc
|
26 |
+
wave/codec_api.h wave/codec_api-inl.h wave/wave.h wave/wave.cc
|
27 |
+
wave/wave_io.h wave/wave_io-inl.h wave/wave_io.cc)
|
28 |
+
|
29 |
+
# Epoch tracker.
|
30 |
+
add_library(epoch_tracker STATIC epoch_tracker/fft.h epoch_tracker/fft.cc
|
31 |
+
epoch_tracker/fd_filter.h epoch_tracker/fd_filter.cc
|
32 |
+
epoch_tracker/lpc_analyzer.cc epoch_tracker/lpc_analyzer.h
|
33 |
+
epoch_tracker/epoch_tracker.cc epoch_tracker/epoch_tracker.h)
|
34 |
+
|
35 |
+
# Binary to extract F0.
|
36 |
+
add_executable(reaper epoch_tracker_main.cc)
|
37 |
+
target_link_libraries(wave core)
|
38 |
+
target_link_libraries(epoch_tracker wave)
|
39 |
+
target_link_libraries(reaper epoch_tracker)
|
REAPER/CONTRIBUTING.md
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Anyone contributing code must sign a Contributor License Agreement.
|
2 |
+
|
3 |
+
Individual contributors can complete the Individual Contributor
|
4 |
+
License Agreement online:
|
5 |
+
|
6 |
+
https://developers.google.com/open-source/cla/individual
|
7 |
+
|
8 |
+
If you are contributing on behalf of a corporation, fill out the
|
9 |
+
Corporate Contributor License Agreement and send it in as described on
|
10 |
+
this page:
|
11 |
+
|
12 |
+
https://developers.google.com/open-source/cla/corporate
|
13 |
+
|
REAPER/LICENSE
ADDED
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
Apache License
|
3 |
+
Version 2.0, January 2004
|
4 |
+
http://www.apache.org/licenses/
|
5 |
+
|
6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7 |
+
|
8 |
+
1. Definitions.
|
9 |
+
|
10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
12 |
+
|
13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14 |
+
the copyright owner that is granting the License.
|
15 |
+
|
16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
17 |
+
other entities that control, are controlled by, or are under common
|
18 |
+
control with that entity. For the purposes of this definition,
|
19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
20 |
+
direction or management of such entity, whether by contract or
|
21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23 |
+
|
24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25 |
+
exercising permissions granted by this License.
|
26 |
+
|
27 |
+
"Source" form shall mean the preferred form for making modifications,
|
28 |
+
including but not limited to software source code, documentation
|
29 |
+
source, and configuration files.
|
30 |
+
|
31 |
+
"Object" form shall mean any form resulting from mechanical
|
32 |
+
transformation or translation of a Source form, including but
|
33 |
+
not limited to compiled object code, generated documentation,
|
34 |
+
and conversions to other media types.
|
35 |
+
|
36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
37 |
+
Object form, made available under the License, as indicated by a
|
38 |
+
copyright notice that is included in or attached to the work
|
39 |
+
(an example is provided in the Appendix below).
|
40 |
+
|
41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42 |
+
form, that is based on (or derived from) the Work and for which the
|
43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
45 |
+
of this License, Derivative Works shall not include works that remain
|
46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47 |
+
the Work and Derivative Works thereof.
|
48 |
+
|
49 |
+
"Contribution" shall mean any work of authorship, including
|
50 |
+
the original version of the Work and any modifications or additions
|
51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
55 |
+
means any form of electronic, verbal, or written communication sent
|
56 |
+
to the Licensor or its representatives, including but not limited to
|
57 |
+
communication on electronic mailing lists, source code control systems,
|
58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
60 |
+
excluding communication that is conspicuously marked or otherwise
|
61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
62 |
+
|
63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
65 |
+
subsequently incorporated within the Work.
|
66 |
+
|
67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
72 |
+
Work and such Derivative Works in Source or Object form.
|
73 |
+
|
74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77 |
+
(except as stated in this section) patent license to make, have made,
|
78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79 |
+
where such license applies only to those patent claims licensable
|
80 |
+
by such Contributor that are necessarily infringed by their
|
81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
83 |
+
institute patent litigation against any entity (including a
|
84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85 |
+
or a Contribution incorporated within the Work constitutes direct
|
86 |
+
or contributory patent infringement, then any patent licenses
|
87 |
+
granted to You under this License for that Work shall terminate
|
88 |
+
as of the date such litigation is filed.
|
89 |
+
|
90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
91 |
+
Work or Derivative Works thereof in any medium, with or without
|
92 |
+
modifications, and in Source or Object form, provided that You
|
93 |
+
meet the following conditions:
|
94 |
+
|
95 |
+
(a) You must give any other recipients of the Work or
|
96 |
+
Derivative Works a copy of this License; and
|
97 |
+
|
98 |
+
(b) You must cause any modified files to carry prominent notices
|
99 |
+
stating that You changed the files; and
|
100 |
+
|
101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
102 |
+
that You distribute, all copyright, patent, trademark, and
|
103 |
+
attribution notices from the Source form of the Work,
|
104 |
+
excluding those notices that do not pertain to any part of
|
105 |
+
the Derivative Works; and
|
106 |
+
|
107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108 |
+
distribution, then any Derivative Works that You distribute must
|
109 |
+
include a readable copy of the attribution notices contained
|
110 |
+
within such NOTICE file, excluding those notices that do not
|
111 |
+
pertain to any part of the Derivative Works, in at least one
|
112 |
+
of the following places: within a NOTICE text file distributed
|
113 |
+
as part of the Derivative Works; within the Source form or
|
114 |
+
documentation, if provided along with the Derivative Works; or,
|
115 |
+
within a display generated by the Derivative Works, if and
|
116 |
+
wherever such third-party notices normally appear. The contents
|
117 |
+
of the NOTICE file are for informational purposes only and
|
118 |
+
do not modify the License. You may add Your own attribution
|
119 |
+
notices within Derivative Works that You distribute, alongside
|
120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
121 |
+
that such additional attribution notices cannot be construed
|
122 |
+
as modifying the License.
|
123 |
+
|
124 |
+
You may add Your own copyright statement to Your modifications and
|
125 |
+
may provide additional or different license terms and conditions
|
126 |
+
for use, reproduction, or distribution of Your modifications, or
|
127 |
+
for any such Derivative Works as a whole, provided Your use,
|
128 |
+
reproduction, and distribution of the Work otherwise complies with
|
129 |
+
the conditions stated in this License.
|
130 |
+
|
131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
133 |
+
by You to the Licensor shall be under the terms and conditions of
|
134 |
+
this License, without any additional terms or conditions.
|
135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136 |
+
the terms of any separate license agreement you may have executed
|
137 |
+
with Licensor regarding such Contributions.
|
138 |
+
|
139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
141 |
+
except as required for reasonable and customary use in describing the
|
142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
143 |
+
|
144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145 |
+
agreed to in writing, Licensor provides the Work (and each
|
146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148 |
+
implied, including, without limitation, any warranties or conditions
|
149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151 |
+
appropriateness of using or redistributing the Work and assume any
|
152 |
+
risks associated with Your exercise of permissions under this License.
|
153 |
+
|
154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
155 |
+
whether in tort (including negligence), contract, or otherwise,
|
156 |
+
unless required by applicable law (such as deliberate and grossly
|
157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158 |
+
liable to You for damages, including any direct, indirect, special,
|
159 |
+
incidental, or consequential damages of any character arising as a
|
160 |
+
result of this License or out of the use or inability to use the
|
161 |
+
Work (including but not limited to damages for loss of goodwill,
|
162 |
+
work stoppage, computer failure or malfunction, or any and all
|
163 |
+
other commercial damages or losses), even if such Contributor
|
164 |
+
has been advised of the possibility of such damages.
|
165 |
+
|
166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169 |
+
or other liability obligations and/or rights consistent with this
|
170 |
+
License. However, in accepting such obligations, You may act only
|
171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172 |
+
of any other Contributor, and only if You agree to indemnify,
|
173 |
+
defend, and hold each Contributor harmless for any liability
|
174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
175 |
+
of your accepting any such warranty or additional liability.
|
176 |
+
|
177 |
+
END OF TERMS AND CONDITIONS
|
178 |
+
|
179 |
+
APPENDIX: How to apply the Apache License to your work.
|
180 |
+
|
181 |
+
To apply the Apache License to your work, attach the following
|
182 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183 |
+
replaced with your own identifying information. (Don't include
|
184 |
+
the brackets!) The text should be enclosed in the appropriate
|
185 |
+
comment syntax for the file format. We also recommend that a
|
186 |
+
file or class name and description of purpose be included on the
|
187 |
+
same "printed page" as the copyright notice for easier
|
188 |
+
identification within third-party archives.
|
189 |
+
|
190 |
+
Copyright [yyyy] [name of copyright owner]
|
191 |
+
|
192 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193 |
+
you may not use this file except in compliance with the License.
|
194 |
+
You may obtain a copy of the License at
|
195 |
+
|
196 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
197 |
+
|
198 |
+
Unless required by applicable law or agreed to in writing, software
|
199 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201 |
+
See the License for the specific language governing permissions and
|
202 |
+
limitations under the License.
|
REAPER/README.md
ADDED
@@ -0,0 +1,159 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# REAPER: Robust Epoch And Pitch EstimatoR
|
2 |
+
|
3 |
+
This is a speech processing system. The _reaper_ program uses the
|
4 |
+
EpochTracker class to simultaneously estimate the location of
|
5 |
+
voiced-speech "epochs" or glottal closure instants (GCI), voicing
|
6 |
+
state (voiced or unvoiced) and fundamental frequency (F0 or "pitch").
|
7 |
+
We define the local (instantaneous) F0 as the inverse of the time
|
8 |
+
between successive GCI.
|
9 |
+
|
10 |
+
This code was developed by David Talkin at Google. This is not an
|
11 |
+
official Google product (experimental or otherwise), it is just
|
12 |
+
code that happens to be owned by Google.
|
13 |
+
|
14 |
+
## Downloading and Building _reaper_
|
15 |
+
```
|
16 |
+
cd convenient_place_for_repository
|
17 |
+
git clone https://github.com/google/REAPER.git
|
18 |
+
cd REAPER
|
19 |
+
mkdir build # In the REAPER top-level directory
|
20 |
+
cd build
|
21 |
+
cmake ..
|
22 |
+
make
|
23 |
+
```
|
24 |
+
|
25 |
+
_reaper_ will now be in `convenient_place_for_repository/REAPER/build/reaper`
|
26 |
+
|
27 |
+
You may want to add that path to your PATH environment variable or
|
28 |
+
move _reaper_ to your favorite bin repository.
|
29 |
+
|
30 |
+
Example:
|
31 |
+
|
32 |
+
To compute F0 (pitch) and pitchmark (GCI) tracks and write them out as ASCII files:
|
33 |
+
|
34 |
+
`reaper -i /tmp/bla.wav -f /tmp/bla.f0 -p /tmp/bla.pm -a`
|
35 |
+
|
36 |
+
|
37 |
+
## Input Signals:
|
38 |
+
|
39 |
+
As written, the input stage expects 16-bit, signed integer samples.
|
40 |
+
Any reasonable sample rate may be used, but rates below 16 kHz will
|
41 |
+
introduce increasingly coarse quantization of the results, and higher
|
42 |
+
rates will incur quadratic increase in computational requirements
|
43 |
+
without gaining much in output accuracy.
|
44 |
+
|
45 |
+
While REAPER is fairly robust to recording quality, it is designed for
|
46 |
+
use with studio-quality speech signals, such as those recorded for
|
47 |
+
concatenation text-to-speech systems. Phase distortion, such as that
|
48 |
+
introduced by some close-talking microphones or by well-intended
|
49 |
+
recording-studio filtering, including rumble removal, should be
|
50 |
+
avoided, for best results. A rumble filter is provided within REAPER
|
51 |
+
as the recommended (default) high-pass pre-filtering option, and is
|
52 |
+
implemented as a symmetric FIR filter that introduces no phase
|
53 |
+
distortion.
|
54 |
+
|
55 |
+
The help text _(-h)_ provided by the _reaper_ program describes
|
56 |
+
various output options, including debug output of some of the feature
|
57 |
+
signals. Of special interest is the residual waveform which may be
|
58 |
+
used to check for the expected waveshape. (The residual has a
|
59 |
+
_.resid_ filename extension.) During non-nasalized, open vocal tract
|
60 |
+
vocalizations (such as /a/), each period should show a somewhat noisy
|
61 |
+
version of the derivative of the idealized glottal flow. If the computed
|
62 |
+
residual deviates radically from this ideal, the Hilbert transform
|
63 |
+
option _(-t)_ might improve matters.
|
64 |
+
|
65 |
+
## The REAPER Algorithm:
|
66 |
+
|
67 |
+
The process can be broken down into the following phases:
|
68 |
+
* Signal Conditioning
|
69 |
+
* Feature Extraction
|
70 |
+
* Lattice Generation
|
71 |
+
* Dynamic Programming
|
72 |
+
* Backtrace and Output Generation
|
73 |
+
|
74 |
+
|
75 |
+
## Signal Conditioning
|
76 |
+
|
77 |
+
DC bias and low-frequency noise are removed by high-pass filtering,
|
78 |
+
and the signal is converted to floating point. If the input is known
|
79 |
+
to have phase distortion that is impacting tracker performance, a
|
80 |
+
Hilbert transform, optionally done at this point, may improve
|
81 |
+
performance.
|
82 |
+
|
83 |
+
|
84 |
+
## Feature Extraction
|
85 |
+
|
86 |
+
The following feature signals are derived from the conditioned input:
|
87 |
+
* Linear Prediction residual:
|
88 |
+
This is computed using the autocorrelation method and continuous
|
89 |
+
interpolation of the filter coefficients. It is checked for the
|
90 |
+
expected polarity (negative impulses), and inverted, if necessary.
|
91 |
+
* Amplitude-normalized prediction residual:
|
92 |
+
The normalization factor is based on the running, local RMS.
|
93 |
+
* Pseudo-probability of voicing:
|
94 |
+
This is based on a local measure of low-frequency energy normalized
|
95 |
+
by the peak energy in the utterance.
|
96 |
+
* Pseudo-probability of voicing onset:
|
97 |
+
Based on a forward delta of lowpassed energy.
|
98 |
+
* Pseudo-probability of voicing offset:
|
99 |
+
Based on a backward delta of lowpassed energy.
|
100 |
+
* Graded GCI candidates:
|
101 |
+
Each negative peak in the normalized residual is compared with the
|
102 |
+
local RMS. Peaks exceeding a threshold are selected as GCI candidates,
|
103 |
+
and then graded by a weighted combination of peak amplitude, skewness,
|
104 |
+
and sharpness. Each of the resulting candidates is associated with the
|
105 |
+
other feature values that occur closest in time to the candidate.
|
106 |
+
* Normalized cross-correlation functions (NCCF) for each GCI candidate:
|
107 |
+
The correlations are computed on a weighted combination of the speech
|
108 |
+
signal and its LP residual. The correlation reference window for
|
109 |
+
each GCI candidate impulse is centered on the inpulse, and
|
110 |
+
correlations are computed for all lags in the expected pitch period range.
|
111 |
+
|
112 |
+
|
113 |
+
## Lattice Generation
|
114 |
+
|
115 |
+
Each GCI candidate (pulse) is set into a lattice structure that links
|
116 |
+
preceding and following pulses that occur within minimum and maximum
|
117 |
+
pitch period limits that are being considered for the utterance.
|
118 |
+
These links establish all of the period hypotheses that will be
|
119 |
+
considered for the pulse. Each hypothesis is scored on "local"
|
120 |
+
evidence derived from the NCCF and peak quality measures. Each pulse
|
121 |
+
is also assigned an unvoiced hypothesis, which is also given a score
|
122 |
+
based on the available local evidence. The lattice is checked, and
|
123 |
+
modified, if necessary to ensure that each pulse has at least one
|
124 |
+
voiced and one unvoiced hypothesis preceding and following it, to
|
125 |
+
maintain continuity for the dynamic programming to follow.
|
126 |
+
(Note that the "scores" are used as costs during dynamic programming,
|
127 |
+
so that low scores encourage selection of hypotheses.)
|
128 |
+
|
129 |
+
|
130 |
+
## Dynamic Programming
|
131 |
+
|
132 |
+
```
|
133 |
+
For each pulse in the utterance:
|
134 |
+
For each period hypotheses following the pulse:
|
135 |
+
For each period hypothesis preceding the pulse:
|
136 |
+
Score the transition cost of connecting the periods. Choose the
|
137 |
+
minimum overall cost (cumulative+local+transition) preceding
|
138 |
+
period hypothesis, and save its cost and a backpointer to it.
|
139 |
+
The costs of making a voicing state change are modulated by the
|
140 |
+
probability of voicing onset and offset. The cost of
|
141 |
+
voiced-to-voiced transition is based on the delta F0 that
|
142 |
+
occurs, and the cost of staying in the unvoiced state is a
|
143 |
+
constant system parameter.
|
144 |
+
```
|
145 |
+
|
146 |
+
## Backtrace and Output Generation
|
147 |
+
|
148 |
+
Starting at the last peak in the utterance, the lowest cost period
|
149 |
+
candidate ending on that peak is found. This is the starting point
|
150 |
+
for backtracking. The backpointers to the best preceding period
|
151 |
+
candidates are then followed backwards through the utterance. As each
|
152 |
+
"best candidate" is found, the time location of the terminal peak is
|
153 |
+
recorded, along with the F0 corresponding to the period, or 0.0 if the
|
154 |
+
candidate is unvoiced. Instead of simply taking the inverse of the
|
155 |
+
period between GCI estimates as F0, the system refers back to the NCCF
|
156 |
+
for that GCI, and takes the location of the NCCF maximum closest to
|
157 |
+
the GCI-based period as the actual period. The output array of F0 and
|
158 |
+
estimated GCI location is then time-reversed for final output.
|
159 |
+
|
REAPER/build/CMakeCache.txt
ADDED
@@ -0,0 +1,389 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This is the CMakeCache file.
|
2 |
+
# For build in directory: /content/NeuCoSVC-2/REAPER/build
|
3 |
+
# It was generated by CMake: /usr/local/lib/python3.10/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 |
+
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
|
19 |
+
|
20 |
+
//Path to a program.
|
21 |
+
CMAKE_AR:FILEPATH=/usr/bin/ar
|
22 |
+
|
23 |
+
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
24 |
+
// MinSizeRel ...
|
25 |
+
CMAKE_BUILD_TYPE:STRING=
|
26 |
+
|
27 |
+
//Enable/Disable color output during build.
|
28 |
+
CMAKE_COLOR_MAKEFILE:BOOL=ON
|
29 |
+
|
30 |
+
//CXX compiler
|
31 |
+
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
|
32 |
+
|
33 |
+
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
34 |
+
// for the GCC compiler
|
35 |
+
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11
|
36 |
+
|
37 |
+
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
38 |
+
// for the GCC compiler
|
39 |
+
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11
|
40 |
+
|
41 |
+
//Flags used by the CXX compiler during all build types.
|
42 |
+
CMAKE_CXX_FLAGS:STRING=
|
43 |
+
|
44 |
+
//Flags used by the CXX compiler during DEBUG builds.
|
45 |
+
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
|
46 |
+
|
47 |
+
//Flags used by the CXX compiler during MINSIZEREL builds.
|
48 |
+
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
49 |
+
|
50 |
+
//Flags used by the CXX compiler during RELEASE builds.
|
51 |
+
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
52 |
+
|
53 |
+
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
54 |
+
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
55 |
+
|
56 |
+
//C compiler
|
57 |
+
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
|
58 |
+
|
59 |
+
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
60 |
+
// for the GCC compiler
|
61 |
+
CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11
|
62 |
+
|
63 |
+
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
64 |
+
// for the GCC compiler
|
65 |
+
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11
|
66 |
+
|
67 |
+
//Flags used by the C compiler during all build types.
|
68 |
+
CMAKE_C_FLAGS:STRING=
|
69 |
+
|
70 |
+
//Flags used by the C compiler during DEBUG builds.
|
71 |
+
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
72 |
+
|
73 |
+
//Flags used by the C compiler during MINSIZEREL builds.
|
74 |
+
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
75 |
+
|
76 |
+
//Flags used by the C compiler during RELEASE builds.
|
77 |
+
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
78 |
+
|
79 |
+
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
80 |
+
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
81 |
+
|
82 |
+
//Path to a program.
|
83 |
+
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
|
84 |
+
|
85 |
+
//Flags used by the linker during all build types.
|
86 |
+
CMAKE_EXE_LINKER_FLAGS:STRING=
|
87 |
+
|
88 |
+
//Flags used by the linker during DEBUG builds.
|
89 |
+
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
90 |
+
|
91 |
+
//Flags used by the linker during MINSIZEREL builds.
|
92 |
+
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
93 |
+
|
94 |
+
//Flags used by the linker during RELEASE builds.
|
95 |
+
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
96 |
+
|
97 |
+
//Flags used by the linker during RELWITHDEBINFO builds.
|
98 |
+
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
99 |
+
|
100 |
+
//Enable/Disable output of compile commands during generation.
|
101 |
+
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
102 |
+
|
103 |
+
//Value Computed by CMake.
|
104 |
+
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/content/NeuCoSVC-2/REAPER/build/CMakeFiles/pkgRedirects
|
105 |
+
|
106 |
+
//Install path prefix, prepended onto install directories.
|
107 |
+
CMAKE_INSTALL_PREFIX:PATH=/usr/local
|
108 |
+
|
109 |
+
//Path to a program.
|
110 |
+
CMAKE_LINKER:FILEPATH=/usr/bin/ld
|
111 |
+
|
112 |
+
//Path to a program.
|
113 |
+
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake
|
114 |
+
|
115 |
+
//Flags used by the linker during the creation of modules during
|
116 |
+
// all build types.
|
117 |
+
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
118 |
+
|
119 |
+
//Flags used by the linker during the creation of modules during
|
120 |
+
// DEBUG builds.
|
121 |
+
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
122 |
+
|
123 |
+
//Flags used by the linker during the creation of modules during
|
124 |
+
// MINSIZEREL builds.
|
125 |
+
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
126 |
+
|
127 |
+
//Flags used by the linker during the creation of modules during
|
128 |
+
// RELEASE builds.
|
129 |
+
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
130 |
+
|
131 |
+
//Flags used by the linker during the creation of modules during
|
132 |
+
// RELWITHDEBINFO builds.
|
133 |
+
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
134 |
+
|
135 |
+
//Path to a program.
|
136 |
+
CMAKE_NM:FILEPATH=/usr/bin/nm
|
137 |
+
|
138 |
+
//Path to a program.
|
139 |
+
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
|
140 |
+
|
141 |
+
//Path to a program.
|
142 |
+
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
|
143 |
+
|
144 |
+
//Value Computed by CMake
|
145 |
+
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
146 |
+
|
147 |
+
//Value Computed by CMake
|
148 |
+
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
149 |
+
|
150 |
+
//Value Computed by CMake
|
151 |
+
CMAKE_PROJECT_NAME:STATIC=Reaper
|
152 |
+
|
153 |
+
//Path to a program.
|
154 |
+
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
|
155 |
+
|
156 |
+
//Path to a program.
|
157 |
+
CMAKE_READELF:FILEPATH=/usr/bin/readelf
|
158 |
+
|
159 |
+
//Flags used by the linker during the creation of shared libraries
|
160 |
+
// during all build types.
|
161 |
+
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
162 |
+
|
163 |
+
//Flags used by the linker during the creation of shared libraries
|
164 |
+
// during DEBUG builds.
|
165 |
+
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
166 |
+
|
167 |
+
//Flags used by the linker during the creation of shared libraries
|
168 |
+
// during MINSIZEREL builds.
|
169 |
+
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
170 |
+
|
171 |
+
//Flags used by the linker during the creation of shared libraries
|
172 |
+
// during RELEASE builds.
|
173 |
+
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
174 |
+
|
175 |
+
//Flags used by the linker during the creation of shared libraries
|
176 |
+
// during RELWITHDEBINFO builds.
|
177 |
+
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
178 |
+
|
179 |
+
//If set, runtime paths are not added when installing shared libraries,
|
180 |
+
// but are added when building.
|
181 |
+
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
182 |
+
|
183 |
+
//If set, runtime paths are not added when using shared libraries.
|
184 |
+
CMAKE_SKIP_RPATH:BOOL=NO
|
185 |
+
|
186 |
+
//Flags used by the linker during the creation of static libraries
|
187 |
+
// during all build types.
|
188 |
+
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
189 |
+
|
190 |
+
//Flags used by the linker during the creation of static libraries
|
191 |
+
// during DEBUG builds.
|
192 |
+
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
193 |
+
|
194 |
+
//Flags used by the linker during the creation of static libraries
|
195 |
+
// during MINSIZEREL builds.
|
196 |
+
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
197 |
+
|
198 |
+
//Flags used by the linker during the creation of static libraries
|
199 |
+
// during RELEASE builds.
|
200 |
+
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
201 |
+
|
202 |
+
//Flags used by the linker during the creation of static libraries
|
203 |
+
// during RELWITHDEBINFO builds.
|
204 |
+
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
205 |
+
|
206 |
+
//Path to a program.
|
207 |
+
CMAKE_STRIP:FILEPATH=/usr/bin/strip
|
208 |
+
|
209 |
+
//Path to a program.
|
210 |
+
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
|
211 |
+
|
212 |
+
//If this value is on, makefiles will be generated without the
|
213 |
+
// .SILENT directive, and all commands will be echoed to the console
|
214 |
+
// during the make. This is useful for debugging only. With Visual
|
215 |
+
// Studio IDE projects all commands are done without /nologo.
|
216 |
+
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
217 |
+
|
218 |
+
//Value Computed by CMake
|
219 |
+
Reaper_BINARY_DIR:STATIC=/content/NeuCoSVC-2/REAPER/build
|
220 |
+
|
221 |
+
//Value Computed by CMake
|
222 |
+
Reaper_IS_TOP_LEVEL:STATIC=ON
|
223 |
+
|
224 |
+
//Value Computed by CMake
|
225 |
+
Reaper_SOURCE_DIR:STATIC=/content/NeuCoSVC-2/REAPER
|
226 |
+
|
227 |
+
//Dependencies for the target
|
228 |
+
epoch_tracker_LIB_DEPENDS:STATIC=general;wave;
|
229 |
+
|
230 |
+
//Dependencies for the target
|
231 |
+
wave_LIB_DEPENDS:STATIC=general;core;
|
232 |
+
|
233 |
+
|
234 |
+
########################
|
235 |
+
# INTERNAL cache entries
|
236 |
+
########################
|
237 |
+
|
238 |
+
//ADVANCED property for variable: CMAKE_ADDR2LINE
|
239 |
+
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
240 |
+
//ADVANCED property for variable: CMAKE_AR
|
241 |
+
CMAKE_AR-ADVANCED:INTERNAL=1
|
242 |
+
//This is the directory where this CMakeCache.txt was created
|
243 |
+
CMAKE_CACHEFILE_DIR:INTERNAL=/content/NeuCoSVC-2/REAPER/build
|
244 |
+
//Major version of cmake used to create the current loaded cache
|
245 |
+
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
246 |
+
//Minor version of cmake used to create the current loaded cache
|
247 |
+
CMAKE_CACHE_MINOR_VERSION:INTERNAL=27
|
248 |
+
//Patch version of cmake used to create the current loaded cache
|
249 |
+
CMAKE_CACHE_PATCH_VERSION:INTERNAL=9
|
250 |
+
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
|
251 |
+
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
|
252 |
+
//Path to CMake executable.
|
253 |
+
CMAKE_COMMAND:INTERNAL=/usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake
|
254 |
+
//Path to cpack program executable.
|
255 |
+
CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/lib/python3.10/dist-packages/cmake/data/bin/cpack
|
256 |
+
//Path to ctest program executable.
|
257 |
+
CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/lib/python3.10/dist-packages/cmake/data/bin/ctest
|
258 |
+
//ADVANCED property for variable: CMAKE_CXX_COMPILER
|
259 |
+
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
|
260 |
+
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
261 |
+
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
|
262 |
+
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
|
263 |
+
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
264 |
+
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
265 |
+
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
266 |
+
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
267 |
+
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
268 |
+
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
269 |
+
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
270 |
+
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
271 |
+
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
272 |
+
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
273 |
+
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
274 |
+
//ADVANCED property for variable: CMAKE_C_COMPILER
|
275 |
+
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
|
276 |
+
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
|
277 |
+
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
|
278 |
+
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
|
279 |
+
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
280 |
+
//ADVANCED property for variable: CMAKE_C_FLAGS
|
281 |
+
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
282 |
+
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
283 |
+
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
284 |
+
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
285 |
+
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
286 |
+
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
287 |
+
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
288 |
+
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
289 |
+
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
290 |
+
//ADVANCED property for variable: CMAKE_DLLTOOL
|
291 |
+
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
|
292 |
+
//Executable file format
|
293 |
+
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
|
294 |
+
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
295 |
+
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
296 |
+
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
297 |
+
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
298 |
+
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
299 |
+
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
300 |
+
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
301 |
+
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
302 |
+
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
303 |
+
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
304 |
+
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
305 |
+
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
306 |
+
//Name of external makefile project generator.
|
307 |
+
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
308 |
+
//Name of generator.
|
309 |
+
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
|
310 |
+
//Generator instance identifier.
|
311 |
+
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
312 |
+
//Name of generator platform.
|
313 |
+
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
314 |
+
//Name of generator toolset.
|
315 |
+
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
316 |
+
//Source directory with the top level CMakeLists.txt file for this
|
317 |
+
// project
|
318 |
+
CMAKE_HOME_DIRECTORY:INTERNAL=/content/NeuCoSVC-2/REAPER
|
319 |
+
//Install .so files without execute permission.
|
320 |
+
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
|
321 |
+
//ADVANCED property for variable: CMAKE_LINKER
|
322 |
+
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
323 |
+
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
324 |
+
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
325 |
+
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
326 |
+
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
327 |
+
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
328 |
+
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
329 |
+
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
330 |
+
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
331 |
+
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
332 |
+
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
333 |
+
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
334 |
+
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
335 |
+
//ADVANCED property for variable: CMAKE_NM
|
336 |
+
CMAKE_NM-ADVANCED:INTERNAL=1
|
337 |
+
//number of local generators
|
338 |
+
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
|
339 |
+
//ADVANCED property for variable: CMAKE_OBJCOPY
|
340 |
+
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
341 |
+
//ADVANCED property for variable: CMAKE_OBJDUMP
|
342 |
+
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
343 |
+
//Platform information initialized
|
344 |
+
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
345 |
+
//ADVANCED property for variable: CMAKE_RANLIB
|
346 |
+
CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
347 |
+
//ADVANCED property for variable: CMAKE_READELF
|
348 |
+
CMAKE_READELF-ADVANCED:INTERNAL=1
|
349 |
+
//Path to CMake installation.
|
350 |
+
CMAKE_ROOT:INTERNAL=/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27
|
351 |
+
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
352 |
+
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
353 |
+
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
354 |
+
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
355 |
+
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
356 |
+
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
357 |
+
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
358 |
+
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
359 |
+
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
360 |
+
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
361 |
+
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
362 |
+
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
363 |
+
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
364 |
+
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
365 |
+
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
366 |
+
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
367 |
+
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
368 |
+
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
369 |
+
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
370 |
+
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
371 |
+
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
372 |
+
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
373 |
+
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
374 |
+
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
375 |
+
//ADVANCED property for variable: CMAKE_STRIP
|
376 |
+
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
377 |
+
//ADVANCED property for variable: CMAKE_TAPI
|
378 |
+
CMAKE_TAPI-ADVANCED:INTERNAL=1
|
379 |
+
//uname command
|
380 |
+
CMAKE_UNAME:INTERNAL=/usr/bin/uname
|
381 |
+
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
382 |
+
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
383 |
+
//Test COMPILER_SUPPORTS_CXX0X
|
384 |
+
COMPILER_SUPPORTS_CXX0X:INTERNAL=1
|
385 |
+
//Test COMPILER_SUPPORTS_CXX11
|
386 |
+
COMPILER_SUPPORTS_CXX11:INTERNAL=1
|
387 |
+
//linker supports push/pop state
|
388 |
+
_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE
|
389 |
+
|
REAPER/build/CMakeFiles/3.27.9/CMakeCCompiler.cmake
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 "11.4.0")
|
5 |
+
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
6 |
+
set(CMAKE_C_COMPILER_WRAPPER "")
|
7 |
+
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
|
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;c_std_17;c_std_23")
|
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 "c_std_17")
|
14 |
+
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
|
15 |
+
|
16 |
+
set(CMAKE_C_PLATFORM_ID "Linux")
|
17 |
+
set(CMAKE_C_SIMULATE_ID "")
|
18 |
+
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
|
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-11")
|
26 |
+
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
27 |
+
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11")
|
28 |
+
set(CMAKE_LINKER "/usr/bin/ld")
|
29 |
+
set(CMAKE_MT "")
|
30 |
+
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
31 |
+
set(CMAKE_COMPILER_IS_GNUCC 1)
|
32 |
+
set(CMAKE_C_COMPILER_LOADED 1)
|
33 |
+
set(CMAKE_C_COMPILER_WORKS TRUE)
|
34 |
+
set(CMAKE_C_ABI_COMPILED TRUE)
|
35 |
+
|
36 |
+
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
37 |
+
|
38 |
+
set(CMAKE_C_COMPILER_ID_RUN 1)
|
39 |
+
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
40 |
+
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
41 |
+
set(CMAKE_C_LINKER_PREFERENCE 10)
|
42 |
+
set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE)
|
43 |
+
|
44 |
+
# Save compiler ABI information.
|
45 |
+
set(CMAKE_C_SIZEOF_DATA_PTR "8")
|
46 |
+
set(CMAKE_C_COMPILER_ABI "ELF")
|
47 |
+
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
|
48 |
+
set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
|
49 |
+
|
50 |
+
if(CMAKE_C_SIZEOF_DATA_PTR)
|
51 |
+
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
52 |
+
endif()
|
53 |
+
|
54 |
+
if(CMAKE_C_COMPILER_ABI)
|
55 |
+
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
56 |
+
endif()
|
57 |
+
|
58 |
+
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
59 |
+
set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
|
60 |
+
endif()
|
61 |
+
|
62 |
+
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
63 |
+
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
64 |
+
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
65 |
+
endif()
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include")
|
72 |
+
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
|
73 |
+
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib;/usr/local/cuda/lib64/stubs")
|
74 |
+
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
REAPER/build/CMakeFiles/3.27.9/CMakeCXXCompiler.cmake
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
|
2 |
+
set(CMAKE_CXX_COMPILER_ARG1 "")
|
3 |
+
set(CMAKE_CXX_COMPILER_ID "GNU")
|
4 |
+
set(CMAKE_CXX_COMPILER_VERSION "11.4.0")
|
5 |
+
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
6 |
+
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
7 |
+
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
|
8 |
+
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
9 |
+
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23")
|
10 |
+
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
11 |
+
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
12 |
+
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
13 |
+
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
14 |
+
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
15 |
+
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
|
16 |
+
|
17 |
+
set(CMAKE_CXX_PLATFORM_ID "Linux")
|
18 |
+
set(CMAKE_CXX_SIMULATE_ID "")
|
19 |
+
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
|
20 |
+
set(CMAKE_CXX_SIMULATE_VERSION "")
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
set(CMAKE_AR "/usr/bin/ar")
|
26 |
+
set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-11")
|
27 |
+
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
28 |
+
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11")
|
29 |
+
set(CMAKE_LINKER "/usr/bin/ld")
|
30 |
+
set(CMAKE_MT "")
|
31 |
+
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
32 |
+
set(CMAKE_COMPILER_IS_GNUCXX 1)
|
33 |
+
set(CMAKE_CXX_COMPILER_LOADED 1)
|
34 |
+
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
35 |
+
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
36 |
+
|
37 |
+
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
38 |
+
|
39 |
+
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
40 |
+
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m)
|
41 |
+
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
42 |
+
|
43 |
+
foreach (lang C OBJC OBJCXX)
|
44 |
+
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
45 |
+
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
46 |
+
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
47 |
+
endforeach()
|
48 |
+
endif()
|
49 |
+
endforeach()
|
50 |
+
|
51 |
+
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
52 |
+
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
53 |
+
set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE)
|
54 |
+
|
55 |
+
# Save compiler ABI information.
|
56 |
+
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
|
57 |
+
set(CMAKE_CXX_COMPILER_ABI "ELF")
|
58 |
+
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
|
59 |
+
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
|
60 |
+
|
61 |
+
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
62 |
+
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
63 |
+
endif()
|
64 |
+
|
65 |
+
if(CMAKE_CXX_COMPILER_ABI)
|
66 |
+
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
67 |
+
endif()
|
68 |
+
|
69 |
+
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
70 |
+
set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
|
71 |
+
endif()
|
72 |
+
|
73 |
+
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
74 |
+
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
75 |
+
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
76 |
+
endif()
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include")
|
83 |
+
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
|
84 |
+
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib;/usr/local/cuda/lib64/stubs")
|
85 |
+
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
REAPER/build/CMakeFiles/3.27.9/CMakeDetermineCompilerABI_C.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ef64be9d81b97e019f77c3d838930e9679d8d8f33d6d1f4b5840714e45987128
|
3 |
+
size 15968
|
REAPER/build/CMakeFiles/3.27.9/CMakeDetermineCompilerABI_CXX.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3f642dd64274b2cd71b9149b574006831c3103420c752b32d177540a7296d5c3
|
3 |
+
size 15992
|
REAPER/build/CMakeFiles/3.27.9/CMakeSystem.cmake
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
set(CMAKE_HOST_SYSTEM "Linux-6.1.58+")
|
2 |
+
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
3 |
+
set(CMAKE_HOST_SYSTEM_VERSION "6.1.58+")
|
4 |
+
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
5 |
+
|
6 |
+
|
7 |
+
|
8 |
+
set(CMAKE_SYSTEM "Linux-6.1.58+")
|
9 |
+
set(CMAKE_SYSTEM_NAME "Linux")
|
10 |
+
set(CMAKE_SYSTEM_VERSION "6.1.58+")
|
11 |
+
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
12 |
+
|
13 |
+
set(CMAKE_CROSSCOMPILING "FALSE")
|
14 |
+
|
15 |
+
set(CMAKE_SYSTEM_LOADED 1)
|
REAPER/build/CMakeFiles/3.27.9/CompilerIdC/CMakeCCompilerId.c
ADDED
@@ -0,0 +1,866 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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(__open_xl__) && defined(__clang__)
|
182 |
+
# define COMPILER_ID "IBMClang"
|
183 |
+
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
184 |
+
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
185 |
+
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
186 |
+
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
187 |
+
|
188 |
+
|
189 |
+
#elif defined(__ibmxl__) && defined(__clang__)
|
190 |
+
# define COMPILER_ID "XLClang"
|
191 |
+
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
192 |
+
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
193 |
+
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
194 |
+
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
195 |
+
|
196 |
+
|
197 |
+
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
|
198 |
+
# define COMPILER_ID "XL"
|
199 |
+
/* __IBMC__ = VRP */
|
200 |
+
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
201 |
+
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
202 |
+
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
203 |
+
|
204 |
+
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
|
205 |
+
# define COMPILER_ID "VisualAge"
|
206 |
+
/* __IBMC__ = VRP */
|
207 |
+
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
208 |
+
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
209 |
+
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
210 |
+
|
211 |
+
#elif defined(__NVCOMPILER)
|
212 |
+
# define COMPILER_ID "NVHPC"
|
213 |
+
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
214 |
+
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
215 |
+
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
216 |
+
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
217 |
+
# endif
|
218 |
+
|
219 |
+
#elif defined(__PGI)
|
220 |
+
# define COMPILER_ID "PGI"
|
221 |
+
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
222 |
+
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
223 |
+
# if defined(__PGIC_PATCHLEVEL__)
|
224 |
+
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
225 |
+
# endif
|
226 |
+
|
227 |
+
#elif defined(_CRAYC)
|
228 |
+
# define COMPILER_ID "Cray"
|
229 |
+
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
230 |
+
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
231 |
+
|
232 |
+
#elif defined(__TI_COMPILER_VERSION__)
|
233 |
+
# define COMPILER_ID "TI"
|
234 |
+
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
235 |
+
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
236 |
+
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
237 |
+
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
238 |
+
|
239 |
+
#elif defined(__CLANG_FUJITSU)
|
240 |
+
# define COMPILER_ID "FujitsuClang"
|
241 |
+
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
242 |
+
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
243 |
+
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
244 |
+
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
245 |
+
|
246 |
+
|
247 |
+
#elif defined(__FUJITSU)
|
248 |
+
# define COMPILER_ID "Fujitsu"
|
249 |
+
# if defined(__FCC_version__)
|
250 |
+
# define COMPILER_VERSION __FCC_version__
|
251 |
+
# elif defined(__FCC_major__)
|
252 |
+
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
253 |
+
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
254 |
+
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
255 |
+
# endif
|
256 |
+
# if defined(__fcc_version)
|
257 |
+
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
258 |
+
# elif defined(__FCC_VERSION)
|
259 |
+
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
260 |
+
# endif
|
261 |
+
|
262 |
+
|
263 |
+
#elif defined(__ghs__)
|
264 |
+
# define COMPILER_ID "GHS"
|
265 |
+
/* __GHS_VERSION_NUMBER = VVVVRP */
|
266 |
+
# ifdef __GHS_VERSION_NUMBER
|
267 |
+
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
268 |
+
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
269 |
+
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
270 |
+
# endif
|
271 |
+
|
272 |
+
#elif defined(__TASKING__)
|
273 |
+
# define COMPILER_ID "Tasking"
|
274 |
+
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
|
275 |
+
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
|
276 |
+
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
|
277 |
+
|
278 |
+
#elif defined(__TINYC__)
|
279 |
+
# define COMPILER_ID "TinyCC"
|
280 |
+
|
281 |
+
#elif defined(__BCC__)
|
282 |
+
# define COMPILER_ID "Bruce"
|
283 |
+
|
284 |
+
#elif defined(__SCO_VERSION__)
|
285 |
+
# define COMPILER_ID "SCO"
|
286 |
+
|
287 |
+
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
288 |
+
# define COMPILER_ID "ARMCC"
|
289 |
+
#if __ARMCC_VERSION >= 1000000
|
290 |
+
/* __ARMCC_VERSION = VRRPPPP */
|
291 |
+
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
292 |
+
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
293 |
+
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
294 |
+
#else
|
295 |
+
/* __ARMCC_VERSION = VRPPPP */
|
296 |
+
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
297 |
+
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
298 |
+
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
299 |
+
#endif
|
300 |
+
|
301 |
+
|
302 |
+
#elif defined(__clang__) && defined(__apple_build_version__)
|
303 |
+
# define COMPILER_ID "AppleClang"
|
304 |
+
# if defined(_MSC_VER)
|
305 |
+
# define SIMULATE_ID "MSVC"
|
306 |
+
# endif
|
307 |
+
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
308 |
+
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
309 |
+
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
310 |
+
# if defined(_MSC_VER)
|
311 |
+
/* _MSC_VER = VVRR */
|
312 |
+
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
313 |
+
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
314 |
+
# endif
|
315 |
+
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
316 |
+
|
317 |
+
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
318 |
+
# define COMPILER_ID "ARMClang"
|
319 |
+
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
320 |
+
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
321 |
+
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
|
322 |
+
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
323 |
+
|
324 |
+
#elif defined(__clang__)
|
325 |
+
# define COMPILER_ID "Clang"
|
326 |
+
# if defined(_MSC_VER)
|
327 |
+
# define SIMULATE_ID "MSVC"
|
328 |
+
# endif
|
329 |
+
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
330 |
+
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
331 |
+
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
332 |
+
# if defined(_MSC_VER)
|
333 |
+
/* _MSC_VER = VVRR */
|
334 |
+
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
335 |
+
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
336 |
+
# endif
|
337 |
+
|
338 |
+
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
339 |
+
# define COMPILER_ID "LCC"
|
340 |
+
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
|
341 |
+
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
|
342 |
+
# if defined(__LCC_MINOR__)
|
343 |
+
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
344 |
+
# endif
|
345 |
+
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
346 |
+
# define SIMULATE_ID "GNU"
|
347 |
+
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
348 |
+
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
349 |
+
# if defined(__GNUC_PATCHLEVEL__)
|
350 |
+
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
351 |
+
# endif
|
352 |
+
# endif
|
353 |
+
|
354 |
+
#elif defined(__GNUC__)
|
355 |
+
# define COMPILER_ID "GNU"
|
356 |
+
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
357 |
+
# if defined(__GNUC_MINOR__)
|
358 |
+
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
359 |
+
# endif
|
360 |
+
# if defined(__GNUC_PATCHLEVEL__)
|
361 |
+
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
362 |
+
# endif
|
363 |
+
|
364 |
+
#elif defined(_MSC_VER)
|
365 |
+
# define COMPILER_ID "MSVC"
|
366 |
+
/* _MSC_VER = VVRR */
|
367 |
+
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
368 |
+
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
369 |
+
# if defined(_MSC_FULL_VER)
|
370 |
+
# if _MSC_VER >= 1400
|
371 |
+
/* _MSC_FULL_VER = VVRRPPPPP */
|
372 |
+
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
373 |
+
# else
|
374 |
+
/* _MSC_FULL_VER = VVRRPPPP */
|
375 |
+
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
376 |
+
# endif
|
377 |
+
# endif
|
378 |
+
# if defined(_MSC_BUILD)
|
379 |
+
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
380 |
+
# endif
|
381 |
+
|
382 |
+
#elif defined(_ADI_COMPILER)
|
383 |
+
# define COMPILER_ID "ADSP"
|
384 |
+
#if defined(__VERSIONNUM__)
|
385 |
+
/* __VERSIONNUM__ = 0xVVRRPPTT */
|
386 |
+
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
|
387 |
+
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
|
388 |
+
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
|
389 |
+
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
|
390 |
+
#endif
|
391 |
+
|
392 |
+
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
393 |
+
# define COMPILER_ID "IAR"
|
394 |
+
# if defined(__VER__) && defined(__ICCARM__)
|
395 |
+
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
396 |
+
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
397 |
+
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
398 |
+
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
399 |
+
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
400 |
+
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
401 |
+
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
402 |
+
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
403 |
+
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
404 |
+
# endif
|
405 |
+
|
406 |
+
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
|
407 |
+
# define COMPILER_ID "SDCC"
|
408 |
+
# if defined(__SDCC_VERSION_MAJOR)
|
409 |
+
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
|
410 |
+
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
|
411 |
+
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
|
412 |
+
# else
|
413 |
+
/* SDCC = VRP */
|
414 |
+
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
|
415 |
+
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
|
416 |
+
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
|
417 |
+
# endif
|
418 |
+
|
419 |
+
|
420 |
+
/* These compilers are either not known or too old to define an
|
421 |
+
identification macro. Try to identify the platform and guess that
|
422 |
+
it is the native compiler. */
|
423 |
+
#elif defined(__hpux) || defined(__hpua)
|
424 |
+
# define COMPILER_ID "HP"
|
425 |
+
|
426 |
+
#else /* unknown compiler */
|
427 |
+
# define COMPILER_ID ""
|
428 |
+
#endif
|
429 |
+
|
430 |
+
/* Construct the string literal in pieces to prevent the source from
|
431 |
+
getting matched. Store it in a pointer rather than an array
|
432 |
+
because some compilers will just produce instructions to fill the
|
433 |
+
array rather than assigning a pointer to a static array. */
|
434 |
+
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
435 |
+
#ifdef SIMULATE_ID
|
436 |
+
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
437 |
+
#endif
|
438 |
+
|
439 |
+
#ifdef __QNXNTO__
|
440 |
+
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
441 |
+
#endif
|
442 |
+
|
443 |
+
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
444 |
+
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
445 |
+
#endif
|
446 |
+
|
447 |
+
#define STRINGIFY_HELPER(X) #X
|
448 |
+
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
449 |
+
|
450 |
+
/* Identify known platforms by name. */
|
451 |
+
#if defined(__linux) || defined(__linux__) || defined(linux)
|
452 |
+
# define PLATFORM_ID "Linux"
|
453 |
+
|
454 |
+
#elif defined(__MSYS__)
|
455 |
+
# define PLATFORM_ID "MSYS"
|
456 |
+
|
457 |
+
#elif defined(__CYGWIN__)
|
458 |
+
# define PLATFORM_ID "Cygwin"
|
459 |
+
|
460 |
+
#elif defined(__MINGW32__)
|
461 |
+
# define PLATFORM_ID "MinGW"
|
462 |
+
|
463 |
+
#elif defined(__APPLE__)
|
464 |
+
# define PLATFORM_ID "Darwin"
|
465 |
+
|
466 |
+
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
467 |
+
# define PLATFORM_ID "Windows"
|
468 |
+
|
469 |
+
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
470 |
+
# define PLATFORM_ID "FreeBSD"
|
471 |
+
|
472 |
+
#elif defined(__NetBSD__) || defined(__NetBSD)
|
473 |
+
# define PLATFORM_ID "NetBSD"
|
474 |
+
|
475 |
+
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
476 |
+
# define PLATFORM_ID "OpenBSD"
|
477 |
+
|
478 |
+
#elif defined(__sun) || defined(sun)
|
479 |
+
# define PLATFORM_ID "SunOS"
|
480 |
+
|
481 |
+
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
482 |
+
# define PLATFORM_ID "AIX"
|
483 |
+
|
484 |
+
#elif defined(__hpux) || defined(__hpux__)
|
485 |
+
# define PLATFORM_ID "HP-UX"
|
486 |
+
|
487 |
+
#elif defined(__HAIKU__)
|
488 |
+
# define PLATFORM_ID "Haiku"
|
489 |
+
|
490 |
+
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
491 |
+
# define PLATFORM_ID "BeOS"
|
492 |
+
|
493 |
+
#elif defined(__QNX__) || defined(__QNXNTO__)
|
494 |
+
# define PLATFORM_ID "QNX"
|
495 |
+
|
496 |
+
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
497 |
+
# define PLATFORM_ID "Tru64"
|
498 |
+
|
499 |
+
#elif defined(__riscos) || defined(__riscos__)
|
500 |
+
# define PLATFORM_ID "RISCos"
|
501 |
+
|
502 |
+
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
503 |
+
# define PLATFORM_ID "SINIX"
|
504 |
+
|
505 |
+
#elif defined(__UNIX_SV__)
|
506 |
+
# define PLATFORM_ID "UNIX_SV"
|
507 |
+
|
508 |
+
#elif defined(__bsdos__)
|
509 |
+
# define PLATFORM_ID "BSDOS"
|
510 |
+
|
511 |
+
#elif defined(_MPRAS) || defined(MPRAS)
|
512 |
+
# define PLATFORM_ID "MP-RAS"
|
513 |
+
|
514 |
+
#elif defined(__osf) || defined(__osf__)
|
515 |
+
# define PLATFORM_ID "OSF1"
|
516 |
+
|
517 |
+
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
518 |
+
# define PLATFORM_ID "SCO_SV"
|
519 |
+
|
520 |
+
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
521 |
+
# define PLATFORM_ID "ULTRIX"
|
522 |
+
|
523 |
+
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
524 |
+
# define PLATFORM_ID "Xenix"
|
525 |
+
|
526 |
+
#elif defined(__WATCOMC__)
|
527 |
+
# if defined(__LINUX__)
|
528 |
+
# define PLATFORM_ID "Linux"
|
529 |
+
|
530 |
+
# elif defined(__DOS__)
|
531 |
+
# define PLATFORM_ID "DOS"
|
532 |
+
|
533 |
+
# elif defined(__OS2__)
|
534 |
+
# define PLATFORM_ID "OS2"
|
535 |
+
|
536 |
+
# elif defined(__WINDOWS__)
|
537 |
+
# define PLATFORM_ID "Windows3x"
|
538 |
+
|
539 |
+
# elif defined(__VXWORKS__)
|
540 |
+
# define PLATFORM_ID "VxWorks"
|
541 |
+
|
542 |
+
# else /* unknown platform */
|
543 |
+
# define PLATFORM_ID
|
544 |
+
# endif
|
545 |
+
|
546 |
+
#elif defined(__INTEGRITY)
|
547 |
+
# if defined(INT_178B)
|
548 |
+
# define PLATFORM_ID "Integrity178"
|
549 |
+
|
550 |
+
# else /* regular Integrity */
|
551 |
+
# define PLATFORM_ID "Integrity"
|
552 |
+
# endif
|
553 |
+
|
554 |
+
# elif defined(_ADI_COMPILER)
|
555 |
+
# define PLATFORM_ID "ADSP"
|
556 |
+
|
557 |
+
#else /* unknown platform */
|
558 |
+
# define PLATFORM_ID
|
559 |
+
|
560 |
+
#endif
|
561 |
+
|
562 |
+
/* For windows compilers MSVC and Intel we can determine
|
563 |
+
the architecture of the compiler being used. This is because
|
564 |
+
the compilers do not have flags that can change the architecture,
|
565 |
+
but rather depend on which compiler is being used
|
566 |
+
*/
|
567 |
+
#if defined(_WIN32) && defined(_MSC_VER)
|
568 |
+
# if defined(_M_IA64)
|
569 |
+
# define ARCHITECTURE_ID "IA64"
|
570 |
+
|
571 |
+
# elif defined(_M_ARM64EC)
|
572 |
+
# define ARCHITECTURE_ID "ARM64EC"
|
573 |
+
|
574 |
+
# elif defined(_M_X64) || defined(_M_AMD64)
|
575 |
+
# define ARCHITECTURE_ID "x64"
|
576 |
+
|
577 |
+
# elif defined(_M_IX86)
|
578 |
+
# define ARCHITECTURE_ID "X86"
|
579 |
+
|
580 |
+
# elif defined(_M_ARM64)
|
581 |
+
# define ARCHITECTURE_ID "ARM64"
|
582 |
+
|
583 |
+
# elif defined(_M_ARM)
|
584 |
+
# if _M_ARM == 4
|
585 |
+
# define ARCHITECTURE_ID "ARMV4I"
|
586 |
+
# elif _M_ARM == 5
|
587 |
+
# define ARCHITECTURE_ID "ARMV5I"
|
588 |
+
# else
|
589 |
+
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
590 |
+
# endif
|
591 |
+
|
592 |
+
# elif defined(_M_MIPS)
|
593 |
+
# define ARCHITECTURE_ID "MIPS"
|
594 |
+
|
595 |
+
# elif defined(_M_SH)
|
596 |
+
# define ARCHITECTURE_ID "SHx"
|
597 |
+
|
598 |
+
# else /* unknown architecture */
|
599 |
+
# define ARCHITECTURE_ID ""
|
600 |
+
# endif
|
601 |
+
|
602 |
+
#elif defined(__WATCOMC__)
|
603 |
+
# if defined(_M_I86)
|
604 |
+
# define ARCHITECTURE_ID "I86"
|
605 |
+
|
606 |
+
# elif defined(_M_IX86)
|
607 |
+
# define ARCHITECTURE_ID "X86"
|
608 |
+
|
609 |
+
# else /* unknown architecture */
|
610 |
+
# define ARCHITECTURE_ID ""
|
611 |
+
# endif
|
612 |
+
|
613 |
+
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
614 |
+
# if defined(__ICCARM__)
|
615 |
+
# define ARCHITECTURE_ID "ARM"
|
616 |
+
|
617 |
+
# elif defined(__ICCRX__)
|
618 |
+
# define ARCHITECTURE_ID "RX"
|
619 |
+
|
620 |
+
# elif defined(__ICCRH850__)
|
621 |
+
# define ARCHITECTURE_ID "RH850"
|
622 |
+
|
623 |
+
# elif defined(__ICCRL78__)
|
624 |
+
# define ARCHITECTURE_ID "RL78"
|
625 |
+
|
626 |
+
# elif defined(__ICCRISCV__)
|
627 |
+
# define ARCHITECTURE_ID "RISCV"
|
628 |
+
|
629 |
+
# elif defined(__ICCAVR__)
|
630 |
+
# define ARCHITECTURE_ID "AVR"
|
631 |
+
|
632 |
+
# elif defined(__ICC430__)
|
633 |
+
# define ARCHITECTURE_ID "MSP430"
|
634 |
+
|
635 |
+
# elif defined(__ICCV850__)
|
636 |
+
# define ARCHITECTURE_ID "V850"
|
637 |
+
|
638 |
+
# elif defined(__ICC8051__)
|
639 |
+
# define ARCHITECTURE_ID "8051"
|
640 |
+
|
641 |
+
# elif defined(__ICCSTM8__)
|
642 |
+
# define ARCHITECTURE_ID "STM8"
|
643 |
+
|
644 |
+
# else /* unknown architecture */
|
645 |
+
# define ARCHITECTURE_ID ""
|
646 |
+
# endif
|
647 |
+
|
648 |
+
#elif defined(__ghs__)
|
649 |
+
# if defined(__PPC64__)
|
650 |
+
# define ARCHITECTURE_ID "PPC64"
|
651 |
+
|
652 |
+
# elif defined(__ppc__)
|
653 |
+
# define ARCHITECTURE_ID "PPC"
|
654 |
+
|
655 |
+
# elif defined(__ARM__)
|
656 |
+
# define ARCHITECTURE_ID "ARM"
|
657 |
+
|
658 |
+
# elif defined(__x86_64__)
|
659 |
+
# define ARCHITECTURE_ID "x64"
|
660 |
+
|
661 |
+
# elif defined(__i386__)
|
662 |
+
# define ARCHITECTURE_ID "X86"
|
663 |
+
|
664 |
+
# else /* unknown architecture */
|
665 |
+
# define ARCHITECTURE_ID ""
|
666 |
+
# endif
|
667 |
+
|
668 |
+
#elif defined(__TI_COMPILER_VERSION__)
|
669 |
+
# if defined(__TI_ARM__)
|
670 |
+
# define ARCHITECTURE_ID "ARM"
|
671 |
+
|
672 |
+
# elif defined(__MSP430__)
|
673 |
+
# define ARCHITECTURE_ID "MSP430"
|
674 |
+
|
675 |
+
# elif defined(__TMS320C28XX__)
|
676 |
+
# define ARCHITECTURE_ID "TMS320C28x"
|
677 |
+
|
678 |
+
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
679 |
+
# define ARCHITECTURE_ID "TMS320C6x"
|
680 |
+
|
681 |
+
# else /* unknown architecture */
|
682 |
+
# define ARCHITECTURE_ID ""
|
683 |
+
# endif
|
684 |
+
|
685 |
+
# elif defined(__ADSPSHARC__)
|
686 |
+
# define ARCHITECTURE_ID "SHARC"
|
687 |
+
|
688 |
+
# elif defined(__ADSPBLACKFIN__)
|
689 |
+
# define ARCHITECTURE_ID "Blackfin"
|
690 |
+
|
691 |
+
#elif defined(__TASKING__)
|
692 |
+
|
693 |
+
# if defined(__CTC__) || defined(__CPTC__)
|
694 |
+
# define ARCHITECTURE_ID "TriCore"
|
695 |
+
|
696 |
+
# elif defined(__CMCS__)
|
697 |
+
# define ARCHITECTURE_ID "MCS"
|
698 |
+
|
699 |
+
# elif defined(__CARM__)
|
700 |
+
# define ARCHITECTURE_ID "ARM"
|
701 |
+
|
702 |
+
# elif defined(__CARC__)
|
703 |
+
# define ARCHITECTURE_ID "ARC"
|
704 |
+
|
705 |
+
# elif defined(__C51__)
|
706 |
+
# define ARCHITECTURE_ID "8051"
|
707 |
+
|
708 |
+
# elif defined(__CPCP__)
|
709 |
+
# define ARCHITECTURE_ID "PCP"
|
710 |
+
|
711 |
+
# else
|
712 |
+
# define ARCHITECTURE_ID ""
|
713 |
+
# endif
|
714 |
+
|
715 |
+
#else
|
716 |
+
# define ARCHITECTURE_ID
|
717 |
+
#endif
|
718 |
+
|
719 |
+
/* Convert integer to decimal digit literals. */
|
720 |
+
#define DEC(n) \
|
721 |
+
('0' + (((n) / 10000000)%10)), \
|
722 |
+
('0' + (((n) / 1000000)%10)), \
|
723 |
+
('0' + (((n) / 100000)%10)), \
|
724 |
+
('0' + (((n) / 10000)%10)), \
|
725 |
+
('0' + (((n) / 1000)%10)), \
|
726 |
+
('0' + (((n) / 100)%10)), \
|
727 |
+
('0' + (((n) / 10)%10)), \
|
728 |
+
('0' + ((n) % 10))
|
729 |
+
|
730 |
+
/* Convert integer to hex digit literals. */
|
731 |
+
#define HEX(n) \
|
732 |
+
('0' + ((n)>>28 & 0xF)), \
|
733 |
+
('0' + ((n)>>24 & 0xF)), \
|
734 |
+
('0' + ((n)>>20 & 0xF)), \
|
735 |
+
('0' + ((n)>>16 & 0xF)), \
|
736 |
+
('0' + ((n)>>12 & 0xF)), \
|
737 |
+
('0' + ((n)>>8 & 0xF)), \
|
738 |
+
('0' + ((n)>>4 & 0xF)), \
|
739 |
+
('0' + ((n) & 0xF))
|
740 |
+
|
741 |
+
/* Construct a string literal encoding the version number. */
|
742 |
+
#ifdef COMPILER_VERSION
|
743 |
+
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
744 |
+
|
745 |
+
/* Construct a string literal encoding the version number components. */
|
746 |
+
#elif defined(COMPILER_VERSION_MAJOR)
|
747 |
+
char const info_version[] = {
|
748 |
+
'I', 'N', 'F', 'O', ':',
|
749 |
+
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
750 |
+
COMPILER_VERSION_MAJOR,
|
751 |
+
# ifdef COMPILER_VERSION_MINOR
|
752 |
+
'.', COMPILER_VERSION_MINOR,
|
753 |
+
# ifdef COMPILER_VERSION_PATCH
|
754 |
+
'.', COMPILER_VERSION_PATCH,
|
755 |
+
# ifdef COMPILER_VERSION_TWEAK
|
756 |
+
'.', COMPILER_VERSION_TWEAK,
|
757 |
+
# endif
|
758 |
+
# endif
|
759 |
+
# endif
|
760 |
+
']','\0'};
|
761 |
+
#endif
|
762 |
+
|
763 |
+
/* Construct a string literal encoding the internal version number. */
|
764 |
+
#ifdef COMPILER_VERSION_INTERNAL
|
765 |
+
char const info_version_internal[] = {
|
766 |
+
'I', 'N', 'F', 'O', ':',
|
767 |
+
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
768 |
+
'i','n','t','e','r','n','a','l','[',
|
769 |
+
COMPILER_VERSION_INTERNAL,']','\0'};
|
770 |
+
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
771 |
+
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
772 |
+
#endif
|
773 |
+
|
774 |
+
/* Construct a string literal encoding the version number components. */
|
775 |
+
#ifdef SIMULATE_VERSION_MAJOR
|
776 |
+
char const info_simulate_version[] = {
|
777 |
+
'I', 'N', 'F', 'O', ':',
|
778 |
+
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
779 |
+
SIMULATE_VERSION_MAJOR,
|
780 |
+
# ifdef SIMULATE_VERSION_MINOR
|
781 |
+
'.', SIMULATE_VERSION_MINOR,
|
782 |
+
# ifdef SIMULATE_VERSION_PATCH
|
783 |
+
'.', SIMULATE_VERSION_PATCH,
|
784 |
+
# ifdef SIMULATE_VERSION_TWEAK
|
785 |
+
'.', SIMULATE_VERSION_TWEAK,
|
786 |
+
# endif
|
787 |
+
# endif
|
788 |
+
# endif
|
789 |
+
']','\0'};
|
790 |
+
#endif
|
791 |
+
|
792 |
+
/* Construct the string literal in pieces to prevent the source from
|
793 |
+
getting matched. Store it in a pointer rather than an array
|
794 |
+
because some compilers will just produce instructions to fill the
|
795 |
+
array rather than assigning a pointer to a static array. */
|
796 |
+
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
797 |
+
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
798 |
+
|
799 |
+
|
800 |
+
|
801 |
+
#if !defined(__STDC__) && !defined(__clang__)
|
802 |
+
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
|
803 |
+
# define C_VERSION "90"
|
804 |
+
# else
|
805 |
+
# define C_VERSION
|
806 |
+
# endif
|
807 |
+
#elif __STDC_VERSION__ > 201710L
|
808 |
+
# define C_VERSION "23"
|
809 |
+
#elif __STDC_VERSION__ >= 201710L
|
810 |
+
# define C_VERSION "17"
|
811 |
+
#elif __STDC_VERSION__ >= 201000L
|
812 |
+
# define C_VERSION "11"
|
813 |
+
#elif __STDC_VERSION__ >= 199901L
|
814 |
+
# define C_VERSION "99"
|
815 |
+
#else
|
816 |
+
# define C_VERSION "90"
|
817 |
+
#endif
|
818 |
+
const char* info_language_standard_default =
|
819 |
+
"INFO" ":" "standard_default[" C_VERSION "]";
|
820 |
+
|
821 |
+
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
822 |
+
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
823 |
+
defined(__TI_COMPILER_VERSION__)) && \
|
824 |
+
!defined(__STRICT_ANSI__)
|
825 |
+
"ON"
|
826 |
+
#else
|
827 |
+
"OFF"
|
828 |
+
#endif
|
829 |
+
"]";
|
830 |
+
|
831 |
+
/*--------------------------------------------------------------------------*/
|
832 |
+
|
833 |
+
#ifdef ID_VOID_MAIN
|
834 |
+
void main() {}
|
835 |
+
#else
|
836 |
+
# if defined(__CLASSIC_C__)
|
837 |
+
int main(argc, argv) int argc; char *argv[];
|
838 |
+
# else
|
839 |
+
int main(int argc, char* argv[])
|
840 |
+
# endif
|
841 |
+
{
|
842 |
+
int require = 0;
|
843 |
+
require += info_compiler[argc];
|
844 |
+
require += info_platform[argc];
|
845 |
+
require += info_arch[argc];
|
846 |
+
#ifdef COMPILER_VERSION_MAJOR
|
847 |
+
require += info_version[argc];
|
848 |
+
#endif
|
849 |
+
#ifdef COMPILER_VERSION_INTERNAL
|
850 |
+
require += info_version_internal[argc];
|
851 |
+
#endif
|
852 |
+
#ifdef SIMULATE_ID
|
853 |
+
require += info_simulate[argc];
|
854 |
+
#endif
|
855 |
+
#ifdef SIMULATE_VERSION_MAJOR
|
856 |
+
require += info_simulate_version[argc];
|
857 |
+
#endif
|
858 |
+
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
859 |
+
require += info_cray[argc];
|
860 |
+
#endif
|
861 |
+
require += info_language_standard_default[argc];
|
862 |
+
require += info_language_extensions_default[argc];
|
863 |
+
(void)argv;
|
864 |
+
return require;
|
865 |
+
}
|
866 |
+
#endif
|
REAPER/build/CMakeFiles/3.27.9/CompilerIdC/a.out
ADDED
Binary file (16.1 kB). View file
|
|
REAPER/build/CMakeFiles/3.27.9/CompilerIdCXX/CMakeCXXCompilerId.cpp
ADDED
@@ -0,0 +1,855 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* This source file must have a .cpp extension so that all C++ compilers
|
2 |
+
recognize the extension without flags. Borland does not know .cxx for
|
3 |
+
example. */
|
4 |
+
#ifndef __cplusplus
|
5 |
+
# error "A C compiler has been selected for C++."
|
6 |
+
#endif
|
7 |
+
|
8 |
+
#if !defined(__has_include)
|
9 |
+
/* If the compiler does not have __has_include, pretend the answer is
|
10 |
+
always no. */
|
11 |
+
# define __has_include(x) 0
|
12 |
+
#endif
|
13 |
+
|
14 |
+
|
15 |
+
/* Version number components: V=Version, R=Revision, P=Patch
|
16 |
+
Version date components: YYYY=Year, MM=Month, DD=Day */
|
17 |
+
|
18 |
+
#if defined(__COMO__)
|
19 |
+
# define COMPILER_ID "Comeau"
|
20 |
+
/* __COMO_VERSION__ = VRR */
|
21 |
+
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
|
22 |
+
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
|
23 |
+
|
24 |
+
#elif 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_CC)
|
147 |
+
# define COMPILER_ID "SunPro"
|
148 |
+
# if __SUNPRO_CC >= 0x5100
|
149 |
+
/* __SUNPRO_CC = 0xVRRP */
|
150 |
+
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
|
151 |
+
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
|
152 |
+
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
153 |
+
# else
|
154 |
+
/* __SUNPRO_CC = 0xVRP */
|
155 |
+
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
|
156 |
+
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
|
157 |
+
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
158 |
+
# endif
|
159 |
+
|
160 |
+
#elif defined(__HP_aCC)
|
161 |
+
# define COMPILER_ID "HP"
|
162 |
+
/* __HP_aCC = VVRRPP */
|
163 |
+
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
|
164 |
+
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
|
165 |
+
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
|
166 |
+
|
167 |
+
#elif defined(__DECCXX)
|
168 |
+
# define COMPILER_ID "Compaq"
|
169 |
+
/* __DECCXX_VER = VVRRTPPPP */
|
170 |
+
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
|
171 |
+
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
|
172 |
+
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
|
173 |
+
|
174 |
+
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
|
175 |
+
# define COMPILER_ID "zOS"
|
176 |
+
/* __IBMCPP__ = VRP */
|
177 |
+
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
178 |
+
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
179 |
+
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
180 |
+
|
181 |
+
#elif defined(__open_xl__) && defined(__clang__)
|
182 |
+
# define COMPILER_ID "IBMClang"
|
183 |
+
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
184 |
+
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
185 |
+
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
186 |
+
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
187 |
+
|
188 |
+
|
189 |
+
#elif defined(__ibmxl__) && defined(__clang__)
|
190 |
+
# define COMPILER_ID "XLClang"
|
191 |
+
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
192 |
+
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
193 |
+
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
194 |
+
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
195 |
+
|
196 |
+
|
197 |
+
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
|
198 |
+
# define COMPILER_ID "XL"
|
199 |
+
/* __IBMCPP__ = VRP */
|
200 |
+
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
201 |
+
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
202 |
+
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
203 |
+
|
204 |
+
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
|
205 |
+
# define COMPILER_ID "VisualAge"
|
206 |
+
/* __IBMCPP__ = VRP */
|
207 |
+
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
208 |
+
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
209 |
+
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
210 |
+
|
211 |
+
#elif defined(__NVCOMPILER)
|
212 |
+
# define COMPILER_ID "NVHPC"
|
213 |
+
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
214 |
+
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
215 |
+
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
216 |
+
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
217 |
+
# endif
|
218 |
+
|
219 |
+
#elif defined(__PGI)
|
220 |
+
# define COMPILER_ID "PGI"
|
221 |
+
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
222 |
+
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
223 |
+
# if defined(__PGIC_PATCHLEVEL__)
|
224 |
+
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
225 |
+
# endif
|
226 |
+
|
227 |
+
#elif defined(_CRAYC)
|
228 |
+
# define COMPILER_ID "Cray"
|
229 |
+
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
230 |
+
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
231 |
+
|
232 |
+
#elif defined(__TI_COMPILER_VERSION__)
|
233 |
+
# define COMPILER_ID "TI"
|
234 |
+
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
235 |
+
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
236 |
+
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
237 |
+
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
238 |
+
|
239 |
+
#elif defined(__CLANG_FUJITSU)
|
240 |
+
# define COMPILER_ID "FujitsuClang"
|
241 |
+
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
242 |
+
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
243 |
+
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
244 |
+
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
245 |
+
|
246 |
+
|
247 |
+
#elif defined(__FUJITSU)
|
248 |
+
# define COMPILER_ID "Fujitsu"
|
249 |
+
# if defined(__FCC_version__)
|
250 |
+
# define COMPILER_VERSION __FCC_version__
|
251 |
+
# elif defined(__FCC_major__)
|
252 |
+
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
253 |
+
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
254 |
+
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
255 |
+
# endif
|
256 |
+
# if defined(__fcc_version)
|
257 |
+
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
258 |
+
# elif defined(__FCC_VERSION)
|
259 |
+
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
260 |
+
# endif
|
261 |
+
|
262 |
+
|
263 |
+
#elif defined(__ghs__)
|
264 |
+
# define COMPILER_ID "GHS"
|
265 |
+
/* __GHS_VERSION_NUMBER = VVVVRP */
|
266 |
+
# ifdef __GHS_VERSION_NUMBER
|
267 |
+
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
268 |
+
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
269 |
+
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
270 |
+
# endif
|
271 |
+
|
272 |
+
#elif defined(__TASKING__)
|
273 |
+
# define COMPILER_ID "Tasking"
|
274 |
+
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
|
275 |
+
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
|
276 |
+
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
|
277 |
+
|
278 |
+
#elif defined(__SCO_VERSION__)
|
279 |
+
# define COMPILER_ID "SCO"
|
280 |
+
|
281 |
+
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
282 |
+
# define COMPILER_ID "ARMCC"
|
283 |
+
#if __ARMCC_VERSION >= 1000000
|
284 |
+
/* __ARMCC_VERSION = VRRPPPP */
|
285 |
+
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
286 |
+
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
287 |
+
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
288 |
+
#else
|
289 |
+
/* __ARMCC_VERSION = VRPPPP */
|
290 |
+
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
291 |
+
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
292 |
+
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
293 |
+
#endif
|
294 |
+
|
295 |
+
|
296 |
+
#elif defined(__clang__) && defined(__apple_build_version__)
|
297 |
+
# define COMPILER_ID "AppleClang"
|
298 |
+
# if defined(_MSC_VER)
|
299 |
+
# define SIMULATE_ID "MSVC"
|
300 |
+
# endif
|
301 |
+
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
302 |
+
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
303 |
+
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
304 |
+
# if defined(_MSC_VER)
|
305 |
+
/* _MSC_VER = VVRR */
|
306 |
+
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
307 |
+
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
308 |
+
# endif
|
309 |
+
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
310 |
+
|
311 |
+
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
312 |
+
# define COMPILER_ID "ARMClang"
|
313 |
+
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
314 |
+
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
315 |
+
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
|
316 |
+
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
317 |
+
|
318 |
+
#elif defined(__clang__)
|
319 |
+
# define COMPILER_ID "Clang"
|
320 |
+
# if defined(_MSC_VER)
|
321 |
+
# define SIMULATE_ID "MSVC"
|
322 |
+
# endif
|
323 |
+
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
324 |
+
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
325 |
+
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
326 |
+
# if defined(_MSC_VER)
|
327 |
+
/* _MSC_VER = VVRR */
|
328 |
+
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
329 |
+
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
330 |
+
# endif
|
331 |
+
|
332 |
+
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
333 |
+
# define COMPILER_ID "LCC"
|
334 |
+
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
|
335 |
+
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
|
336 |
+
# if defined(__LCC_MINOR__)
|
337 |
+
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
338 |
+
# endif
|
339 |
+
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
340 |
+
# define SIMULATE_ID "GNU"
|
341 |
+
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
342 |
+
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
343 |
+
# if defined(__GNUC_PATCHLEVEL__)
|
344 |
+
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
345 |
+
# endif
|
346 |
+
# endif
|
347 |
+
|
348 |
+
#elif defined(__GNUC__) || defined(__GNUG__)
|
349 |
+
# define COMPILER_ID "GNU"
|
350 |
+
# if defined(__GNUC__)
|
351 |
+
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
352 |
+
# else
|
353 |
+
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
|
354 |
+
# endif
|
355 |
+
# if defined(__GNUC_MINOR__)
|
356 |
+
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
357 |
+
# endif
|
358 |
+
# if defined(__GNUC_PATCHLEVEL__)
|
359 |
+
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
360 |
+
# endif
|
361 |
+
|
362 |
+
#elif defined(_MSC_VER)
|
363 |
+
# define COMPILER_ID "MSVC"
|
364 |
+
/* _MSC_VER = VVRR */
|
365 |
+
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
366 |
+
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
367 |
+
# if defined(_MSC_FULL_VER)
|
368 |
+
# if _MSC_VER >= 1400
|
369 |
+
/* _MSC_FULL_VER = VVRRPPPPP */
|
370 |
+
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
371 |
+
# else
|
372 |
+
/* _MSC_FULL_VER = VVRRPPPP */
|
373 |
+
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
374 |
+
# endif
|
375 |
+
# endif
|
376 |
+
# if defined(_MSC_BUILD)
|
377 |
+
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
378 |
+
# endif
|
379 |
+
|
380 |
+
#elif defined(_ADI_COMPILER)
|
381 |
+
# define COMPILER_ID "ADSP"
|
382 |
+
#if defined(__VERSIONNUM__)
|
383 |
+
/* __VERSIONNUM__ = 0xVVRRPPTT */
|
384 |
+
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
|
385 |
+
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
|
386 |
+
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
|
387 |
+
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
|
388 |
+
#endif
|
389 |
+
|
390 |
+
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
391 |
+
# define COMPILER_ID "IAR"
|
392 |
+
# if defined(__VER__) && defined(__ICCARM__)
|
393 |
+
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
394 |
+
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
395 |
+
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
396 |
+
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
397 |
+
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
398 |
+
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
399 |
+
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
400 |
+
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
401 |
+
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
402 |
+
# endif
|
403 |
+
|
404 |
+
|
405 |
+
/* These compilers are either not known or too old to define an
|
406 |
+
identification macro. Try to identify the platform and guess that
|
407 |
+
it is the native compiler. */
|
408 |
+
#elif defined(__hpux) || defined(__hpua)
|
409 |
+
# define COMPILER_ID "HP"
|
410 |
+
|
411 |
+
#else /* unknown compiler */
|
412 |
+
# define COMPILER_ID ""
|
413 |
+
#endif
|
414 |
+
|
415 |
+
/* Construct the string literal in pieces to prevent the source from
|
416 |
+
getting matched. Store it in a pointer rather than an array
|
417 |
+
because some compilers will just produce instructions to fill the
|
418 |
+
array rather than assigning a pointer to a static array. */
|
419 |
+
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
420 |
+
#ifdef SIMULATE_ID
|
421 |
+
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
422 |
+
#endif
|
423 |
+
|
424 |
+
#ifdef __QNXNTO__
|
425 |
+
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
426 |
+
#endif
|
427 |
+
|
428 |
+
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
429 |
+
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
430 |
+
#endif
|
431 |
+
|
432 |
+
#define STRINGIFY_HELPER(X) #X
|
433 |
+
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
434 |
+
|
435 |
+
/* Identify known platforms by name. */
|
436 |
+
#if defined(__linux) || defined(__linux__) || defined(linux)
|
437 |
+
# define PLATFORM_ID "Linux"
|
438 |
+
|
439 |
+
#elif defined(__MSYS__)
|
440 |
+
# define PLATFORM_ID "MSYS"
|
441 |
+
|
442 |
+
#elif defined(__CYGWIN__)
|
443 |
+
# define PLATFORM_ID "Cygwin"
|
444 |
+
|
445 |
+
#elif defined(__MINGW32__)
|
446 |
+
# define PLATFORM_ID "MinGW"
|
447 |
+
|
448 |
+
#elif defined(__APPLE__)
|
449 |
+
# define PLATFORM_ID "Darwin"
|
450 |
+
|
451 |
+
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
452 |
+
# define PLATFORM_ID "Windows"
|
453 |
+
|
454 |
+
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
455 |
+
# define PLATFORM_ID "FreeBSD"
|
456 |
+
|
457 |
+
#elif defined(__NetBSD__) || defined(__NetBSD)
|
458 |
+
# define PLATFORM_ID "NetBSD"
|
459 |
+
|
460 |
+
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
461 |
+
# define PLATFORM_ID "OpenBSD"
|
462 |
+
|
463 |
+
#elif defined(__sun) || defined(sun)
|
464 |
+
# define PLATFORM_ID "SunOS"
|
465 |
+
|
466 |
+
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
467 |
+
# define PLATFORM_ID "AIX"
|
468 |
+
|
469 |
+
#elif defined(__hpux) || defined(__hpux__)
|
470 |
+
# define PLATFORM_ID "HP-UX"
|
471 |
+
|
472 |
+
#elif defined(__HAIKU__)
|
473 |
+
# define PLATFORM_ID "Haiku"
|
474 |
+
|
475 |
+
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
476 |
+
# define PLATFORM_ID "BeOS"
|
477 |
+
|
478 |
+
#elif defined(__QNX__) || defined(__QNXNTO__)
|
479 |
+
# define PLATFORM_ID "QNX"
|
480 |
+
|
481 |
+
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
482 |
+
# define PLATFORM_ID "Tru64"
|
483 |
+
|
484 |
+
#elif defined(__riscos) || defined(__riscos__)
|
485 |
+
# define PLATFORM_ID "RISCos"
|
486 |
+
|
487 |
+
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
488 |
+
# define PLATFORM_ID "SINIX"
|
489 |
+
|
490 |
+
#elif defined(__UNIX_SV__)
|
491 |
+
# define PLATFORM_ID "UNIX_SV"
|
492 |
+
|
493 |
+
#elif defined(__bsdos__)
|
494 |
+
# define PLATFORM_ID "BSDOS"
|
495 |
+
|
496 |
+
#elif defined(_MPRAS) || defined(MPRAS)
|
497 |
+
# define PLATFORM_ID "MP-RAS"
|
498 |
+
|
499 |
+
#elif defined(__osf) || defined(__osf__)
|
500 |
+
# define PLATFORM_ID "OSF1"
|
501 |
+
|
502 |
+
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
503 |
+
# define PLATFORM_ID "SCO_SV"
|
504 |
+
|
505 |
+
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
506 |
+
# define PLATFORM_ID "ULTRIX"
|
507 |
+
|
508 |
+
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
509 |
+
# define PLATFORM_ID "Xenix"
|
510 |
+
|
511 |
+
#elif defined(__WATCOMC__)
|
512 |
+
# if defined(__LINUX__)
|
513 |
+
# define PLATFORM_ID "Linux"
|
514 |
+
|
515 |
+
# elif defined(__DOS__)
|
516 |
+
# define PLATFORM_ID "DOS"
|
517 |
+
|
518 |
+
# elif defined(__OS2__)
|
519 |
+
# define PLATFORM_ID "OS2"
|
520 |
+
|
521 |
+
# elif defined(__WINDOWS__)
|
522 |
+
# define PLATFORM_ID "Windows3x"
|
523 |
+
|
524 |
+
# elif defined(__VXWORKS__)
|
525 |
+
# define PLATFORM_ID "VxWorks"
|
526 |
+
|
527 |
+
# else /* unknown platform */
|
528 |
+
# define PLATFORM_ID
|
529 |
+
# endif
|
530 |
+
|
531 |
+
#elif defined(__INTEGRITY)
|
532 |
+
# if defined(INT_178B)
|
533 |
+
# define PLATFORM_ID "Integrity178"
|
534 |
+
|
535 |
+
# else /* regular Integrity */
|
536 |
+
# define PLATFORM_ID "Integrity"
|
537 |
+
# endif
|
538 |
+
|
539 |
+
# elif defined(_ADI_COMPILER)
|
540 |
+
# define PLATFORM_ID "ADSP"
|
541 |
+
|
542 |
+
#else /* unknown platform */
|
543 |
+
# define PLATFORM_ID
|
544 |
+
|
545 |
+
#endif
|
546 |
+
|
547 |
+
/* For windows compilers MSVC and Intel we can determine
|
548 |
+
the architecture of the compiler being used. This is because
|
549 |
+
the compilers do not have flags that can change the architecture,
|
550 |
+
but rather depend on which compiler is being used
|
551 |
+
*/
|
552 |
+
#if defined(_WIN32) && defined(_MSC_VER)
|
553 |
+
# if defined(_M_IA64)
|
554 |
+
# define ARCHITECTURE_ID "IA64"
|
555 |
+
|
556 |
+
# elif defined(_M_ARM64EC)
|
557 |
+
# define ARCHITECTURE_ID "ARM64EC"
|
558 |
+
|
559 |
+
# elif defined(_M_X64) || defined(_M_AMD64)
|
560 |
+
# define ARCHITECTURE_ID "x64"
|
561 |
+
|
562 |
+
# elif defined(_M_IX86)
|
563 |
+
# define ARCHITECTURE_ID "X86"
|
564 |
+
|
565 |
+
# elif defined(_M_ARM64)
|
566 |
+
# define ARCHITECTURE_ID "ARM64"
|
567 |
+
|
568 |
+
# elif defined(_M_ARM)
|
569 |
+
# if _M_ARM == 4
|
570 |
+
# define ARCHITECTURE_ID "ARMV4I"
|
571 |
+
# elif _M_ARM == 5
|
572 |
+
# define ARCHITECTURE_ID "ARMV5I"
|
573 |
+
# else
|
574 |
+
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
575 |
+
# endif
|
576 |
+
|
577 |
+
# elif defined(_M_MIPS)
|
578 |
+
# define ARCHITECTURE_ID "MIPS"
|
579 |
+
|
580 |
+
# elif defined(_M_SH)
|
581 |
+
# define ARCHITECTURE_ID "SHx"
|
582 |
+
|
583 |
+
# else /* unknown architecture */
|
584 |
+
# define ARCHITECTURE_ID ""
|
585 |
+
# endif
|
586 |
+
|
587 |
+
#elif defined(__WATCOMC__)
|
588 |
+
# if defined(_M_I86)
|
589 |
+
# define ARCHITECTURE_ID "I86"
|
590 |
+
|
591 |
+
# elif defined(_M_IX86)
|
592 |
+
# define ARCHITECTURE_ID "X86"
|
593 |
+
|
594 |
+
# else /* unknown architecture */
|
595 |
+
# define ARCHITECTURE_ID ""
|
596 |
+
# endif
|
597 |
+
|
598 |
+
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
599 |
+
# if defined(__ICCARM__)
|
600 |
+
# define ARCHITECTURE_ID "ARM"
|
601 |
+
|
602 |
+
# elif defined(__ICCRX__)
|
603 |
+
# define ARCHITECTURE_ID "RX"
|
604 |
+
|
605 |
+
# elif defined(__ICCRH850__)
|
606 |
+
# define ARCHITECTURE_ID "RH850"
|
607 |
+
|
608 |
+
# elif defined(__ICCRL78__)
|
609 |
+
# define ARCHITECTURE_ID "RL78"
|
610 |
+
|
611 |
+
# elif defined(__ICCRISCV__)
|
612 |
+
# define ARCHITECTURE_ID "RISCV"
|
613 |
+
|
614 |
+
# elif defined(__ICCAVR__)
|
615 |
+
# define ARCHITECTURE_ID "AVR"
|
616 |
+
|
617 |
+
# elif defined(__ICC430__)
|
618 |
+
# define ARCHITECTURE_ID "MSP430"
|
619 |
+
|
620 |
+
# elif defined(__ICCV850__)
|
621 |
+
# define ARCHITECTURE_ID "V850"
|
622 |
+
|
623 |
+
# elif defined(__ICC8051__)
|
624 |
+
# define ARCHITECTURE_ID "8051"
|
625 |
+
|
626 |
+
# elif defined(__ICCSTM8__)
|
627 |
+
# define ARCHITECTURE_ID "STM8"
|
628 |
+
|
629 |
+
# else /* unknown architecture */
|
630 |
+
# define ARCHITECTURE_ID ""
|
631 |
+
# endif
|
632 |
+
|
633 |
+
#elif defined(__ghs__)
|
634 |
+
# if defined(__PPC64__)
|
635 |
+
# define ARCHITECTURE_ID "PPC64"
|
636 |
+
|
637 |
+
# elif defined(__ppc__)
|
638 |
+
# define ARCHITECTURE_ID "PPC"
|
639 |
+
|
640 |
+
# elif defined(__ARM__)
|
641 |
+
# define ARCHITECTURE_ID "ARM"
|
642 |
+
|
643 |
+
# elif defined(__x86_64__)
|
644 |
+
# define ARCHITECTURE_ID "x64"
|
645 |
+
|
646 |
+
# elif defined(__i386__)
|
647 |
+
# define ARCHITECTURE_ID "X86"
|
648 |
+
|
649 |
+
# else /* unknown architecture */
|
650 |
+
# define ARCHITECTURE_ID ""
|
651 |
+
# endif
|
652 |
+
|
653 |
+
#elif defined(__TI_COMPILER_VERSION__)
|
654 |
+
# if defined(__TI_ARM__)
|
655 |
+
# define ARCHITECTURE_ID "ARM"
|
656 |
+
|
657 |
+
# elif defined(__MSP430__)
|
658 |
+
# define ARCHITECTURE_ID "MSP430"
|
659 |
+
|
660 |
+
# elif defined(__TMS320C28XX__)
|
661 |
+
# define ARCHITECTURE_ID "TMS320C28x"
|
662 |
+
|
663 |
+
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
664 |
+
# define ARCHITECTURE_ID "TMS320C6x"
|
665 |
+
|
666 |
+
# else /* unknown architecture */
|
667 |
+
# define ARCHITECTURE_ID ""
|
668 |
+
# endif
|
669 |
+
|
670 |
+
# elif defined(__ADSPSHARC__)
|
671 |
+
# define ARCHITECTURE_ID "SHARC"
|
672 |
+
|
673 |
+
# elif defined(__ADSPBLACKFIN__)
|
674 |
+
# define ARCHITECTURE_ID "Blackfin"
|
675 |
+
|
676 |
+
#elif defined(__TASKING__)
|
677 |
+
|
678 |
+
# if defined(__CTC__) || defined(__CPTC__)
|
679 |
+
# define ARCHITECTURE_ID "TriCore"
|
680 |
+
|
681 |
+
# elif defined(__CMCS__)
|
682 |
+
# define ARCHITECTURE_ID "MCS"
|
683 |
+
|
684 |
+
# elif defined(__CARM__)
|
685 |
+
# define ARCHITECTURE_ID "ARM"
|
686 |
+
|
687 |
+
# elif defined(__CARC__)
|
688 |
+
# define ARCHITECTURE_ID "ARC"
|
689 |
+
|
690 |
+
# elif defined(__C51__)
|
691 |
+
# define ARCHITECTURE_ID "8051"
|
692 |
+
|
693 |
+
# elif defined(__CPCP__)
|
694 |
+
# define ARCHITECTURE_ID "PCP"
|
695 |
+
|
696 |
+
# else
|
697 |
+
# define ARCHITECTURE_ID ""
|
698 |
+
# endif
|
699 |
+
|
700 |
+
#else
|
701 |
+
# define ARCHITECTURE_ID
|
702 |
+
#endif
|
703 |
+
|
704 |
+
/* Convert integer to decimal digit literals. */
|
705 |
+
#define DEC(n) \
|
706 |
+
('0' + (((n) / 10000000)%10)), \
|
707 |
+
('0' + (((n) / 1000000)%10)), \
|
708 |
+
('0' + (((n) / 100000)%10)), \
|
709 |
+
('0' + (((n) / 10000)%10)), \
|
710 |
+
('0' + (((n) / 1000)%10)), \
|
711 |
+
('0' + (((n) / 100)%10)), \
|
712 |
+
('0' + (((n) / 10)%10)), \
|
713 |
+
('0' + ((n) % 10))
|
714 |
+
|
715 |
+
/* Convert integer to hex digit literals. */
|
716 |
+
#define HEX(n) \
|
717 |
+
('0' + ((n)>>28 & 0xF)), \
|
718 |
+
('0' + ((n)>>24 & 0xF)), \
|
719 |
+
('0' + ((n)>>20 & 0xF)), \
|
720 |
+
('0' + ((n)>>16 & 0xF)), \
|
721 |
+
('0' + ((n)>>12 & 0xF)), \
|
722 |
+
('0' + ((n)>>8 & 0xF)), \
|
723 |
+
('0' + ((n)>>4 & 0xF)), \
|
724 |
+
('0' + ((n) & 0xF))
|
725 |
+
|
726 |
+
/* Construct a string literal encoding the version number. */
|
727 |
+
#ifdef COMPILER_VERSION
|
728 |
+
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
729 |
+
|
730 |
+
/* Construct a string literal encoding the version number components. */
|
731 |
+
#elif defined(COMPILER_VERSION_MAJOR)
|
732 |
+
char const info_version[] = {
|
733 |
+
'I', 'N', 'F', 'O', ':',
|
734 |
+
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
735 |
+
COMPILER_VERSION_MAJOR,
|
736 |
+
# ifdef COMPILER_VERSION_MINOR
|
737 |
+
'.', COMPILER_VERSION_MINOR,
|
738 |
+
# ifdef COMPILER_VERSION_PATCH
|
739 |
+
'.', COMPILER_VERSION_PATCH,
|
740 |
+
# ifdef COMPILER_VERSION_TWEAK
|
741 |
+
'.', COMPILER_VERSION_TWEAK,
|
742 |
+
# endif
|
743 |
+
# endif
|
744 |
+
# endif
|
745 |
+
']','\0'};
|
746 |
+
#endif
|
747 |
+
|
748 |
+
/* Construct a string literal encoding the internal version number. */
|
749 |
+
#ifdef COMPILER_VERSION_INTERNAL
|
750 |
+
char const info_version_internal[] = {
|
751 |
+
'I', 'N', 'F', 'O', ':',
|
752 |
+
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
753 |
+
'i','n','t','e','r','n','a','l','[',
|
754 |
+
COMPILER_VERSION_INTERNAL,']','\0'};
|
755 |
+
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
756 |
+
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
757 |
+
#endif
|
758 |
+
|
759 |
+
/* Construct a string literal encoding the version number components. */
|
760 |
+
#ifdef SIMULATE_VERSION_MAJOR
|
761 |
+
char const info_simulate_version[] = {
|
762 |
+
'I', 'N', 'F', 'O', ':',
|
763 |
+
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
764 |
+
SIMULATE_VERSION_MAJOR,
|
765 |
+
# ifdef SIMULATE_VERSION_MINOR
|
766 |
+
'.', SIMULATE_VERSION_MINOR,
|
767 |
+
# ifdef SIMULATE_VERSION_PATCH
|
768 |
+
'.', SIMULATE_VERSION_PATCH,
|
769 |
+
# ifdef SIMULATE_VERSION_TWEAK
|
770 |
+
'.', SIMULATE_VERSION_TWEAK,
|
771 |
+
# endif
|
772 |
+
# endif
|
773 |
+
# endif
|
774 |
+
']','\0'};
|
775 |
+
#endif
|
776 |
+
|
777 |
+
/* Construct the string literal in pieces to prevent the source from
|
778 |
+
getting matched. Store it in a pointer rather than an array
|
779 |
+
because some compilers will just produce instructions to fill the
|
780 |
+
array rather than assigning a pointer to a static array. */
|
781 |
+
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
782 |
+
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
783 |
+
|
784 |
+
|
785 |
+
|
786 |
+
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
|
787 |
+
# if defined(__INTEL_CXX11_MODE__)
|
788 |
+
# if defined(__cpp_aggregate_nsdmi)
|
789 |
+
# define CXX_STD 201402L
|
790 |
+
# else
|
791 |
+
# define CXX_STD 201103L
|
792 |
+
# endif
|
793 |
+
# else
|
794 |
+
# define CXX_STD 199711L
|
795 |
+
# endif
|
796 |
+
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
|
797 |
+
# define CXX_STD _MSVC_LANG
|
798 |
+
#else
|
799 |
+
# define CXX_STD __cplusplus
|
800 |
+
#endif
|
801 |
+
|
802 |
+
const char* info_language_standard_default = "INFO" ":" "standard_default["
|
803 |
+
#if CXX_STD > 202002L
|
804 |
+
"23"
|
805 |
+
#elif CXX_STD > 201703L
|
806 |
+
"20"
|
807 |
+
#elif CXX_STD >= 201703L
|
808 |
+
"17"
|
809 |
+
#elif CXX_STD >= 201402L
|
810 |
+
"14"
|
811 |
+
#elif CXX_STD >= 201103L
|
812 |
+
"11"
|
813 |
+
#else
|
814 |
+
"98"
|
815 |
+
#endif
|
816 |
+
"]";
|
817 |
+
|
818 |
+
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
819 |
+
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
820 |
+
defined(__TI_COMPILER_VERSION__)) && \
|
821 |
+
!defined(__STRICT_ANSI__)
|
822 |
+
"ON"
|
823 |
+
#else
|
824 |
+
"OFF"
|
825 |
+
#endif
|
826 |
+
"]";
|
827 |
+
|
828 |
+
/*--------------------------------------------------------------------------*/
|
829 |
+
|
830 |
+
int main(int argc, char* argv[])
|
831 |
+
{
|
832 |
+
int require = 0;
|
833 |
+
require += info_compiler[argc];
|
834 |
+
require += info_platform[argc];
|
835 |
+
require += info_arch[argc];
|
836 |
+
#ifdef COMPILER_VERSION_MAJOR
|
837 |
+
require += info_version[argc];
|
838 |
+
#endif
|
839 |
+
#ifdef COMPILER_VERSION_INTERNAL
|
840 |
+
require += info_version_internal[argc];
|
841 |
+
#endif
|
842 |
+
#ifdef SIMULATE_ID
|
843 |
+
require += info_simulate[argc];
|
844 |
+
#endif
|
845 |
+
#ifdef SIMULATE_VERSION_MAJOR
|
846 |
+
require += info_simulate_version[argc];
|
847 |
+
#endif
|
848 |
+
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
849 |
+
require += info_cray[argc];
|
850 |
+
#endif
|
851 |
+
require += info_language_standard_default[argc];
|
852 |
+
require += info_language_extensions_default[argc];
|
853 |
+
(void)argv;
|
854 |
+
return require;
|
855 |
+
}
|
REAPER/build/CMakeFiles/3.27.9/CompilerIdCXX/a.out
ADDED
Binary file (16.1 kB). View file
|
|
REAPER/build/CMakeFiles/CMakeConfigureLog.yaml
ADDED
@@ -0,0 +1,607 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
events:
|
4 |
+
-
|
5 |
+
kind: "message-v1"
|
6 |
+
backtrace:
|
7 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineSystem.cmake:211 (message)"
|
8 |
+
- "CMakeLists.txt:2 (project)"
|
9 |
+
message: |
|
10 |
+
The system is: Linux - 6.1.58+ - x86_64
|
11 |
+
-
|
12 |
+
kind: "message-v1"
|
13 |
+
backtrace:
|
14 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
|
15 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
|
16 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)"
|
17 |
+
- "CMakeLists.txt:2 (project)"
|
18 |
+
message: |
|
19 |
+
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
20 |
+
Compiler: /usr/bin/cc
|
21 |
+
Build flags:
|
22 |
+
Id flags:
|
23 |
+
|
24 |
+
The output was:
|
25 |
+
0
|
26 |
+
|
27 |
+
|
28 |
+
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
|
29 |
+
|
30 |
+
The C compiler identification is GNU, found in:
|
31 |
+
/content/NeuCoSVC-2/REAPER/build/CMakeFiles/3.27.9/CompilerIdC/a.out
|
32 |
+
|
33 |
+
-
|
34 |
+
kind: "message-v1"
|
35 |
+
backtrace:
|
36 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
|
37 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
|
38 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
|
39 |
+
- "CMakeLists.txt:2 (project)"
|
40 |
+
message: |
|
41 |
+
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
42 |
+
Compiler: /usr/bin/c++
|
43 |
+
Build flags:
|
44 |
+
Id flags:
|
45 |
+
|
46 |
+
The output was:
|
47 |
+
0
|
48 |
+
|
49 |
+
|
50 |
+
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
|
51 |
+
|
52 |
+
The CXX compiler identification is GNU, found in:
|
53 |
+
/content/NeuCoSVC-2/REAPER/build/CMakeFiles/3.27.9/CompilerIdCXX/a.out
|
54 |
+
|
55 |
+
-
|
56 |
+
kind: "try_compile-v1"
|
57 |
+
backtrace:
|
58 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)"
|
59 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
60 |
+
- "CMakeLists.txt:2 (project)"
|
61 |
+
checks:
|
62 |
+
- "Detecting C compiler ABI info"
|
63 |
+
directories:
|
64 |
+
source: "/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-SVHLW0"
|
65 |
+
binary: "/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-SVHLW0"
|
66 |
+
cmakeVariables:
|
67 |
+
CMAKE_C_FLAGS: ""
|
68 |
+
buildResult:
|
69 |
+
variable: "CMAKE_C_ABI_COMPILED"
|
70 |
+
cached: true
|
71 |
+
stdout: |
|
72 |
+
Change Dir: '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-SVHLW0'
|
73 |
+
|
74 |
+
Run Build Command(s): /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_9a52d/fast
|
75 |
+
/usr/bin/gmake -f CMakeFiles/cmTC_9a52d.dir/build.make CMakeFiles/cmTC_9a52d.dir/build
|
76 |
+
gmake[1]: Entering directory '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-SVHLW0'
|
77 |
+
Building C object CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o
|
78 |
+
/usr/bin/cc -v -o CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o -c /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCCompilerABI.c
|
79 |
+
Using built-in specs.
|
80 |
+
COLLECT_GCC=/usr/bin/cc
|
81 |
+
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
|
82 |
+
OFFLOAD_TARGET_DEFAULT=1
|
83 |
+
Target: x86_64-linux-gnu
|
84 |
+
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --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-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
|
85 |
+
Thread model: posix
|
86 |
+
Supported LTO compression algorithms: zlib zstd
|
87 |
+
gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04)
|
88 |
+
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_9a52d.dir/'
|
89 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_9a52d.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cctlvjNe.s
|
90 |
+
GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)
|
91 |
+
compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
|
92 |
+
|
93 |
+
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
94 |
+
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
|
95 |
+
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"
|
96 |
+
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"
|
97 |
+
#include "..." search starts here:
|
98 |
+
#include <...> search starts here:
|
99 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include
|
100 |
+
/usr/local/include
|
101 |
+
/usr/include/x86_64-linux-gnu
|
102 |
+
/usr/include
|
103 |
+
End of search list.
|
104 |
+
GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)
|
105 |
+
compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
|
106 |
+
|
107 |
+
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
108 |
+
Compiler executable checksum: 50eaa2331df977b8016186198deb2d18
|
109 |
+
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_9a52d.dir/'
|
110 |
+
as -v --64 -o CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o /tmp/cctlvjNe.s
|
111 |
+
GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38
|
112 |
+
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/
|
113 |
+
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../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/11/../../../:/lib/:/usr/lib/
|
114 |
+
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.'
|
115 |
+
Linking C executable cmTC_9a52d
|
116 |
+
/usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9a52d.dir/link.txt --verbose=1
|
117 |
+
/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o -o cmTC_9a52d
|
118 |
+
Using built-in specs.
|
119 |
+
COLLECT_GCC=/usr/bin/cc
|
120 |
+
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper
|
121 |
+
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
|
122 |
+
OFFLOAD_TARGET_DEFAULT=1
|
123 |
+
Target: x86_64-linux-gnu
|
124 |
+
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --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-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
|
125 |
+
Thread model: posix
|
126 |
+
Supported LTO compression algorithms: zlib zstd
|
127 |
+
gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04)
|
128 |
+
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/
|
129 |
+
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../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/11/../../../:/lib/:/usr/lib/
|
130 |
+
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_9a52d' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_9a52d.'
|
131 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccQkw7jQ.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 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_9a52d /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../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/11/../../.. CMakeFiles/cmTC_9a52d.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/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o
|
132 |
+
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_9a52d' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_9a52d.'
|
133 |
+
gmake[1]: Leaving directory '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-SVHLW0'
|
134 |
+
|
135 |
+
exitCode: 0
|
136 |
+
-
|
137 |
+
kind: "message-v1"
|
138 |
+
backtrace:
|
139 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:127 (message)"
|
140 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
141 |
+
- "CMakeLists.txt:2 (project)"
|
142 |
+
message: |
|
143 |
+
Parsed C implicit include dir info: rv=done
|
144 |
+
found start of include info
|
145 |
+
found start of implicit include info
|
146 |
+
add: [/usr/lib/gcc/x86_64-linux-gnu/11/include]
|
147 |
+
add: [/usr/local/include]
|
148 |
+
add: [/usr/include/x86_64-linux-gnu]
|
149 |
+
add: [/usr/include]
|
150 |
+
end of search list found
|
151 |
+
collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include]
|
152 |
+
collapse include dir [/usr/local/include] ==> [/usr/local/include]
|
153 |
+
collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
|
154 |
+
collapse include dir [/usr/include] ==> [/usr/include]
|
155 |
+
implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include]
|
156 |
+
|
157 |
+
|
158 |
+
-
|
159 |
+
kind: "message-v1"
|
160 |
+
backtrace:
|
161 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:152 (message)"
|
162 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
163 |
+
- "CMakeLists.txt:2 (project)"
|
164 |
+
message: |
|
165 |
+
Parsed C implicit link information:
|
166 |
+
link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
167 |
+
ignore line: [Change Dir: '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-SVHLW0']
|
168 |
+
ignore line: []
|
169 |
+
ignore line: [Run Build Command(s): /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_9a52d/fast]
|
170 |
+
ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_9a52d.dir/build.make CMakeFiles/cmTC_9a52d.dir/build]
|
171 |
+
ignore line: [gmake[1]: Entering directory '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-SVHLW0']
|
172 |
+
ignore line: [Building C object CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o]
|
173 |
+
ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o -c /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCCompilerABI.c]
|
174 |
+
ignore line: [Using built-in specs.]
|
175 |
+
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
176 |
+
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
|
177 |
+
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
178 |
+
ignore line: [Target: x86_64-linux-gnu]
|
179 |
+
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --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-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2]
|
180 |
+
ignore line: [Thread model: posix]
|
181 |
+
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
182 |
+
ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ]
|
183 |
+
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_9a52d.dir/']
|
184 |
+
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_9a52d.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cctlvjNe.s]
|
185 |
+
ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)]
|
186 |
+
ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
|
187 |
+
ignore line: []
|
188 |
+
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
189 |
+
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
|
190 |
+
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"]
|
191 |
+
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"]
|
192 |
+
ignore line: [#include "..." search starts here:]
|
193 |
+
ignore line: [#include <...> search starts here:]
|
194 |
+
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include]
|
195 |
+
ignore line: [ /usr/local/include]
|
196 |
+
ignore line: [ /usr/include/x86_64-linux-gnu]
|
197 |
+
ignore line: [ /usr/include]
|
198 |
+
ignore line: [End of search list.]
|
199 |
+
ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)]
|
200 |
+
ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
|
201 |
+
ignore line: []
|
202 |
+
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
203 |
+
ignore line: [Compiler executable checksum: 50eaa2331df977b8016186198deb2d18]
|
204 |
+
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_9a52d.dir/']
|
205 |
+
ignore line: [ as -v --64 -o CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o /tmp/cctlvjNe.s]
|
206 |
+
ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38]
|
207 |
+
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/]
|
208 |
+
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../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/11/../../../:/lib/:/usr/lib/]
|
209 |
+
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.']
|
210 |
+
ignore line: [Linking C executable cmTC_9a52d]
|
211 |
+
ignore line: [/usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9a52d.dir/link.txt --verbose=1]
|
212 |
+
ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o -o cmTC_9a52d ]
|
213 |
+
ignore line: [Using built-in specs.]
|
214 |
+
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
215 |
+
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper]
|
216 |
+
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
|
217 |
+
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
218 |
+
ignore line: [Target: x86_64-linux-gnu]
|
219 |
+
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --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-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2]
|
220 |
+
ignore line: [Thread model: posix]
|
221 |
+
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
222 |
+
ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ]
|
223 |
+
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/]
|
224 |
+
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../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/11/../../../:/lib/:/usr/lib/]
|
225 |
+
ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_9a52d' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_9a52d.']
|
226 |
+
link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccQkw7jQ.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 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_9a52d /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../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/11/../../.. CMakeFiles/cmTC_9a52d.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/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o]
|
227 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore
|
228 |
+
arg [-plugin] ==> ignore
|
229 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore
|
230 |
+
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore
|
231 |
+
arg [-plugin-opt=-fresolution=/tmp/ccQkw7jQ.res] ==> ignore
|
232 |
+
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
233 |
+
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
234 |
+
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
235 |
+
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
236 |
+
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
237 |
+
arg [--build-id] ==> ignore
|
238 |
+
arg [--eh-frame-hdr] ==> ignore
|
239 |
+
arg [-m] ==> ignore
|
240 |
+
arg [elf_x86_64] ==> ignore
|
241 |
+
arg [--hash-style=gnu] ==> ignore
|
242 |
+
arg [--as-needed] ==> ignore
|
243 |
+
arg [-export-dynamic] ==> ignore
|
244 |
+
arg [-dynamic-linker] ==> ignore
|
245 |
+
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
|
246 |
+
arg [-pie] ==> ignore
|
247 |
+
arg [-znow] ==> ignore
|
248 |
+
arg [-zrelro] ==> ignore
|
249 |
+
arg [-o] ==> ignore
|
250 |
+
arg [cmTC_9a52d] ==> ignore
|
251 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o]
|
252 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o]
|
253 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o]
|
254 |
+
arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11]
|
255 |
+
arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu]
|
256 |
+
arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib]
|
257 |
+
arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
|
258 |
+
arg [-L/lib/../lib] ==> dir [/lib/../lib]
|
259 |
+
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
|
260 |
+
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
261 |
+
arg [-L/usr/local/cuda/lib64/stubs] ==> dir [/usr/local/cuda/lib64/stubs]
|
262 |
+
arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..]
|
263 |
+
arg [CMakeFiles/cmTC_9a52d.dir/CMakeCCompilerABI.c.o] ==> ignore
|
264 |
+
arg [-lgcc] ==> lib [gcc]
|
265 |
+
arg [--push-state] ==> ignore
|
266 |
+
arg [--as-needed] ==> ignore
|
267 |
+
arg [-lgcc_s] ==> lib [gcc_s]
|
268 |
+
arg [--pop-state] ==> ignore
|
269 |
+
arg [-lc] ==> lib [c]
|
270 |
+
arg [-lgcc] ==> lib [gcc]
|
271 |
+
arg [--push-state] ==> ignore
|
272 |
+
arg [--as-needed] ==> ignore
|
273 |
+
arg [-lgcc_s] ==> lib [gcc_s]
|
274 |
+
arg [--pop-state] ==> ignore
|
275 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o]
|
276 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o]
|
277 |
+
collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o]
|
278 |
+
collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o]
|
279 |
+
collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o]
|
280 |
+
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11]
|
281 |
+
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
|
282 |
+
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib]
|
283 |
+
collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
|
284 |
+
collapse library dir [/lib/../lib] ==> [/lib]
|
285 |
+
collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
|
286 |
+
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
|
287 |
+
collapse library dir [/usr/local/cuda/lib64/stubs] ==> [/usr/local/cuda/lib64/stubs]
|
288 |
+
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib]
|
289 |
+
implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
|
290 |
+
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/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o]
|
291 |
+
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib;/usr/local/cuda/lib64/stubs]
|
292 |
+
implicit fwks: []
|
293 |
+
|
294 |
+
|
295 |
+
-
|
296 |
+
kind: "try_compile-v1"
|
297 |
+
backtrace:
|
298 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)"
|
299 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
300 |
+
- "CMakeLists.txt:2 (project)"
|
301 |
+
checks:
|
302 |
+
- "Detecting CXX compiler ABI info"
|
303 |
+
directories:
|
304 |
+
source: "/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-uiTn6b"
|
305 |
+
binary: "/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-uiTn6b"
|
306 |
+
cmakeVariables:
|
307 |
+
CMAKE_CXX_FLAGS: ""
|
308 |
+
buildResult:
|
309 |
+
variable: "CMAKE_CXX_ABI_COMPILED"
|
310 |
+
cached: true
|
311 |
+
stdout: |
|
312 |
+
Change Dir: '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-uiTn6b'
|
313 |
+
|
314 |
+
Run Build Command(s): /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_d7c28/fast
|
315 |
+
/usr/bin/gmake -f CMakeFiles/cmTC_d7c28.dir/build.make CMakeFiles/cmTC_d7c28.dir/build
|
316 |
+
gmake[1]: Entering directory '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-uiTn6b'
|
317 |
+
Building CXX object CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o
|
318 |
+
/usr/bin/c++ -v -o CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp
|
319 |
+
Using built-in specs.
|
320 |
+
COLLECT_GCC=/usr/bin/c++
|
321 |
+
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
|
322 |
+
OFFLOAD_TARGET_DEFAULT=1
|
323 |
+
Target: x86_64-linux-gnu
|
324 |
+
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --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-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
|
325 |
+
Thread model: posix
|
326 |
+
Supported LTO compression algorithms: zlib zstd
|
327 |
+
gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04)
|
328 |
+
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_d7c28.dir/'
|
329 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_d7c28.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccZ5TFqj.s
|
330 |
+
GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)
|
331 |
+
compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
|
332 |
+
|
333 |
+
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
334 |
+
ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11"
|
335 |
+
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
|
336 |
+
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"
|
337 |
+
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"
|
338 |
+
#include "..." search starts here:
|
339 |
+
#include <...> search starts here:
|
340 |
+
/usr/include/c++/11
|
341 |
+
/usr/include/x86_64-linux-gnu/c++/11
|
342 |
+
/usr/include/c++/11/backward
|
343 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include
|
344 |
+
/usr/local/include
|
345 |
+
/usr/include/x86_64-linux-gnu
|
346 |
+
/usr/include
|
347 |
+
End of search list.
|
348 |
+
GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)
|
349 |
+
compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
|
350 |
+
|
351 |
+
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
352 |
+
Compiler executable checksum: d591828bb4d392ae8b7b160e5bb0b95f
|
353 |
+
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_d7c28.dir/'
|
354 |
+
as -v --64 -o CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccZ5TFqj.s
|
355 |
+
GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38
|
356 |
+
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/
|
357 |
+
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../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/11/../../../:/lib/:/usr/lib/
|
358 |
+
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.'
|
359 |
+
Linking CXX executable cmTC_d7c28
|
360 |
+
/usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d7c28.dir/link.txt --verbose=1
|
361 |
+
/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_d7c28
|
362 |
+
Using built-in specs.
|
363 |
+
COLLECT_GCC=/usr/bin/c++
|
364 |
+
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper
|
365 |
+
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
|
366 |
+
OFFLOAD_TARGET_DEFAULT=1
|
367 |
+
Target: x86_64-linux-gnu
|
368 |
+
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --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-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
|
369 |
+
Thread model: posix
|
370 |
+
Supported LTO compression algorithms: zlib zstd
|
371 |
+
gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04)
|
372 |
+
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/
|
373 |
+
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../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/11/../../../:/lib/:/usr/lib/
|
374 |
+
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_d7c28' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_d7c28.'
|
375 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccCQndMb.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_d7c28 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../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/11/../../.. CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o
|
376 |
+
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_d7c28' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_d7c28.'
|
377 |
+
gmake[1]: Leaving directory '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-uiTn6b'
|
378 |
+
|
379 |
+
exitCode: 0
|
380 |
+
-
|
381 |
+
kind: "message-v1"
|
382 |
+
backtrace:
|
383 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:127 (message)"
|
384 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
385 |
+
- "CMakeLists.txt:2 (project)"
|
386 |
+
message: |
|
387 |
+
Parsed CXX implicit include dir info: rv=done
|
388 |
+
found start of include info
|
389 |
+
found start of implicit include info
|
390 |
+
add: [/usr/include/c++/11]
|
391 |
+
add: [/usr/include/x86_64-linux-gnu/c++/11]
|
392 |
+
add: [/usr/include/c++/11/backward]
|
393 |
+
add: [/usr/lib/gcc/x86_64-linux-gnu/11/include]
|
394 |
+
add: [/usr/local/include]
|
395 |
+
add: [/usr/include/x86_64-linux-gnu]
|
396 |
+
add: [/usr/include]
|
397 |
+
end of search list found
|
398 |
+
collapse include dir [/usr/include/c++/11] ==> [/usr/include/c++/11]
|
399 |
+
collapse include dir [/usr/include/x86_64-linux-gnu/c++/11] ==> [/usr/include/x86_64-linux-gnu/c++/11]
|
400 |
+
collapse include dir [/usr/include/c++/11/backward] ==> [/usr/include/c++/11/backward]
|
401 |
+
collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include]
|
402 |
+
collapse include dir [/usr/local/include] ==> [/usr/local/include]
|
403 |
+
collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
|
404 |
+
collapse include dir [/usr/include] ==> [/usr/include]
|
405 |
+
implicit include dirs: [/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include]
|
406 |
+
|
407 |
+
|
408 |
+
-
|
409 |
+
kind: "message-v1"
|
410 |
+
backtrace:
|
411 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:152 (message)"
|
412 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
413 |
+
- "CMakeLists.txt:2 (project)"
|
414 |
+
message: |
|
415 |
+
Parsed CXX implicit link information:
|
416 |
+
link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
417 |
+
ignore line: [Change Dir: '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-uiTn6b']
|
418 |
+
ignore line: []
|
419 |
+
ignore line: [Run Build Command(s): /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_d7c28/fast]
|
420 |
+
ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_d7c28.dir/build.make CMakeFiles/cmTC_d7c28.dir/build]
|
421 |
+
ignore line: [gmake[1]: Entering directory '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-uiTn6b']
|
422 |
+
ignore line: [Building CXX object CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o]
|
423 |
+
ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp]
|
424 |
+
ignore line: [Using built-in specs.]
|
425 |
+
ignore line: [COLLECT_GCC=/usr/bin/c++]
|
426 |
+
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
|
427 |
+
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
428 |
+
ignore line: [Target: x86_64-linux-gnu]
|
429 |
+
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --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-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2]
|
430 |
+
ignore line: [Thread model: posix]
|
431 |
+
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
432 |
+
ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ]
|
433 |
+
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_d7c28.dir/']
|
434 |
+
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_d7c28.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccZ5TFqj.s]
|
435 |
+
ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)]
|
436 |
+
ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
|
437 |
+
ignore line: []
|
438 |
+
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
439 |
+
ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11"]
|
440 |
+
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
|
441 |
+
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"]
|
442 |
+
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"]
|
443 |
+
ignore line: [#include "..." search starts here:]
|
444 |
+
ignore line: [#include <...> search starts here:]
|
445 |
+
ignore line: [ /usr/include/c++/11]
|
446 |
+
ignore line: [ /usr/include/x86_64-linux-gnu/c++/11]
|
447 |
+
ignore line: [ /usr/include/c++/11/backward]
|
448 |
+
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include]
|
449 |
+
ignore line: [ /usr/local/include]
|
450 |
+
ignore line: [ /usr/include/x86_64-linux-gnu]
|
451 |
+
ignore line: [ /usr/include]
|
452 |
+
ignore line: [End of search list.]
|
453 |
+
ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)]
|
454 |
+
ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
|
455 |
+
ignore line: []
|
456 |
+
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
457 |
+
ignore line: [Compiler executable checksum: d591828bb4d392ae8b7b160e5bb0b95f]
|
458 |
+
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_d7c28.dir/']
|
459 |
+
ignore line: [ as -v --64 -o CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccZ5TFqj.s]
|
460 |
+
ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38]
|
461 |
+
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/]
|
462 |
+
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../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/11/../../../:/lib/:/usr/lib/]
|
463 |
+
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.']
|
464 |
+
ignore line: [Linking CXX executable cmTC_d7c28]
|
465 |
+
ignore line: [/usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d7c28.dir/link.txt --verbose=1]
|
466 |
+
ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_d7c28 ]
|
467 |
+
ignore line: [Using built-in specs.]
|
468 |
+
ignore line: [COLLECT_GCC=/usr/bin/c++]
|
469 |
+
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper]
|
470 |
+
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
|
471 |
+
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
472 |
+
ignore line: [Target: x86_64-linux-gnu]
|
473 |
+
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --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-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2]
|
474 |
+
ignore line: [Thread model: posix]
|
475 |
+
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
476 |
+
ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ]
|
477 |
+
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/]
|
478 |
+
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../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/11/../../../:/lib/:/usr/lib/]
|
479 |
+
ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_d7c28' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_d7c28.']
|
480 |
+
link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccCQndMb.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_d7c28 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../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/11/../../.. CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o]
|
481 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore
|
482 |
+
arg [-plugin] ==> ignore
|
483 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore
|
484 |
+
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore
|
485 |
+
arg [-plugin-opt=-fresolution=/tmp/ccCQndMb.res] ==> ignore
|
486 |
+
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
487 |
+
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
488 |
+
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
489 |
+
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
490 |
+
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
491 |
+
arg [--build-id] ==> ignore
|
492 |
+
arg [--eh-frame-hdr] ==> ignore
|
493 |
+
arg [-m] ==> ignore
|
494 |
+
arg [elf_x86_64] ==> ignore
|
495 |
+
arg [--hash-style=gnu] ==> ignore
|
496 |
+
arg [--as-needed] ==> ignore
|
497 |
+
arg [-export-dynamic] ==> ignore
|
498 |
+
arg [-dynamic-linker] ==> ignore
|
499 |
+
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
|
500 |
+
arg [-pie] ==> ignore
|
501 |
+
arg [-znow] ==> ignore
|
502 |
+
arg [-zrelro] ==> ignore
|
503 |
+
arg [-o] ==> ignore
|
504 |
+
arg [cmTC_d7c28] ==> ignore
|
505 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o]
|
506 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o]
|
507 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o]
|
508 |
+
arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11]
|
509 |
+
arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu]
|
510 |
+
arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib]
|
511 |
+
arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
|
512 |
+
arg [-L/lib/../lib] ==> dir [/lib/../lib]
|
513 |
+
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
|
514 |
+
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
515 |
+
arg [-L/usr/local/cuda/lib64/stubs] ==> dir [/usr/local/cuda/lib64/stubs]
|
516 |
+
arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..]
|
517 |
+
arg [CMakeFiles/cmTC_d7c28.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
|
518 |
+
arg [-lstdc++] ==> lib [stdc++]
|
519 |
+
arg [-lm] ==> lib [m]
|
520 |
+
arg [-lgcc_s] ==> lib [gcc_s]
|
521 |
+
arg [-lgcc] ==> lib [gcc]
|
522 |
+
arg [-lc] ==> lib [c]
|
523 |
+
arg [-lgcc_s] ==> lib [gcc_s]
|
524 |
+
arg [-lgcc] ==> lib [gcc]
|
525 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o]
|
526 |
+
arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o]
|
527 |
+
collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o]
|
528 |
+
collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o]
|
529 |
+
collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o]
|
530 |
+
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11]
|
531 |
+
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
|
532 |
+
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib]
|
533 |
+
collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
|
534 |
+
collapse library dir [/lib/../lib] ==> [/lib]
|
535 |
+
collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
|
536 |
+
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
|
537 |
+
collapse library dir [/usr/local/cuda/lib64/stubs] ==> [/usr/local/cuda/lib64/stubs]
|
538 |
+
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib]
|
539 |
+
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
|
540 |
+
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/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o]
|
541 |
+
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib;/usr/local/cuda/lib64/stubs]
|
542 |
+
implicit fwks: []
|
543 |
+
|
544 |
+
|
545 |
+
-
|
546 |
+
kind: "try_compile-v1"
|
547 |
+
backtrace:
|
548 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)"
|
549 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)"
|
550 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake:34 (cmake_check_compiler_flag)"
|
551 |
+
- "CMakeLists.txt:6 (CHECK_CXX_COMPILER_FLAG)"
|
552 |
+
checks:
|
553 |
+
- "Performing Test COMPILER_SUPPORTS_CXX11"
|
554 |
+
directories:
|
555 |
+
source: "/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-Vyrsx6"
|
556 |
+
binary: "/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-Vyrsx6"
|
557 |
+
cmakeVariables:
|
558 |
+
CMAKE_CXX_FLAGS: ""
|
559 |
+
buildResult:
|
560 |
+
variable: "COMPILER_SUPPORTS_CXX11"
|
561 |
+
cached: true
|
562 |
+
stdout: |
|
563 |
+
Change Dir: '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-Vyrsx6'
|
564 |
+
|
565 |
+
Run Build Command(s): /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_82721/fast
|
566 |
+
/usr/bin/gmake -f CMakeFiles/cmTC_82721.dir/build.make CMakeFiles/cmTC_82721.dir/build
|
567 |
+
gmake[1]: Entering directory '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-Vyrsx6'
|
568 |
+
Building CXX object CMakeFiles/cmTC_82721.dir/src.cxx.o
|
569 |
+
/usr/bin/c++ -DCOMPILER_SUPPORTS_CXX11 -std=c++11 -o CMakeFiles/cmTC_82721.dir/src.cxx.o -c /content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-Vyrsx6/src.cxx
|
570 |
+
Linking CXX executable cmTC_82721
|
571 |
+
/usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_82721.dir/link.txt --verbose=1
|
572 |
+
/usr/bin/c++ -rdynamic CMakeFiles/cmTC_82721.dir/src.cxx.o -o cmTC_82721
|
573 |
+
gmake[1]: Leaving directory '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-Vyrsx6'
|
574 |
+
|
575 |
+
exitCode: 0
|
576 |
+
-
|
577 |
+
kind: "try_compile-v1"
|
578 |
+
backtrace:
|
579 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)"
|
580 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)"
|
581 |
+
- "/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake:34 (cmake_check_compiler_flag)"
|
582 |
+
- "CMakeLists.txt:7 (CHECK_CXX_COMPILER_FLAG)"
|
583 |
+
checks:
|
584 |
+
- "Performing Test COMPILER_SUPPORTS_CXX0X"
|
585 |
+
directories:
|
586 |
+
source: "/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-pWl1UE"
|
587 |
+
binary: "/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-pWl1UE"
|
588 |
+
cmakeVariables:
|
589 |
+
CMAKE_CXX_FLAGS: ""
|
590 |
+
buildResult:
|
591 |
+
variable: "COMPILER_SUPPORTS_CXX0X"
|
592 |
+
cached: true
|
593 |
+
stdout: |
|
594 |
+
Change Dir: '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-pWl1UE'
|
595 |
+
|
596 |
+
Run Build Command(s): /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_ded5a/fast
|
597 |
+
/usr/bin/gmake -f CMakeFiles/cmTC_ded5a.dir/build.make CMakeFiles/cmTC_ded5a.dir/build
|
598 |
+
gmake[1]: Entering directory '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-pWl1UE'
|
599 |
+
Building CXX object CMakeFiles/cmTC_ded5a.dir/src.cxx.o
|
600 |
+
/usr/bin/c++ -DCOMPILER_SUPPORTS_CXX0X -std=c++0x -o CMakeFiles/cmTC_ded5a.dir/src.cxx.o -c /content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-pWl1UE/src.cxx
|
601 |
+
Linking CXX executable cmTC_ded5a
|
602 |
+
/usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ded5a.dir/link.txt --verbose=1
|
603 |
+
/usr/bin/c++ -rdynamic CMakeFiles/cmTC_ded5a.dir/src.cxx.o -o cmTC_ded5a
|
604 |
+
gmake[1]: Leaving directory '/content/NeuCoSVC-2/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-pWl1UE'
|
605 |
+
|
606 |
+
exitCode: 0
|
607 |
+
...
|
REAPER/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.27
|
3 |
+
|
4 |
+
# Relative path conversion top directories.
|
5 |
+
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/content/NeuCoSVC-2/REAPER")
|
6 |
+
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/content/NeuCoSVC-2/REAPER/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})
|
REAPER/build/CMakeFiles/Makefile.cmake
ADDED
@@ -0,0 +1,137 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# CMAKE generated file: DO NOT EDIT!
|
2 |
+
# Generated by "Unix Makefiles" Generator, CMake Version 3.27
|
3 |
+
|
4 |
+
# The generator used is:
|
5 |
+
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
|
6 |
+
|
7 |
+
# The top level Makefile was generated from the following files:
|
8 |
+
set(CMAKE_MAKEFILE_DEPENDS
|
9 |
+
"CMakeCache.txt"
|
10 |
+
"/content/NeuCoSVC-2/REAPER/CMakeLists.txt"
|
11 |
+
"CMakeFiles/3.27.9/CMakeCCompiler.cmake"
|
12 |
+
"CMakeFiles/3.27.9/CMakeCXXCompiler.cmake"
|
13 |
+
"CMakeFiles/3.27.9/CMakeSystem.cmake"
|
14 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCCompiler.cmake.in"
|
15 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCCompilerABI.c"
|
16 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCInformation.cmake"
|
17 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCXXCompiler.cmake.in"
|
18 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp"
|
19 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCXXInformation.cmake"
|
20 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
|
21 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake"
|
22 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeCompilerIdDetection.cmake"
|
23 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCCompiler.cmake"
|
24 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCXXCompiler.cmake"
|
25 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompileFeatures.cmake"
|
26 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompiler.cmake"
|
27 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake"
|
28 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake"
|
29 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeDetermineSystem.cmake"
|
30 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeFindBinUtils.cmake"
|
31 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeGenericSystem.cmake"
|
32 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake"
|
33 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake"
|
34 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeParseImplicitIncludeInfo.cmake"
|
35 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeParseImplicitLinkInfo.cmake"
|
36 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeParseLibraryArchitecture.cmake"
|
37 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeSystem.cmake.in"
|
38 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake"
|
39 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake"
|
40 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake"
|
41 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake"
|
42 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeTestCompilerCommon.cmake"
|
43 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CMakeUnixFindMake.cmake"
|
44 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake"
|
45 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake"
|
46 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/ADSP-DetermineCompiler.cmake"
|
47 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
|
48 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
|
49 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
|
50 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Borland-DetermineCompiler.cmake"
|
51 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
|
52 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
53 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompiler.cmake"
|
54 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
55 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
|
56 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
|
57 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
|
58 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Cray-DetermineCompiler.cmake"
|
59 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
|
60 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
|
61 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
|
62 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/GHS-DetermineCompiler.cmake"
|
63 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
|
64 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/GNU-C.cmake"
|
65 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
|
66 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake"
|
67 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/GNU-FindBinUtils.cmake"
|
68 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/GNU.cmake"
|
69 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/HP-C-DetermineCompiler.cmake"
|
70 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
|
71 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/IAR-DetermineCompiler.cmake"
|
72 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
73 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
74 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake"
|
75 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake"
|
76 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Intel-DetermineCompiler.cmake"
|
77 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
|
78 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/LCC-C-DetermineCompiler.cmake"
|
79 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake"
|
80 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/MSVC-DetermineCompiler.cmake"
|
81 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
|
82 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
|
83 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
|
84 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/PGI-DetermineCompiler.cmake"
|
85 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/PathScale-DetermineCompiler.cmake"
|
86 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/SCO-DetermineCompiler.cmake"
|
87 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
|
88 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
|
89 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
|
90 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/TI-DetermineCompiler.cmake"
|
91 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Tasking-DetermineCompiler.cmake"
|
92 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
|
93 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
|
94 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
|
95 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/Watcom-DetermineCompiler.cmake"
|
96 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/XL-C-DetermineCompiler.cmake"
|
97 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
|
98 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
|
99 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
|
100 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
|
101 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
|
102 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake"
|
103 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake"
|
104 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake"
|
105 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Internal/FeatureTesting.cmake"
|
106 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Platform/Linux-Determine-CXX.cmake"
|
107 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Platform/Linux-GNU-C.cmake"
|
108 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Platform/Linux-GNU-CXX.cmake"
|
109 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake"
|
110 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Platform/Linux-Initialize.cmake"
|
111 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Platform/Linux.cmake"
|
112 |
+
"/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27/Modules/Platform/UnixPaths.cmake"
|
113 |
+
)
|
114 |
+
|
115 |
+
# The corresponding makefile is:
|
116 |
+
set(CMAKE_MAKEFILE_OUTPUTS
|
117 |
+
"Makefile"
|
118 |
+
"CMakeFiles/cmake.check_cache"
|
119 |
+
)
|
120 |
+
|
121 |
+
# Byproducts of CMake generate step:
|
122 |
+
set(CMAKE_MAKEFILE_PRODUCTS
|
123 |
+
"CMakeFiles/3.27.9/CMakeSystem.cmake"
|
124 |
+
"CMakeFiles/3.27.9/CMakeCCompiler.cmake"
|
125 |
+
"CMakeFiles/3.27.9/CMakeCXXCompiler.cmake"
|
126 |
+
"CMakeFiles/3.27.9/CMakeCCompiler.cmake"
|
127 |
+
"CMakeFiles/3.27.9/CMakeCXXCompiler.cmake"
|
128 |
+
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
129 |
+
)
|
130 |
+
|
131 |
+
# Dependency information for all targets:
|
132 |
+
set(CMAKE_DEPEND_INFO_FILES
|
133 |
+
"CMakeFiles/core.dir/DependInfo.cmake"
|
134 |
+
"CMakeFiles/wave.dir/DependInfo.cmake"
|
135 |
+
"CMakeFiles/epoch_tracker.dir/DependInfo.cmake"
|
136 |
+
"CMakeFiles/reaper.dir/DependInfo.cmake"
|
137 |
+
)
|
REAPER/build/CMakeFiles/Makefile2
ADDED
@@ -0,0 +1,199 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# CMAKE generated file: DO NOT EDIT!
|
2 |
+
# Generated by "Unix Makefiles" Generator, CMake Version 3.27
|
3 |
+
|
4 |
+
# Default target executed when no arguments are given to make.
|
5 |
+
default_target: all
|
6 |
+
.PHONY : default_target
|
7 |
+
|
8 |
+
#=============================================================================
|
9 |
+
# Special targets provided by cmake.
|
10 |
+
|
11 |
+
# Disable implicit rules so canonical targets will work.
|
12 |
+
.SUFFIXES:
|
13 |
+
|
14 |
+
# Disable VCS-based implicit rules.
|
15 |
+
% : %,v
|
16 |
+
|
17 |
+
# Disable VCS-based implicit rules.
|
18 |
+
% : RCS/%
|
19 |
+
|
20 |
+
# Disable VCS-based implicit rules.
|
21 |
+
% : RCS/%,v
|
22 |
+
|
23 |
+
# Disable VCS-based implicit rules.
|
24 |
+
% : SCCS/s.%
|
25 |
+
|
26 |
+
# Disable VCS-based implicit rules.
|
27 |
+
% : s.%
|
28 |
+
|
29 |
+
.SUFFIXES: .hpux_make_needs_suffix_list
|
30 |
+
|
31 |
+
# Command-line flag to silence nested $(MAKE).
|
32 |
+
$(VERBOSE)MAKESILENT = -s
|
33 |
+
|
34 |
+
#Suppress display of executed commands.
|
35 |
+
$(VERBOSE).SILENT:
|
36 |
+
|
37 |
+
# A target that is always out of date.
|
38 |
+
cmake_force:
|
39 |
+
.PHONY : cmake_force
|
40 |
+
|
41 |
+
#=============================================================================
|
42 |
+
# Set environment variables for the build.
|
43 |
+
|
44 |
+
# The shell in which to execute make rules.
|
45 |
+
SHELL = /bin/sh
|
46 |
+
|
47 |
+
# The CMake executable.
|
48 |
+
CMAKE_COMMAND = /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake
|
49 |
+
|
50 |
+
# The command to remove a file.
|
51 |
+
RM = /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E rm -f
|
52 |
+
|
53 |
+
# Escaping for special characters.
|
54 |
+
EQUALS = =
|
55 |
+
|
56 |
+
# The top-level source directory on which CMake was run.
|
57 |
+
CMAKE_SOURCE_DIR = /content/NeuCoSVC-2/REAPER
|
58 |
+
|
59 |
+
# The top-level build directory on which CMake was run.
|
60 |
+
CMAKE_BINARY_DIR = /content/NeuCoSVC-2/REAPER/build
|
61 |
+
|
62 |
+
#=============================================================================
|
63 |
+
# Directory level rules for the build root directory
|
64 |
+
|
65 |
+
# The main recursive "all" target.
|
66 |
+
all: CMakeFiles/core.dir/all
|
67 |
+
all: CMakeFiles/wave.dir/all
|
68 |
+
all: CMakeFiles/epoch_tracker.dir/all
|
69 |
+
all: CMakeFiles/reaper.dir/all
|
70 |
+
.PHONY : all
|
71 |
+
|
72 |
+
# The main recursive "preinstall" target.
|
73 |
+
preinstall:
|
74 |
+
.PHONY : preinstall
|
75 |
+
|
76 |
+
# The main recursive "clean" target.
|
77 |
+
clean: CMakeFiles/core.dir/clean
|
78 |
+
clean: CMakeFiles/wave.dir/clean
|
79 |
+
clean: CMakeFiles/epoch_tracker.dir/clean
|
80 |
+
clean: CMakeFiles/reaper.dir/clean
|
81 |
+
.PHONY : clean
|
82 |
+
|
83 |
+
#=============================================================================
|
84 |
+
# Target rules for target CMakeFiles/core.dir
|
85 |
+
|
86 |
+
# All Build rule for target.
|
87 |
+
CMakeFiles/core.dir/all:
|
88 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/core.dir/build.make CMakeFiles/core.dir/depend
|
89 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/core.dir/build.make CMakeFiles/core.dir/build
|
90 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=1,2,3,4 "Built target core"
|
91 |
+
.PHONY : CMakeFiles/core.dir/all
|
92 |
+
|
93 |
+
# Build rule for subdir invocation for target.
|
94 |
+
CMakeFiles/core.dir/rule: cmake_check_build_system
|
95 |
+
$(CMAKE_COMMAND) -E cmake_progress_start /content/NeuCoSVC-2/REAPER/build/CMakeFiles 4
|
96 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/core.dir/all
|
97 |
+
$(CMAKE_COMMAND) -E cmake_progress_start /content/NeuCoSVC-2/REAPER/build/CMakeFiles 0
|
98 |
+
.PHONY : CMakeFiles/core.dir/rule
|
99 |
+
|
100 |
+
# Convenience name for target.
|
101 |
+
core: CMakeFiles/core.dir/rule
|
102 |
+
.PHONY : core
|
103 |
+
|
104 |
+
# clean rule for target.
|
105 |
+
CMakeFiles/core.dir/clean:
|
106 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/core.dir/build.make CMakeFiles/core.dir/clean
|
107 |
+
.PHONY : CMakeFiles/core.dir/clean
|
108 |
+
|
109 |
+
#=============================================================================
|
110 |
+
# Target rules for target CMakeFiles/wave.dir
|
111 |
+
|
112 |
+
# All Build rule for target.
|
113 |
+
CMakeFiles/wave.dir/all: CMakeFiles/core.dir/all
|
114 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/wave.dir/build.make CMakeFiles/wave.dir/depend
|
115 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/wave.dir/build.make CMakeFiles/wave.dir/build
|
116 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=12,13,14,15 "Built target wave"
|
117 |
+
.PHONY : CMakeFiles/wave.dir/all
|
118 |
+
|
119 |
+
# Build rule for subdir invocation for target.
|
120 |
+
CMakeFiles/wave.dir/rule: cmake_check_build_system
|
121 |
+
$(CMAKE_COMMAND) -E cmake_progress_start /content/NeuCoSVC-2/REAPER/build/CMakeFiles 8
|
122 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/wave.dir/all
|
123 |
+
$(CMAKE_COMMAND) -E cmake_progress_start /content/NeuCoSVC-2/REAPER/build/CMakeFiles 0
|
124 |
+
.PHONY : CMakeFiles/wave.dir/rule
|
125 |
+
|
126 |
+
# Convenience name for target.
|
127 |
+
wave: CMakeFiles/wave.dir/rule
|
128 |
+
.PHONY : wave
|
129 |
+
|
130 |
+
# clean rule for target.
|
131 |
+
CMakeFiles/wave.dir/clean:
|
132 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/wave.dir/build.make CMakeFiles/wave.dir/clean
|
133 |
+
.PHONY : CMakeFiles/wave.dir/clean
|
134 |
+
|
135 |
+
#=============================================================================
|
136 |
+
# Target rules for target CMakeFiles/epoch_tracker.dir
|
137 |
+
|
138 |
+
# All Build rule for target.
|
139 |
+
CMakeFiles/epoch_tracker.dir/all: CMakeFiles/wave.dir/all
|
140 |
+
CMakeFiles/epoch_tracker.dir/all: CMakeFiles/core.dir/all
|
141 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/epoch_tracker.dir/build.make CMakeFiles/epoch_tracker.dir/depend
|
142 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/epoch_tracker.dir/build.make CMakeFiles/epoch_tracker.dir/build
|
143 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=5,6,7,8,9 "Built target epoch_tracker"
|
144 |
+
.PHONY : CMakeFiles/epoch_tracker.dir/all
|
145 |
+
|
146 |
+
# Build rule for subdir invocation for target.
|
147 |
+
CMakeFiles/epoch_tracker.dir/rule: cmake_check_build_system
|
148 |
+
$(CMAKE_COMMAND) -E cmake_progress_start /content/NeuCoSVC-2/REAPER/build/CMakeFiles 13
|
149 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/epoch_tracker.dir/all
|
150 |
+
$(CMAKE_COMMAND) -E cmake_progress_start /content/NeuCoSVC-2/REAPER/build/CMakeFiles 0
|
151 |
+
.PHONY : CMakeFiles/epoch_tracker.dir/rule
|
152 |
+
|
153 |
+
# Convenience name for target.
|
154 |
+
epoch_tracker: CMakeFiles/epoch_tracker.dir/rule
|
155 |
+
.PHONY : epoch_tracker
|
156 |
+
|
157 |
+
# clean rule for target.
|
158 |
+
CMakeFiles/epoch_tracker.dir/clean:
|
159 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/epoch_tracker.dir/build.make CMakeFiles/epoch_tracker.dir/clean
|
160 |
+
.PHONY : CMakeFiles/epoch_tracker.dir/clean
|
161 |
+
|
162 |
+
#=============================================================================
|
163 |
+
# Target rules for target CMakeFiles/reaper.dir
|
164 |
+
|
165 |
+
# All Build rule for target.
|
166 |
+
CMakeFiles/reaper.dir/all: CMakeFiles/wave.dir/all
|
167 |
+
CMakeFiles/reaper.dir/all: CMakeFiles/epoch_tracker.dir/all
|
168 |
+
CMakeFiles/reaper.dir/all: CMakeFiles/core.dir/all
|
169 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/reaper.dir/build.make CMakeFiles/reaper.dir/depend
|
170 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/reaper.dir/build.make CMakeFiles/reaper.dir/build
|
171 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=10,11 "Built target reaper"
|
172 |
+
.PHONY : CMakeFiles/reaper.dir/all
|
173 |
+
|
174 |
+
# Build rule for subdir invocation for target.
|
175 |
+
CMakeFiles/reaper.dir/rule: cmake_check_build_system
|
176 |
+
$(CMAKE_COMMAND) -E cmake_progress_start /content/NeuCoSVC-2/REAPER/build/CMakeFiles 15
|
177 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/reaper.dir/all
|
178 |
+
$(CMAKE_COMMAND) -E cmake_progress_start /content/NeuCoSVC-2/REAPER/build/CMakeFiles 0
|
179 |
+
.PHONY : CMakeFiles/reaper.dir/rule
|
180 |
+
|
181 |
+
# Convenience name for target.
|
182 |
+
reaper: CMakeFiles/reaper.dir/rule
|
183 |
+
.PHONY : reaper
|
184 |
+
|
185 |
+
# clean rule for target.
|
186 |
+
CMakeFiles/reaper.dir/clean:
|
187 |
+
$(MAKE) $(MAKESILENT) -f CMakeFiles/reaper.dir/build.make CMakeFiles/reaper.dir/clean
|
188 |
+
.PHONY : CMakeFiles/reaper.dir/clean
|
189 |
+
|
190 |
+
#=============================================================================
|
191 |
+
# Special targets to cleanup operation of make.
|
192 |
+
|
193 |
+
# Special rule to run CMake to check the build system integrity.
|
194 |
+
# No rule that depends on this can have commands that come from listfiles
|
195 |
+
# because they might be regenerated.
|
196 |
+
cmake_check_build_system:
|
197 |
+
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
198 |
+
.PHONY : cmake_check_build_system
|
199 |
+
|
REAPER/build/CMakeFiles/TargetDirectories.txt
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/content/NeuCoSVC-2/REAPER/build/CMakeFiles/core.dir
|
2 |
+
/content/NeuCoSVC-2/REAPER/build/CMakeFiles/wave.dir
|
3 |
+
/content/NeuCoSVC-2/REAPER/build/CMakeFiles/epoch_tracker.dir
|
4 |
+
/content/NeuCoSVC-2/REAPER/build/CMakeFiles/reaper.dir
|
5 |
+
/content/NeuCoSVC-2/REAPER/build/CMakeFiles/edit_cache.dir
|
6 |
+
/content/NeuCoSVC-2/REAPER/build/CMakeFiles/rebuild_cache.dir
|
REAPER/build/CMakeFiles/cmake.check_cache
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
REAPER/build/CMakeFiles/core.dir/DependInfo.cmake
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"/content/NeuCoSVC-2/REAPER/core/file_resource.cc" "CMakeFiles/core.dir/core/file_resource.cc.o" "gcc" "CMakeFiles/core.dir/core/file_resource.cc.o.d"
|
12 |
+
"/content/NeuCoSVC-2/REAPER/core/float_matrix.cc" "CMakeFiles/core.dir/core/float_matrix.cc.o" "gcc" "CMakeFiles/core.dir/core/float_matrix.cc.o.d"
|
13 |
+
"/content/NeuCoSVC-2/REAPER/core/track.cc" "CMakeFiles/core.dir/core/track.cc.o" "gcc" "CMakeFiles/core.dir/core/track.cc.o.d"
|
14 |
+
)
|
15 |
+
|
16 |
+
# Targets to which this target links which contain Fortran sources.
|
17 |
+
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
|
18 |
+
)
|
19 |
+
|
20 |
+
# Fortran module output directory.
|
21 |
+
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
REAPER/build/CMakeFiles/core.dir/build.make
ADDED
@@ -0,0 +1,143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# CMAKE generated file: DO NOT EDIT!
|
2 |
+
# Generated by "Unix Makefiles" Generator, CMake Version 3.27
|
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.10/dist-packages/cmake/data/bin/cmake
|
48 |
+
|
49 |
+
# The command to remove a file.
|
50 |
+
RM = /usr/local/lib/python3.10/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/NeuCoSVC-2/REAPER
|
57 |
+
|
58 |
+
# The top-level build directory on which CMake was run.
|
59 |
+
CMAKE_BINARY_DIR = /content/NeuCoSVC-2/REAPER/build
|
60 |
+
|
61 |
+
# Include any dependencies generated for this target.
|
62 |
+
include CMakeFiles/core.dir/depend.make
|
63 |
+
# Include any dependencies generated by the compiler for this target.
|
64 |
+
include CMakeFiles/core.dir/compiler_depend.make
|
65 |
+
|
66 |
+
# Include the progress variables for this target.
|
67 |
+
include CMakeFiles/core.dir/progress.make
|
68 |
+
|
69 |
+
# Include the compile flags for this target's objects.
|
70 |
+
include CMakeFiles/core.dir/flags.make
|
71 |
+
|
72 |
+
CMakeFiles/core.dir/core/file_resource.cc.o: CMakeFiles/core.dir/flags.make
|
73 |
+
CMakeFiles/core.dir/core/file_resource.cc.o: /content/NeuCoSVC-2/REAPER/core/file_resource.cc
|
74 |
+
CMakeFiles/core.dir/core/file_resource.cc.o: CMakeFiles/core.dir/compiler_depend.ts
|
75 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/core.dir/core/file_resource.cc.o"
|
76 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/core.dir/core/file_resource.cc.o -MF CMakeFiles/core.dir/core/file_resource.cc.o.d -o CMakeFiles/core.dir/core/file_resource.cc.o -c /content/NeuCoSVC-2/REAPER/core/file_resource.cc
|
77 |
+
|
78 |
+
CMakeFiles/core.dir/core/file_resource.cc.i: cmake_force
|
79 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/core.dir/core/file_resource.cc.i"
|
80 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /content/NeuCoSVC-2/REAPER/core/file_resource.cc > CMakeFiles/core.dir/core/file_resource.cc.i
|
81 |
+
|
82 |
+
CMakeFiles/core.dir/core/file_resource.cc.s: cmake_force
|
83 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/core.dir/core/file_resource.cc.s"
|
84 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /content/NeuCoSVC-2/REAPER/core/file_resource.cc -o CMakeFiles/core.dir/core/file_resource.cc.s
|
85 |
+
|
86 |
+
CMakeFiles/core.dir/core/float_matrix.cc.o: CMakeFiles/core.dir/flags.make
|
87 |
+
CMakeFiles/core.dir/core/float_matrix.cc.o: /content/NeuCoSVC-2/REAPER/core/float_matrix.cc
|
88 |
+
CMakeFiles/core.dir/core/float_matrix.cc.o: CMakeFiles/core.dir/compiler_depend.ts
|
89 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/core.dir/core/float_matrix.cc.o"
|
90 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/core.dir/core/float_matrix.cc.o -MF CMakeFiles/core.dir/core/float_matrix.cc.o.d -o CMakeFiles/core.dir/core/float_matrix.cc.o -c /content/NeuCoSVC-2/REAPER/core/float_matrix.cc
|
91 |
+
|
92 |
+
CMakeFiles/core.dir/core/float_matrix.cc.i: cmake_force
|
93 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/core.dir/core/float_matrix.cc.i"
|
94 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /content/NeuCoSVC-2/REAPER/core/float_matrix.cc > CMakeFiles/core.dir/core/float_matrix.cc.i
|
95 |
+
|
96 |
+
CMakeFiles/core.dir/core/float_matrix.cc.s: cmake_force
|
97 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/core.dir/core/float_matrix.cc.s"
|
98 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /content/NeuCoSVC-2/REAPER/core/float_matrix.cc -o CMakeFiles/core.dir/core/float_matrix.cc.s
|
99 |
+
|
100 |
+
CMakeFiles/core.dir/core/track.cc.o: CMakeFiles/core.dir/flags.make
|
101 |
+
CMakeFiles/core.dir/core/track.cc.o: /content/NeuCoSVC-2/REAPER/core/track.cc
|
102 |
+
CMakeFiles/core.dir/core/track.cc.o: CMakeFiles/core.dir/compiler_depend.ts
|
103 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/core.dir/core/track.cc.o"
|
104 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/core.dir/core/track.cc.o -MF CMakeFiles/core.dir/core/track.cc.o.d -o CMakeFiles/core.dir/core/track.cc.o -c /content/NeuCoSVC-2/REAPER/core/track.cc
|
105 |
+
|
106 |
+
CMakeFiles/core.dir/core/track.cc.i: cmake_force
|
107 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/core.dir/core/track.cc.i"
|
108 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /content/NeuCoSVC-2/REAPER/core/track.cc > CMakeFiles/core.dir/core/track.cc.i
|
109 |
+
|
110 |
+
CMakeFiles/core.dir/core/track.cc.s: cmake_force
|
111 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/core.dir/core/track.cc.s"
|
112 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /content/NeuCoSVC-2/REAPER/core/track.cc -o CMakeFiles/core.dir/core/track.cc.s
|
113 |
+
|
114 |
+
# Object files for target core
|
115 |
+
core_OBJECTS = \
|
116 |
+
"CMakeFiles/core.dir/core/file_resource.cc.o" \
|
117 |
+
"CMakeFiles/core.dir/core/float_matrix.cc.o" \
|
118 |
+
"CMakeFiles/core.dir/core/track.cc.o"
|
119 |
+
|
120 |
+
# External object files for target core
|
121 |
+
core_EXTERNAL_OBJECTS =
|
122 |
+
|
123 |
+
libcore.a: CMakeFiles/core.dir/core/file_resource.cc.o
|
124 |
+
libcore.a: CMakeFiles/core.dir/core/float_matrix.cc.o
|
125 |
+
libcore.a: CMakeFiles/core.dir/core/track.cc.o
|
126 |
+
libcore.a: CMakeFiles/core.dir/build.make
|
127 |
+
libcore.a: CMakeFiles/core.dir/link.txt
|
128 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking CXX static library libcore.a"
|
129 |
+
$(CMAKE_COMMAND) -P CMakeFiles/core.dir/cmake_clean_target.cmake
|
130 |
+
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/core.dir/link.txt --verbose=$(VERBOSE)
|
131 |
+
|
132 |
+
# Rule to build all files generated by this target.
|
133 |
+
CMakeFiles/core.dir/build: libcore.a
|
134 |
+
.PHONY : CMakeFiles/core.dir/build
|
135 |
+
|
136 |
+
CMakeFiles/core.dir/clean:
|
137 |
+
$(CMAKE_COMMAND) -P CMakeFiles/core.dir/cmake_clean.cmake
|
138 |
+
.PHONY : CMakeFiles/core.dir/clean
|
139 |
+
|
140 |
+
CMakeFiles/core.dir/depend:
|
141 |
+
cd /content/NeuCoSVC-2/REAPER/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /content/NeuCoSVC-2/REAPER /content/NeuCoSVC-2/REAPER /content/NeuCoSVC-2/REAPER/build /content/NeuCoSVC-2/REAPER/build /content/NeuCoSVC-2/REAPER/build/CMakeFiles/core.dir/DependInfo.cmake "--color=$(COLOR)"
|
142 |
+
.PHONY : CMakeFiles/core.dir/depend
|
143 |
+
|
REAPER/build/CMakeFiles/core.dir/cmake_clean.cmake
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
file(REMOVE_RECURSE
|
2 |
+
"CMakeFiles/core.dir/core/file_resource.cc.o"
|
3 |
+
"CMakeFiles/core.dir/core/file_resource.cc.o.d"
|
4 |
+
"CMakeFiles/core.dir/core/float_matrix.cc.o"
|
5 |
+
"CMakeFiles/core.dir/core/float_matrix.cc.o.d"
|
6 |
+
"CMakeFiles/core.dir/core/track.cc.o"
|
7 |
+
"CMakeFiles/core.dir/core/track.cc.o.d"
|
8 |
+
"libcore.a"
|
9 |
+
"libcore.pdb"
|
10 |
+
)
|
11 |
+
|
12 |
+
# Per-language clean rules from dependency scanning.
|
13 |
+
foreach(lang CXX)
|
14 |
+
include(CMakeFiles/core.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
15 |
+
endforeach()
|
REAPER/build/CMakeFiles/core.dir/cmake_clean_target.cmake
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
file(REMOVE_RECURSE
|
2 |
+
"libcore.a"
|
3 |
+
)
|
REAPER/build/CMakeFiles/core.dir/compiler_depend.make
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
# Empty compiler generated dependencies file for core.
|
2 |
+
# This may be replaced when dependencies are built.
|
REAPER/build/CMakeFiles/core.dir/compiler_depend.ts
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
# CMAKE generated file: DO NOT EDIT!
|
2 |
+
# Timestamp file for compiler generated dependencies management for core.
|
REAPER/build/CMakeFiles/core.dir/core/file_resource.cc.o
ADDED
Binary file (3.31 kB). View file
|
|
REAPER/build/CMakeFiles/core.dir/core/file_resource.cc.o.d
ADDED
@@ -0,0 +1,129 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CMakeFiles/core.dir/core/file_resource.cc.o: \
|
2 |
+
/content/NeuCoSVC-2/REAPER/core/file_resource.cc \
|
3 |
+
/usr/include/stdc-predef.h \
|
4 |
+
/content/NeuCoSVC-2/REAPER/./core/file_resource.h /usr/include/stdio.h \
|
5 |
+
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
6 |
+
/usr/include/features.h /usr/include/features-time64.h \
|
7 |
+
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
8 |
+
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
9 |
+
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
10 |
+
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
11 |
+
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
12 |
+
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
13 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \
|
14 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \
|
15 |
+
/usr/include/x86_64-linux-gnu/bits/types.h \
|
16 |
+
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
17 |
+
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
18 |
+
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
19 |
+
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
20 |
+
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
21 |
+
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
22 |
+
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
23 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
24 |
+
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
25 |
+
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
26 |
+
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
27 |
+
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
28 |
+
/usr/include/c++/11/string \
|
29 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \
|
30 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \
|
31 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \
|
32 |
+
/usr/include/c++/11/bits/stringfwd.h \
|
33 |
+
/usr/include/c++/11/bits/memoryfwd.h \
|
34 |
+
/usr/include/c++/11/bits/char_traits.h \
|
35 |
+
/usr/include/c++/11/bits/stl_algobase.h \
|
36 |
+
/usr/include/c++/11/bits/functexcept.h \
|
37 |
+
/usr/include/c++/11/bits/exception_defines.h \
|
38 |
+
/usr/include/c++/11/bits/cpp_type_traits.h \
|
39 |
+
/usr/include/c++/11/ext/type_traits.h \
|
40 |
+
/usr/include/c++/11/ext/numeric_traits.h \
|
41 |
+
/usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \
|
42 |
+
/usr/include/c++/11/type_traits \
|
43 |
+
/usr/include/c++/11/bits/stl_iterator_base_types.h \
|
44 |
+
/usr/include/c++/11/bits/stl_iterator_base_funcs.h \
|
45 |
+
/usr/include/c++/11/bits/concept_check.h \
|
46 |
+
/usr/include/c++/11/debug/assertions.h \
|
47 |
+
/usr/include/c++/11/bits/stl_iterator.h \
|
48 |
+
/usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \
|
49 |
+
/usr/include/c++/11/bits/predefined_ops.h \
|
50 |
+
/usr/include/c++/11/bits/postypes.h /usr/include/c++/11/cwchar \
|
51 |
+
/usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/wchar.h \
|
52 |
+
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
|
53 |
+
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
|
54 |
+
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
55 |
+
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
56 |
+
/usr/include/c++/11/cstdint \
|
57 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \
|
58 |
+
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
|
59 |
+
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
60 |
+
/usr/include/c++/11/bits/allocator.h \
|
61 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \
|
62 |
+
/usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \
|
63 |
+
/usr/include/c++/11/bits/exception.h \
|
64 |
+
/usr/include/c++/11/bits/localefwd.h \
|
65 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \
|
66 |
+
/usr/include/c++/11/clocale /usr/include/locale.h \
|
67 |
+
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/iosfwd \
|
68 |
+
/usr/include/c++/11/cctype /usr/include/ctype.h \
|
69 |
+
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
70 |
+
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
71 |
+
/usr/include/c++/11/bits/ostream_insert.h \
|
72 |
+
/usr/include/c++/11/bits/cxxabi_forced.h \
|
73 |
+
/usr/include/c++/11/bits/stl_function.h \
|
74 |
+
/usr/include/c++/11/backward/binders.h \
|
75 |
+
/usr/include/c++/11/bits/range_access.h \
|
76 |
+
/usr/include/c++/11/initializer_list \
|
77 |
+
/usr/include/c++/11/bits/basic_string.h \
|
78 |
+
/usr/include/c++/11/ext/atomicity.h \
|
79 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \
|
80 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \
|
81 |
+
/usr/include/pthread.h /usr/include/sched.h \
|
82 |
+
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
83 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
84 |
+
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
85 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
86 |
+
/usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
|
87 |
+
/usr/include/x86_64-linux-gnu/bits/time.h \
|
88 |
+
/usr/include/x86_64-linux-gnu/bits/timex.h \
|
89 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
90 |
+
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
91 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
92 |
+
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
93 |
+
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
94 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
95 |
+
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
96 |
+
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
97 |
+
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
98 |
+
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
99 |
+
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
100 |
+
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
101 |
+
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
102 |
+
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
103 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
104 |
+
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
105 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \
|
106 |
+
/usr/include/x86_64-linux-gnu/sys/single_threaded.h \
|
107 |
+
/usr/include/c++/11/ext/alloc_traits.h \
|
108 |
+
/usr/include/c++/11/bits/alloc_traits.h \
|
109 |
+
/usr/include/c++/11/bits/stl_construct.h \
|
110 |
+
/usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdlib \
|
111 |
+
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
112 |
+
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
113 |
+
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \
|
114 |
+
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
115 |
+
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
116 |
+
/usr/include/x86_64-linux-gnu/sys/select.h \
|
117 |
+
/usr/include/x86_64-linux-gnu/bits/select.h \
|
118 |
+
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
119 |
+
/usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
120 |
+
/usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/cstdio \
|
121 |
+
/usr/include/c++/11/cerrno /usr/include/errno.h \
|
122 |
+
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
123 |
+
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
124 |
+
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
125 |
+
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
126 |
+
/usr/include/c++/11/bits/charconv.h \
|
127 |
+
/usr/include/c++/11/bits/functional_hash.h \
|
128 |
+
/usr/include/c++/11/bits/hash_bytes.h \
|
129 |
+
/usr/include/c++/11/bits/basic_string.tcc
|
REAPER/build/CMakeFiles/core.dir/core/float_matrix.cc.o
ADDED
Binary file (3.51 kB). View file
|
|
REAPER/build/CMakeFiles/core.dir/core/float_matrix.cc.o.d
ADDED
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CMakeFiles/core.dir/core/float_matrix.cc.o: \
|
2 |
+
/content/NeuCoSVC-2/REAPER/core/float_matrix.cc \
|
3 |
+
/usr/include/stdc-predef.h \
|
4 |
+
/content/NeuCoSVC-2/REAPER/./core/float_matrix.h \
|
5 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \
|
6 |
+
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
7 |
+
/usr/include/features.h /usr/include/features-time64.h \
|
8 |
+
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
9 |
+
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
10 |
+
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
11 |
+
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
12 |
+
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
13 |
+
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
14 |
+
/usr/include/x86_64-linux-gnu/bits/types.h \
|
15 |
+
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
16 |
+
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
17 |
+
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
18 |
+
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
|
19 |
+
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
20 |
+
/usr/include/c++/11/string \
|
21 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \
|
22 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \
|
23 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \
|
24 |
+
/usr/include/c++/11/bits/stringfwd.h \
|
25 |
+
/usr/include/c++/11/bits/memoryfwd.h \
|
26 |
+
/usr/include/c++/11/bits/char_traits.h \
|
27 |
+
/usr/include/c++/11/bits/stl_algobase.h \
|
28 |
+
/usr/include/c++/11/bits/functexcept.h \
|
29 |
+
/usr/include/c++/11/bits/exception_defines.h \
|
30 |
+
/usr/include/c++/11/bits/cpp_type_traits.h \
|
31 |
+
/usr/include/c++/11/ext/type_traits.h \
|
32 |
+
/usr/include/c++/11/ext/numeric_traits.h \
|
33 |
+
/usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \
|
34 |
+
/usr/include/c++/11/type_traits \
|
35 |
+
/usr/include/c++/11/bits/stl_iterator_base_types.h \
|
36 |
+
/usr/include/c++/11/bits/stl_iterator_base_funcs.h \
|
37 |
+
/usr/include/c++/11/bits/concept_check.h \
|
38 |
+
/usr/include/c++/11/debug/assertions.h \
|
39 |
+
/usr/include/c++/11/bits/stl_iterator.h \
|
40 |
+
/usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \
|
41 |
+
/usr/include/c++/11/bits/predefined_ops.h \
|
42 |
+
/usr/include/c++/11/bits/postypes.h /usr/include/c++/11/cwchar \
|
43 |
+
/usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \
|
44 |
+
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
45 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \
|
46 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \
|
47 |
+
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
|
48 |
+
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
|
49 |
+
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
50 |
+
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
51 |
+
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
52 |
+
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
53 |
+
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
54 |
+
/usr/include/c++/11/cstdint /usr/include/c++/11/bits/allocator.h \
|
55 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \
|
56 |
+
/usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \
|
57 |
+
/usr/include/c++/11/bits/exception.h \
|
58 |
+
/usr/include/c++/11/bits/localefwd.h \
|
59 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \
|
60 |
+
/usr/include/c++/11/clocale /usr/include/locale.h \
|
61 |
+
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/iosfwd \
|
62 |
+
/usr/include/c++/11/cctype /usr/include/ctype.h \
|
63 |
+
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
64 |
+
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
65 |
+
/usr/include/c++/11/bits/ostream_insert.h \
|
66 |
+
/usr/include/c++/11/bits/cxxabi_forced.h \
|
67 |
+
/usr/include/c++/11/bits/stl_function.h \
|
68 |
+
/usr/include/c++/11/backward/binders.h \
|
69 |
+
/usr/include/c++/11/bits/range_access.h \
|
70 |
+
/usr/include/c++/11/initializer_list \
|
71 |
+
/usr/include/c++/11/bits/basic_string.h \
|
72 |
+
/usr/include/c++/11/ext/atomicity.h \
|
73 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \
|
74 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \
|
75 |
+
/usr/include/pthread.h /usr/include/sched.h \
|
76 |
+
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
77 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
78 |
+
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
79 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
80 |
+
/usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
|
81 |
+
/usr/include/x86_64-linux-gnu/bits/time.h \
|
82 |
+
/usr/include/x86_64-linux-gnu/bits/timex.h \
|
83 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
84 |
+
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
85 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
86 |
+
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
87 |
+
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
88 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
89 |
+
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
90 |
+
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
91 |
+
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
92 |
+
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
93 |
+
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
94 |
+
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
95 |
+
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
96 |
+
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
97 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
98 |
+
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
99 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \
|
100 |
+
/usr/include/x86_64-linux-gnu/sys/single_threaded.h \
|
101 |
+
/usr/include/c++/11/ext/alloc_traits.h \
|
102 |
+
/usr/include/c++/11/bits/alloc_traits.h \
|
103 |
+
/usr/include/c++/11/bits/stl_construct.h \
|
104 |
+
/usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdlib \
|
105 |
+
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
106 |
+
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
107 |
+
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \
|
108 |
+
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
109 |
+
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
110 |
+
/usr/include/x86_64-linux-gnu/sys/select.h \
|
111 |
+
/usr/include/x86_64-linux-gnu/bits/select.h \
|
112 |
+
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
113 |
+
/usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
114 |
+
/usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/cstdio \
|
115 |
+
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
116 |
+
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
117 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
118 |
+
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
119 |
+
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
120 |
+
/usr/include/c++/11/cerrno /usr/include/errno.h \
|
121 |
+
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
122 |
+
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
123 |
+
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
124 |
+
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
125 |
+
/usr/include/c++/11/bits/charconv.h \
|
126 |
+
/usr/include/c++/11/bits/functional_hash.h \
|
127 |
+
/usr/include/c++/11/bits/hash_bytes.h \
|
128 |
+
/usr/include/c++/11/bits/basic_string.tcc \
|
129 |
+
/content/NeuCoSVC-2/REAPER/./core/float_matrix-inl.h \
|
130 |
+
/usr/include/string.h /usr/include/strings.h
|
REAPER/build/CMakeFiles/core.dir/core/track.cc.o
ADDED
Binary file (155 kB). View file
|
|
REAPER/build/CMakeFiles/core.dir/core/track.cc.o.d
ADDED
@@ -0,0 +1,165 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CMakeFiles/core.dir/core/track.cc.o: \
|
2 |
+
/content/NeuCoSVC-2/REAPER/core/track.cc /usr/include/stdc-predef.h \
|
3 |
+
/content/NeuCoSVC-2/REAPER/./core/track.h \
|
4 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \
|
5 |
+
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
6 |
+
/usr/include/features.h /usr/include/features-time64.h \
|
7 |
+
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
8 |
+
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
9 |
+
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
10 |
+
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
11 |
+
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
12 |
+
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
13 |
+
/usr/include/x86_64-linux-gnu/bits/types.h \
|
14 |
+
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
15 |
+
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
16 |
+
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
17 |
+
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
|
18 |
+
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
19 |
+
/usr/include/c++/11/string \
|
20 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \
|
21 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \
|
22 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \
|
23 |
+
/usr/include/c++/11/bits/stringfwd.h \
|
24 |
+
/usr/include/c++/11/bits/memoryfwd.h \
|
25 |
+
/usr/include/c++/11/bits/char_traits.h \
|
26 |
+
/usr/include/c++/11/bits/stl_algobase.h \
|
27 |
+
/usr/include/c++/11/bits/functexcept.h \
|
28 |
+
/usr/include/c++/11/bits/exception_defines.h \
|
29 |
+
/usr/include/c++/11/bits/cpp_type_traits.h \
|
30 |
+
/usr/include/c++/11/ext/type_traits.h \
|
31 |
+
/usr/include/c++/11/ext/numeric_traits.h \
|
32 |
+
/usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \
|
33 |
+
/usr/include/c++/11/type_traits \
|
34 |
+
/usr/include/c++/11/bits/stl_iterator_base_types.h \
|
35 |
+
/usr/include/c++/11/bits/stl_iterator_base_funcs.h \
|
36 |
+
/usr/include/c++/11/bits/concept_check.h \
|
37 |
+
/usr/include/c++/11/debug/assertions.h \
|
38 |
+
/usr/include/c++/11/bits/stl_iterator.h \
|
39 |
+
/usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \
|
40 |
+
/usr/include/c++/11/bits/predefined_ops.h \
|
41 |
+
/usr/include/c++/11/bits/postypes.h /usr/include/c++/11/cwchar \
|
42 |
+
/usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \
|
43 |
+
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
44 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \
|
45 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \
|
46 |
+
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
|
47 |
+
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
|
48 |
+
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
49 |
+
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
50 |
+
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
51 |
+
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
52 |
+
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
53 |
+
/usr/include/c++/11/cstdint /usr/include/c++/11/bits/allocator.h \
|
54 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \
|
55 |
+
/usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \
|
56 |
+
/usr/include/c++/11/bits/exception.h \
|
57 |
+
/usr/include/c++/11/bits/localefwd.h \
|
58 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \
|
59 |
+
/usr/include/c++/11/clocale /usr/include/locale.h \
|
60 |
+
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/iosfwd \
|
61 |
+
/usr/include/c++/11/cctype /usr/include/ctype.h \
|
62 |
+
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
63 |
+
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
64 |
+
/usr/include/c++/11/bits/ostream_insert.h \
|
65 |
+
/usr/include/c++/11/bits/cxxabi_forced.h \
|
66 |
+
/usr/include/c++/11/bits/stl_function.h \
|
67 |
+
/usr/include/c++/11/backward/binders.h \
|
68 |
+
/usr/include/c++/11/bits/range_access.h \
|
69 |
+
/usr/include/c++/11/initializer_list \
|
70 |
+
/usr/include/c++/11/bits/basic_string.h \
|
71 |
+
/usr/include/c++/11/ext/atomicity.h \
|
72 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \
|
73 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \
|
74 |
+
/usr/include/pthread.h /usr/include/sched.h \
|
75 |
+
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
76 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
77 |
+
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
78 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
79 |
+
/usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
|
80 |
+
/usr/include/x86_64-linux-gnu/bits/time.h \
|
81 |
+
/usr/include/x86_64-linux-gnu/bits/timex.h \
|
82 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
83 |
+
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
84 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
85 |
+
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
86 |
+
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
87 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
88 |
+
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
89 |
+
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
90 |
+
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
91 |
+
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
92 |
+
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
93 |
+
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
94 |
+
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
95 |
+
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
96 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
97 |
+
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
98 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \
|
99 |
+
/usr/include/x86_64-linux-gnu/sys/single_threaded.h \
|
100 |
+
/usr/include/c++/11/ext/alloc_traits.h \
|
101 |
+
/usr/include/c++/11/bits/alloc_traits.h \
|
102 |
+
/usr/include/c++/11/bits/stl_construct.h \
|
103 |
+
/usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdlib \
|
104 |
+
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
105 |
+
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
106 |
+
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \
|
107 |
+
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
108 |
+
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
109 |
+
/usr/include/x86_64-linux-gnu/sys/select.h \
|
110 |
+
/usr/include/x86_64-linux-gnu/bits/select.h \
|
111 |
+
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
112 |
+
/usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
113 |
+
/usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/cstdio \
|
114 |
+
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
115 |
+
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
116 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
117 |
+
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
118 |
+
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
119 |
+
/usr/include/c++/11/cerrno /usr/include/errno.h \
|
120 |
+
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
121 |
+
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
122 |
+
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
123 |
+
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
124 |
+
/usr/include/c++/11/bits/charconv.h \
|
125 |
+
/usr/include/c++/11/bits/functional_hash.h \
|
126 |
+
/usr/include/c++/11/bits/hash_bytes.h \
|
127 |
+
/usr/include/c++/11/bits/basic_string.tcc /usr/include/c++/11/vector \
|
128 |
+
/usr/include/c++/11/bits/stl_uninitialized.h \
|
129 |
+
/usr/include/c++/11/bits/stl_vector.h \
|
130 |
+
/usr/include/c++/11/bits/stl_bvector.h \
|
131 |
+
/usr/include/c++/11/bits/vector.tcc \
|
132 |
+
/content/NeuCoSVC-2/REAPER/./core/file_resource.h \
|
133 |
+
/content/NeuCoSVC-2/REAPER/./core/float_matrix.h \
|
134 |
+
/content/NeuCoSVC-2/REAPER/./core/float_matrix-inl.h \
|
135 |
+
/usr/include/c++/11/math.h /usr/include/c++/11/cmath /usr/include/math.h \
|
136 |
+
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
137 |
+
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
138 |
+
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
139 |
+
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
140 |
+
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
141 |
+
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
142 |
+
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
143 |
+
/usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
|
144 |
+
/usr/include/x86_64-linux-gnu/bits/iscanonical.h \
|
145 |
+
/usr/include/c++/11/memory /usr/include/c++/11/bits/stl_tempbuf.h \
|
146 |
+
/usr/include/c++/11/bits/stl_raw_storage_iter.h \
|
147 |
+
/usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \
|
148 |
+
/usr/include/c++/11/bits/uses_allocator.h \
|
149 |
+
/usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/utility \
|
150 |
+
/usr/include/c++/11/bits/stl_relops.h /usr/include/c++/11/tuple \
|
151 |
+
/usr/include/c++/11/array /usr/include/c++/11/bits/invoke.h \
|
152 |
+
/usr/include/c++/11/bits/shared_ptr.h \
|
153 |
+
/usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \
|
154 |
+
/usr/include/c++/11/bits/allocated_ptr.h \
|
155 |
+
/usr/include/c++/11/bits/refwrap.h \
|
156 |
+
/usr/include/c++/11/ext/aligned_buffer.h \
|
157 |
+
/usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \
|
158 |
+
/usr/include/c++/11/bits/exception_ptr.h \
|
159 |
+
/usr/include/c++/11/bits/cxxabi_init_exception.h \
|
160 |
+
/usr/include/c++/11/bits/nested_exception.h \
|
161 |
+
/usr/include/c++/11/bits/shared_ptr_atomic.h \
|
162 |
+
/usr/include/c++/11/bits/atomic_base.h \
|
163 |
+
/usr/include/c++/11/bits/atomic_lockfree_defines.h \
|
164 |
+
/usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/stdlib.h \
|
165 |
+
/usr/include/inttypes.h
|
REAPER/build/CMakeFiles/core.dir/depend.make
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
# Empty dependencies file for core.
|
2 |
+
# This may be replaced when dependencies are built.
|
REAPER/build/CMakeFiles/core.dir/flags.make
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# CMAKE generated file: DO NOT EDIT!
|
2 |
+
# Generated by "Unix Makefiles" Generator, CMake Version 3.27
|
3 |
+
|
4 |
+
# compile CXX with /usr/bin/c++
|
5 |
+
CXX_DEFINES =
|
6 |
+
|
7 |
+
CXX_INCLUDES = -I/content/NeuCoSVC-2/REAPER/.
|
8 |
+
|
9 |
+
CXX_FLAGS = -std=c++11
|
10 |
+
|
REAPER/build/CMakeFiles/core.dir/link.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
/usr/bin/ar qc libcore.a CMakeFiles/core.dir/core/file_resource.cc.o CMakeFiles/core.dir/core/float_matrix.cc.o CMakeFiles/core.dir/core/track.cc.o
|
2 |
+
/usr/bin/ranlib libcore.a
|
REAPER/build/CMakeFiles/core.dir/progress.make
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CMAKE_PROGRESS_1 = 1
|
2 |
+
CMAKE_PROGRESS_2 = 2
|
3 |
+
CMAKE_PROGRESS_3 = 3
|
4 |
+
CMAKE_PROGRESS_4 = 4
|
5 |
+
|
REAPER/build/CMakeFiles/epoch_tracker.dir/DependInfo.cmake
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"/content/NeuCoSVC-2/REAPER/epoch_tracker/epoch_tracker.cc" "CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o" "gcc" "CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o.d"
|
12 |
+
"/content/NeuCoSVC-2/REAPER/epoch_tracker/fd_filter.cc" "CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o" "gcc" "CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o.d"
|
13 |
+
"/content/NeuCoSVC-2/REAPER/epoch_tracker/fft.cc" "CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o" "gcc" "CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o.d"
|
14 |
+
"/content/NeuCoSVC-2/REAPER/epoch_tracker/lpc_analyzer.cc" "CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o" "gcc" "CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o.d"
|
15 |
+
)
|
16 |
+
|
17 |
+
# Targets to which this target links which contain Fortran sources.
|
18 |
+
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
|
19 |
+
)
|
20 |
+
|
21 |
+
# Fortran module output directory.
|
22 |
+
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
REAPER/build/CMakeFiles/epoch_tracker.dir/build.make
ADDED
@@ -0,0 +1,159 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# CMAKE generated file: DO NOT EDIT!
|
2 |
+
# Generated by "Unix Makefiles" Generator, CMake Version 3.27
|
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.10/dist-packages/cmake/data/bin/cmake
|
48 |
+
|
49 |
+
# The command to remove a file.
|
50 |
+
RM = /usr/local/lib/python3.10/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/NeuCoSVC-2/REAPER
|
57 |
+
|
58 |
+
# The top-level build directory on which CMake was run.
|
59 |
+
CMAKE_BINARY_DIR = /content/NeuCoSVC-2/REAPER/build
|
60 |
+
|
61 |
+
# Include any dependencies generated for this target.
|
62 |
+
include CMakeFiles/epoch_tracker.dir/depend.make
|
63 |
+
# Include any dependencies generated by the compiler for this target.
|
64 |
+
include CMakeFiles/epoch_tracker.dir/compiler_depend.make
|
65 |
+
|
66 |
+
# Include the progress variables for this target.
|
67 |
+
include CMakeFiles/epoch_tracker.dir/progress.make
|
68 |
+
|
69 |
+
# Include the compile flags for this target's objects.
|
70 |
+
include CMakeFiles/epoch_tracker.dir/flags.make
|
71 |
+
|
72 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o: CMakeFiles/epoch_tracker.dir/flags.make
|
73 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o: /content/NeuCoSVC-2/REAPER/epoch_tracker/fft.cc
|
74 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o: CMakeFiles/epoch_tracker.dir/compiler_depend.ts
|
75 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o"
|
76 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o -MF CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o.d -o CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o -c /content/NeuCoSVC-2/REAPER/epoch_tracker/fft.cc
|
77 |
+
|
78 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.i: cmake_force
|
79 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.i"
|
80 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /content/NeuCoSVC-2/REAPER/epoch_tracker/fft.cc > CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.i
|
81 |
+
|
82 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.s: cmake_force
|
83 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.s"
|
84 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /content/NeuCoSVC-2/REAPER/epoch_tracker/fft.cc -o CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.s
|
85 |
+
|
86 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o: CMakeFiles/epoch_tracker.dir/flags.make
|
87 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o: /content/NeuCoSVC-2/REAPER/epoch_tracker/fd_filter.cc
|
88 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o: CMakeFiles/epoch_tracker.dir/compiler_depend.ts
|
89 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o"
|
90 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o -MF CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o.d -o CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o -c /content/NeuCoSVC-2/REAPER/epoch_tracker/fd_filter.cc
|
91 |
+
|
92 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.i: cmake_force
|
93 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.i"
|
94 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /content/NeuCoSVC-2/REAPER/epoch_tracker/fd_filter.cc > CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.i
|
95 |
+
|
96 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.s: cmake_force
|
97 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.s"
|
98 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /content/NeuCoSVC-2/REAPER/epoch_tracker/fd_filter.cc -o CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.s
|
99 |
+
|
100 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o: CMakeFiles/epoch_tracker.dir/flags.make
|
101 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o: /content/NeuCoSVC-2/REAPER/epoch_tracker/lpc_analyzer.cc
|
102 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o: CMakeFiles/epoch_tracker.dir/compiler_depend.ts
|
103 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o"
|
104 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o -MF CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o.d -o CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o -c /content/NeuCoSVC-2/REAPER/epoch_tracker/lpc_analyzer.cc
|
105 |
+
|
106 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.i: cmake_force
|
107 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.i"
|
108 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /content/NeuCoSVC-2/REAPER/epoch_tracker/lpc_analyzer.cc > CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.i
|
109 |
+
|
110 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.s: cmake_force
|
111 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.s"
|
112 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /content/NeuCoSVC-2/REAPER/epoch_tracker/lpc_analyzer.cc -o CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.s
|
113 |
+
|
114 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o: CMakeFiles/epoch_tracker.dir/flags.make
|
115 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o: /content/NeuCoSVC-2/REAPER/epoch_tracker/epoch_tracker.cc
|
116 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o: CMakeFiles/epoch_tracker.dir/compiler_depend.ts
|
117 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o"
|
118 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o -MF CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o.d -o CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o -c /content/NeuCoSVC-2/REAPER/epoch_tracker/epoch_tracker.cc
|
119 |
+
|
120 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.i: cmake_force
|
121 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.i"
|
122 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /content/NeuCoSVC-2/REAPER/epoch_tracker/epoch_tracker.cc > CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.i
|
123 |
+
|
124 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.s: cmake_force
|
125 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.s"
|
126 |
+
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /content/NeuCoSVC-2/REAPER/epoch_tracker/epoch_tracker.cc -o CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.s
|
127 |
+
|
128 |
+
# Object files for target epoch_tracker
|
129 |
+
epoch_tracker_OBJECTS = \
|
130 |
+
"CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o" \
|
131 |
+
"CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o" \
|
132 |
+
"CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o" \
|
133 |
+
"CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o"
|
134 |
+
|
135 |
+
# External object files for target epoch_tracker
|
136 |
+
epoch_tracker_EXTERNAL_OBJECTS =
|
137 |
+
|
138 |
+
libepoch_tracker.a: CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o
|
139 |
+
libepoch_tracker.a: CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o
|
140 |
+
libepoch_tracker.a: CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o
|
141 |
+
libepoch_tracker.a: CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o
|
142 |
+
libepoch_tracker.a: CMakeFiles/epoch_tracker.dir/build.make
|
143 |
+
libepoch_tracker.a: CMakeFiles/epoch_tracker.dir/link.txt
|
144 |
+
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/content/NeuCoSVC-2/REAPER/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Linking CXX static library libepoch_tracker.a"
|
145 |
+
$(CMAKE_COMMAND) -P CMakeFiles/epoch_tracker.dir/cmake_clean_target.cmake
|
146 |
+
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/epoch_tracker.dir/link.txt --verbose=$(VERBOSE)
|
147 |
+
|
148 |
+
# Rule to build all files generated by this target.
|
149 |
+
CMakeFiles/epoch_tracker.dir/build: libepoch_tracker.a
|
150 |
+
.PHONY : CMakeFiles/epoch_tracker.dir/build
|
151 |
+
|
152 |
+
CMakeFiles/epoch_tracker.dir/clean:
|
153 |
+
$(CMAKE_COMMAND) -P CMakeFiles/epoch_tracker.dir/cmake_clean.cmake
|
154 |
+
.PHONY : CMakeFiles/epoch_tracker.dir/clean
|
155 |
+
|
156 |
+
CMakeFiles/epoch_tracker.dir/depend:
|
157 |
+
cd /content/NeuCoSVC-2/REAPER/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /content/NeuCoSVC-2/REAPER /content/NeuCoSVC-2/REAPER /content/NeuCoSVC-2/REAPER/build /content/NeuCoSVC-2/REAPER/build /content/NeuCoSVC-2/REAPER/build/CMakeFiles/epoch_tracker.dir/DependInfo.cmake "--color=$(COLOR)"
|
158 |
+
.PHONY : CMakeFiles/epoch_tracker.dir/depend
|
159 |
+
|
REAPER/build/CMakeFiles/epoch_tracker.dir/cmake_clean.cmake
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
file(REMOVE_RECURSE
|
2 |
+
"CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o"
|
3 |
+
"CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o.d"
|
4 |
+
"CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o"
|
5 |
+
"CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o.d"
|
6 |
+
"CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o"
|
7 |
+
"CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o.d"
|
8 |
+
"CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o"
|
9 |
+
"CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o.d"
|
10 |
+
"libepoch_tracker.a"
|
11 |
+
"libepoch_tracker.pdb"
|
12 |
+
)
|
13 |
+
|
14 |
+
# Per-language clean rules from dependency scanning.
|
15 |
+
foreach(lang CXX)
|
16 |
+
include(CMakeFiles/epoch_tracker.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
17 |
+
endforeach()
|
REAPER/build/CMakeFiles/epoch_tracker.dir/cmake_clean_target.cmake
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
file(REMOVE_RECURSE
|
2 |
+
"libepoch_tracker.a"
|
3 |
+
)
|
REAPER/build/CMakeFiles/epoch_tracker.dir/compiler_depend.make
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
# Empty compiler generated dependencies file for epoch_tracker.
|
2 |
+
# This may be replaced when dependencies are built.
|
REAPER/build/CMakeFiles/epoch_tracker.dir/compiler_depend.ts
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
# CMAKE generated file: DO NOT EDIT!
|
2 |
+
# Timestamp file for compiler generated dependencies management for epoch_tracker.
|
REAPER/build/CMakeFiles/epoch_tracker.dir/depend.make
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
# Empty dependencies file for epoch_tracker.
|
2 |
+
# This may be replaced when dependencies are built.
|
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o
ADDED
Binary file (377 kB). View file
|
|
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o.d
ADDED
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o: \
|
2 |
+
/content/NeuCoSVC-2/REAPER/epoch_tracker/epoch_tracker.cc \
|
3 |
+
/usr/include/stdc-predef.h \
|
4 |
+
/content/NeuCoSVC-2/REAPER/./epoch_tracker/epoch_tracker.h \
|
5 |
+
/usr/include/c++/11/memory /usr/include/c++/11/bits/stl_algobase.h \
|
6 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \
|
7 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \
|
8 |
+
/usr/include/features.h /usr/include/features-time64.h \
|
9 |
+
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
10 |
+
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
11 |
+
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
12 |
+
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
13 |
+
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
14 |
+
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
15 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \
|
16 |
+
/usr/include/c++/11/bits/functexcept.h \
|
17 |
+
/usr/include/c++/11/bits/exception_defines.h \
|
18 |
+
/usr/include/c++/11/bits/cpp_type_traits.h \
|
19 |
+
/usr/include/c++/11/ext/type_traits.h \
|
20 |
+
/usr/include/c++/11/ext/numeric_traits.h \
|
21 |
+
/usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \
|
22 |
+
/usr/include/c++/11/type_traits \
|
23 |
+
/usr/include/c++/11/bits/stl_iterator_base_types.h \
|
24 |
+
/usr/include/c++/11/bits/stl_iterator_base_funcs.h \
|
25 |
+
/usr/include/c++/11/bits/concept_check.h \
|
26 |
+
/usr/include/c++/11/debug/assertions.h \
|
27 |
+
/usr/include/c++/11/bits/stl_iterator.h \
|
28 |
+
/usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \
|
29 |
+
/usr/include/c++/11/bits/predefined_ops.h \
|
30 |
+
/usr/include/c++/11/bits/allocator.h \
|
31 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \
|
32 |
+
/usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \
|
33 |
+
/usr/include/c++/11/bits/exception.h \
|
34 |
+
/usr/include/c++/11/bits/memoryfwd.h \
|
35 |
+
/usr/include/c++/11/bits/stl_construct.h \
|
36 |
+
/usr/include/c++/11/bits/stl_uninitialized.h \
|
37 |
+
/usr/include/c++/11/ext/alloc_traits.h \
|
38 |
+
/usr/include/c++/11/bits/alloc_traits.h \
|
39 |
+
/usr/include/c++/11/bits/stl_tempbuf.h \
|
40 |
+
/usr/include/c++/11/bits/stl_raw_storage_iter.h \
|
41 |
+
/usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \
|
42 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \
|
43 |
+
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
44 |
+
/usr/include/x86_64-linux-gnu/bits/types.h \
|
45 |
+
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
46 |
+
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
47 |
+
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
48 |
+
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
|
49 |
+
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
50 |
+
/usr/include/c++/11/bits/uses_allocator.h \
|
51 |
+
/usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/utility \
|
52 |
+
/usr/include/c++/11/bits/stl_relops.h \
|
53 |
+
/usr/include/c++/11/initializer_list /usr/include/c++/11/tuple \
|
54 |
+
/usr/include/c++/11/array /usr/include/c++/11/bits/range_access.h \
|
55 |
+
/usr/include/c++/11/bits/invoke.h \
|
56 |
+
/usr/include/c++/11/bits/stl_function.h \
|
57 |
+
/usr/include/c++/11/backward/binders.h \
|
58 |
+
/usr/include/c++/11/bits/functional_hash.h \
|
59 |
+
/usr/include/c++/11/bits/hash_bytes.h \
|
60 |
+
/usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \
|
61 |
+
/usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \
|
62 |
+
/usr/include/c++/11/cwchar /usr/include/wchar.h \
|
63 |
+
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
64 |
+
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
65 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \
|
66 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \
|
67 |
+
/usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
|
68 |
+
/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
|
69 |
+
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
70 |
+
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
71 |
+
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
72 |
+
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
73 |
+
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
74 |
+
/usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \
|
75 |
+
/usr/include/c++/11/bits/allocated_ptr.h \
|
76 |
+
/usr/include/c++/11/bits/refwrap.h \
|
77 |
+
/usr/include/c++/11/ext/aligned_buffer.h \
|
78 |
+
/usr/include/c++/11/ext/atomicity.h \
|
79 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \
|
80 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \
|
81 |
+
/usr/include/pthread.h /usr/include/sched.h \
|
82 |
+
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
83 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
84 |
+
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
85 |
+
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
86 |
+
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
87 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
88 |
+
/usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
|
89 |
+
/usr/include/x86_64-linux-gnu/bits/time.h \
|
90 |
+
/usr/include/x86_64-linux-gnu/bits/timex.h \
|
91 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
92 |
+
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
93 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
94 |
+
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
95 |
+
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
96 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
97 |
+
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
98 |
+
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
99 |
+
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
100 |
+
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
101 |
+
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
102 |
+
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
103 |
+
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
104 |
+
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
105 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
106 |
+
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
107 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \
|
108 |
+
/usr/include/x86_64-linux-gnu/sys/single_threaded.h \
|
109 |
+
/usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \
|
110 |
+
/usr/include/c++/11/bits/exception_ptr.h \
|
111 |
+
/usr/include/c++/11/bits/cxxabi_init_exception.h \
|
112 |
+
/usr/include/c++/11/bits/nested_exception.h \
|
113 |
+
/usr/include/c++/11/bits/shared_ptr_atomic.h \
|
114 |
+
/usr/include/c++/11/bits/atomic_base.h \
|
115 |
+
/usr/include/c++/11/bits/atomic_lockfree_defines.h \
|
116 |
+
/usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/vector \
|
117 |
+
/usr/include/c++/11/bits/stl_vector.h \
|
118 |
+
/usr/include/c++/11/bits/stl_bvector.h \
|
119 |
+
/usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/string \
|
120 |
+
/usr/include/c++/11/bits/char_traits.h /usr/include/c++/11/cstdint \
|
121 |
+
/usr/include/c++/11/bits/localefwd.h \
|
122 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \
|
123 |
+
/usr/include/c++/11/clocale /usr/include/locale.h \
|
124 |
+
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \
|
125 |
+
/usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \
|
126 |
+
/usr/include/c++/11/bits/cxxabi_forced.h \
|
127 |
+
/usr/include/c++/11/bits/basic_string.h \
|
128 |
+
/usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdlib \
|
129 |
+
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
130 |
+
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
131 |
+
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \
|
132 |
+
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
133 |
+
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
134 |
+
/usr/include/x86_64-linux-gnu/sys/select.h \
|
135 |
+
/usr/include/x86_64-linux-gnu/bits/select.h \
|
136 |
+
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
137 |
+
/usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
138 |
+
/usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/cstdio \
|
139 |
+
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
140 |
+
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
141 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
142 |
+
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
143 |
+
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
144 |
+
/usr/include/c++/11/cerrno /usr/include/errno.h \
|
145 |
+
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
146 |
+
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
147 |
+
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
148 |
+
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
149 |
+
/usr/include/c++/11/bits/charconv.h \
|
150 |
+
/usr/include/c++/11/bits/basic_string.tcc \
|
151 |
+
/content/NeuCoSVC-2/REAPER/./epoch_tracker/fd_filter.h \
|
152 |
+
/content/NeuCoSVC-2/REAPER/./epoch_tracker/lpc_analyzer.h \
|
153 |
+
/content/NeuCoSVC-2/REAPER/./epoch_tracker/fft.h \
|
154 |
+
/usr/include/c++/11/math.h /usr/include/c++/11/cmath /usr/include/math.h \
|
155 |
+
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
156 |
+
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
157 |
+
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
158 |
+
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
159 |
+
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
160 |
+
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
161 |
+
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
162 |
+
/usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
|
163 |
+
/usr/include/x86_64-linux-gnu/bits/iscanonical.h \
|
164 |
+
/usr/include/c++/11/stdlib.h
|
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o
ADDED
Binary file (19.7 kB). View file
|
|
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o.d
ADDED
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o: \
|
2 |
+
/content/NeuCoSVC-2/REAPER/epoch_tracker/fd_filter.cc \
|
3 |
+
/usr/include/stdc-predef.h \
|
4 |
+
/content/NeuCoSVC-2/REAPER/./epoch_tracker/fd_filter.h \
|
5 |
+
/usr/include/stdio.h \
|
6 |
+
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
7 |
+
/usr/include/features.h /usr/include/features-time64.h \
|
8 |
+
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
9 |
+
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
10 |
+
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
11 |
+
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
12 |
+
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
13 |
+
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
14 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \
|
15 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \
|
16 |
+
/usr/include/x86_64-linux-gnu/bits/types.h \
|
17 |
+
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
18 |
+
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
19 |
+
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
20 |
+
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
21 |
+
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
22 |
+
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
23 |
+
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
24 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
25 |
+
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
26 |
+
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
27 |
+
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
28 |
+
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
29 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \
|
30 |
+
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
31 |
+
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
|
32 |
+
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
33 |
+
/usr/include/c++/11/math.h /usr/include/c++/11/cmath \
|
34 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \
|
35 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \
|
36 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \
|
37 |
+
/usr/include/c++/11/bits/cpp_type_traits.h \
|
38 |
+
/usr/include/c++/11/ext/type_traits.h /usr/include/math.h \
|
39 |
+
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
40 |
+
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
41 |
+
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
42 |
+
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
43 |
+
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
44 |
+
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
45 |
+
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
46 |
+
/usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
|
47 |
+
/usr/include/x86_64-linux-gnu/bits/iscanonical.h \
|
48 |
+
/usr/include/c++/11/bits/std_abs.h /usr/include/stdlib.h \
|
49 |
+
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
50 |
+
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
51 |
+
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
52 |
+
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
53 |
+
/usr/include/x86_64-linux-gnu/sys/types.h \
|
54 |
+
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
55 |
+
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
56 |
+
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
57 |
+
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \
|
58 |
+
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
59 |
+
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
60 |
+
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
61 |
+
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
62 |
+
/usr/include/x86_64-linux-gnu/sys/select.h \
|
63 |
+
/usr/include/x86_64-linux-gnu/bits/select.h \
|
64 |
+
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
65 |
+
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
66 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
67 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
68 |
+
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
69 |
+
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
70 |
+
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
71 |
+
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
72 |
+
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
73 |
+
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
74 |
+
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
75 |
+
/content/NeuCoSVC-2/REAPER/./epoch_tracker/fft.h \
|
76 |
+
/usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib
|
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o
ADDED
Binary file (6.15 kB). View file
|
|
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o.d
ADDED
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o: \
|
2 |
+
/content/NeuCoSVC-2/REAPER/epoch_tracker/fft.cc \
|
3 |
+
/usr/include/stdc-predef.h \
|
4 |
+
/content/NeuCoSVC-2/REAPER/./epoch_tracker/fft.h \
|
5 |
+
/usr/include/c++/11/math.h /usr/include/c++/11/cmath \
|
6 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \
|
7 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \
|
8 |
+
/usr/include/features.h /usr/include/features-time64.h \
|
9 |
+
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
10 |
+
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
11 |
+
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
12 |
+
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
13 |
+
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
14 |
+
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
15 |
+
/usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \
|
16 |
+
/usr/include/c++/11/bits/cpp_type_traits.h \
|
17 |
+
/usr/include/c++/11/ext/type_traits.h /usr/include/math.h \
|
18 |
+
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
19 |
+
/usr/include/x86_64-linux-gnu/bits/types.h \
|
20 |
+
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
21 |
+
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
22 |
+
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
23 |
+
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
24 |
+
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
25 |
+
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
26 |
+
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
27 |
+
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
28 |
+
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
29 |
+
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
30 |
+
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
31 |
+
/usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
|
32 |
+
/usr/include/x86_64-linux-gnu/bits/iscanonical.h \
|
33 |
+
/usr/include/c++/11/bits/std_abs.h /usr/include/stdlib.h \
|
34 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \
|
35 |
+
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
36 |
+
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
37 |
+
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
38 |
+
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
39 |
+
/usr/include/x86_64-linux-gnu/sys/types.h \
|
40 |
+
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
41 |
+
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
42 |
+
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
43 |
+
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
44 |
+
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
45 |
+
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
46 |
+
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
47 |
+
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
48 |
+
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
49 |
+
/usr/include/x86_64-linux-gnu/sys/select.h \
|
50 |
+
/usr/include/x86_64-linux-gnu/bits/select.h \
|
51 |
+
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
52 |
+
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
53 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
54 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
55 |
+
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
56 |
+
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
57 |
+
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
58 |
+
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
59 |
+
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
60 |
+
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
61 |
+
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/stdio.h \
|
62 |
+
/usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \
|
63 |
+
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
64 |
+
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
65 |
+
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
66 |
+
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
67 |
+
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
68 |
+
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
69 |
+
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
70 |
+
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
71 |
+
/usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib
|
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o
ADDED
Binary file (39 kB). View file
|
|