kevinwang676 commited on
Commit
da7bbcf
·
1 Parent(s): 6663a0b

Delete REAPER

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. REAPER/CMakeLists.txt +0 -39
  2. REAPER/CONTRIBUTING.md +0 -13
  3. REAPER/LICENSE +0 -202
  4. REAPER/README.md +0 -159
  5. REAPER/build/CMakeCache.txt +0 -389
  6. REAPER/build/CMakeFiles/3.28.1/CMakeCCompiler.cmake +0 -74
  7. REAPER/build/CMakeFiles/3.28.1/CMakeCXXCompiler.cmake +0 -85
  8. REAPER/build/CMakeFiles/3.28.1/CMakeDetermineCompilerABI_C.bin +0 -3
  9. REAPER/build/CMakeFiles/3.28.1/CMakeDetermineCompilerABI_CXX.bin +0 -3
  10. REAPER/build/CMakeFiles/3.28.1/CMakeSystem.cmake +0 -15
  11. REAPER/build/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c +0 -880
  12. REAPER/build/CMakeFiles/3.28.1/CompilerIdC/a.out +0 -0
  13. REAPER/build/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -869
  14. REAPER/build/CMakeFiles/3.28.1/CompilerIdCXX/a.out +0 -0
  15. REAPER/build/CMakeFiles/CMakeConfigureLog.yaml +0 -599
  16. REAPER/build/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
  17. REAPER/build/CMakeFiles/Makefile.cmake +0 -136
  18. REAPER/build/CMakeFiles/Makefile2 +0 -199
  19. REAPER/build/CMakeFiles/TargetDirectories.txt +0 -6
  20. REAPER/build/CMakeFiles/cmake.check_cache +0 -1
  21. REAPER/build/CMakeFiles/core.dir/DependInfo.cmake +0 -25
  22. REAPER/build/CMakeFiles/core.dir/build.make +0 -143
  23. REAPER/build/CMakeFiles/core.dir/cmake_clean.cmake +0 -15
  24. REAPER/build/CMakeFiles/core.dir/cmake_clean_target.cmake +0 -3
  25. REAPER/build/CMakeFiles/core.dir/compiler_depend.make +0 -2
  26. REAPER/build/CMakeFiles/core.dir/compiler_depend.ts +0 -2
  27. REAPER/build/CMakeFiles/core.dir/core/file_resource.cc.o +0 -0
  28. REAPER/build/CMakeFiles/core.dir/core/file_resource.cc.o.d +0 -124
  29. REAPER/build/CMakeFiles/core.dir/core/float_matrix.cc.o +0 -0
  30. REAPER/build/CMakeFiles/core.dir/core/float_matrix.cc.o.d +0 -125
  31. REAPER/build/CMakeFiles/core.dir/core/track.cc.o +0 -0
  32. REAPER/build/CMakeFiles/core.dir/core/track.cc.o.d +0 -156
  33. REAPER/build/CMakeFiles/core.dir/depend.make +0 -2
  34. REAPER/build/CMakeFiles/core.dir/flags.make +0 -10
  35. REAPER/build/CMakeFiles/core.dir/link.txt +0 -2
  36. REAPER/build/CMakeFiles/core.dir/progress.make +0 -5
  37. REAPER/build/CMakeFiles/epoch_tracker.dir/DependInfo.cmake +0 -26
  38. REAPER/build/CMakeFiles/epoch_tracker.dir/build.make +0 -159
  39. REAPER/build/CMakeFiles/epoch_tracker.dir/cmake_clean.cmake +0 -17
  40. REAPER/build/CMakeFiles/epoch_tracker.dir/cmake_clean_target.cmake +0 -3
  41. REAPER/build/CMakeFiles/epoch_tracker.dir/compiler_depend.make +0 -2
  42. REAPER/build/CMakeFiles/epoch_tracker.dir/compiler_depend.ts +0 -2
  43. REAPER/build/CMakeFiles/epoch_tracker.dir/depend.make +0 -2
  44. REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o +0 -0
  45. REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o.d +0 -156
  46. REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o +0 -0
  47. REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o.d +0 -75
  48. REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o +0 -0
  49. REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o.d +0 -70
  50. REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o +0 -0
REAPER/CMakeLists.txt DELETED
@@ -1,39 +0,0 @@
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 DELETED
@@ -1,13 +0,0 @@
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 DELETED
@@ -1,202 +0,0 @@
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 DELETED
@@ -1,159 +0,0 @@
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 DELETED
@@ -1,389 +0,0 @@
1
- # This is the CMakeCache file.
2
- # For build in directory: /workspace/NeuCoSVC/REAPER/build
3
- # It was generated by CMake: /opt/conda/lib/python3.10/site-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-9
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-9
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-9
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-9
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=/workspace/NeuCoSVC/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/make
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=/workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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=28
248
- //Patch version of cmake used to create the current loaded cache
249
- CMAKE_CACHE_PATCH_VERSION:INTERNAL=1
250
- //ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
251
- CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
252
- //Path to CMake executable.
253
- CMAKE_COMMAND:INTERNAL=/opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake
254
- //Path to cpack program executable.
255
- CMAKE_CPACK_COMMAND:INTERNAL=/opt/conda/lib/python3.10/site-packages/cmake/data/bin/cpack
256
- //Path to ctest program executable.
257
- CMAKE_CTEST_COMMAND:INTERNAL=/opt/conda/lib/python3.10/site-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=/workspace/NeuCoSVC/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=/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28
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.28.1/CMakeCCompiler.cmake DELETED
@@ -1,74 +0,0 @@
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 "9.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-9")
26
- set(CMAKE_RANLIB "/usr/bin/ranlib")
27
- set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-9")
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 FALSE)
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/9/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/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib")
74
- set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/3.28.1/CMakeCXXCompiler.cmake DELETED
@@ -1,85 +0,0 @@
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 "9.4.0")
5
- set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
6
- set(CMAKE_CXX_COMPILER_WRAPPER "")
7
- set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
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")
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 "")
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-9")
27
- set(CMAKE_RANLIB "/usr/bin/ranlib")
28
- set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-9")
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 FALSE)
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++/9;/usr/include/x86_64-linux-gnu/c++/9;/usr/include/c++/9/backward;/usr/lib/gcc/x86_64-linux-gnu/9/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/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib")
85
- set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/3.28.1/CMakeDetermineCompilerABI_C.bin DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:3be1f453159bc8a0d583e4326dfd47e040d2af3035b240867b6b80ef7d199c59
3
- size 16656
 
 
 
 
REAPER/build/CMakeFiles/3.28.1/CMakeDetermineCompilerABI_CXX.bin DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:f933b13b31986a32c54b9c7c0c976185dfa523b2fdb46bc72c539ca62f86ffb0
3
- size 16680
 
 
 
 
REAPER/build/CMakeFiles/3.28.1/CMakeSystem.cmake DELETED
@@ -1,15 +0,0 @@
1
- set(CMAKE_HOST_SYSTEM "Linux-5.4.0-121-generic")
2
- set(CMAKE_HOST_SYSTEM_NAME "Linux")
3
- set(CMAKE_HOST_SYSTEM_VERSION "5.4.0-121-generic")
4
- set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
5
-
6
-
7
-
8
- set(CMAKE_SYSTEM "Linux-5.4.0-121-generic")
9
- set(CMAKE_SYSTEM_NAME "Linux")
10
- set(CMAKE_SYSTEM_VERSION "5.4.0-121-generic")
11
- set(CMAKE_SYSTEM_PROCESSOR "x86_64")
12
-
13
- set(CMAKE_CROSSCOMPILING "FALSE")
14
-
15
- set(CMAKE_SYSTEM_LOADED 1)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c DELETED
@@ -1,880 +0,0 @@
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(__clang__) && defined(__cray__)
228
- # define COMPILER_ID "CrayClang"
229
- # define COMPILER_VERSION_MAJOR DEC(__cray_major__)
230
- # define COMPILER_VERSION_MINOR DEC(__cray_minor__)
231
- # define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
232
- # define COMPILER_VERSION_INTERNAL_STR __clang_version__
233
-
234
-
235
- #elif defined(_CRAYC)
236
- # define COMPILER_ID "Cray"
237
- # define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
238
- # define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
239
-
240
- #elif defined(__TI_COMPILER_VERSION__)
241
- # define COMPILER_ID "TI"
242
- /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
243
- # define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
244
- # define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
245
- # define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
246
-
247
- #elif defined(__CLANG_FUJITSU)
248
- # define COMPILER_ID "FujitsuClang"
249
- # define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
250
- # define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
251
- # define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
252
- # define COMPILER_VERSION_INTERNAL_STR __clang_version__
253
-
254
-
255
- #elif defined(__FUJITSU)
256
- # define COMPILER_ID "Fujitsu"
257
- # if defined(__FCC_version__)
258
- # define COMPILER_VERSION __FCC_version__
259
- # elif defined(__FCC_major__)
260
- # define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
261
- # define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
262
- # define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
263
- # endif
264
- # if defined(__fcc_version)
265
- # define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
266
- # elif defined(__FCC_VERSION)
267
- # define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
268
- # endif
269
-
270
-
271
- #elif defined(__ghs__)
272
- # define COMPILER_ID "GHS"
273
- /* __GHS_VERSION_NUMBER = VVVVRP */
274
- # ifdef __GHS_VERSION_NUMBER
275
- # define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
276
- # define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
277
- # define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
278
- # endif
279
-
280
- #elif defined(__TASKING__)
281
- # define COMPILER_ID "Tasking"
282
- # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
283
- # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
284
- # define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
285
-
286
- #elif defined(__ORANGEC__)
287
- # define COMPILER_ID "OrangeC"
288
- # define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
289
- # define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
290
- # define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
291
-
292
- #elif defined(__TINYC__)
293
- # define COMPILER_ID "TinyCC"
294
-
295
- #elif defined(__BCC__)
296
- # define COMPILER_ID "Bruce"
297
-
298
- #elif defined(__SCO_VERSION__)
299
- # define COMPILER_ID "SCO"
300
-
301
- #elif defined(__ARMCC_VERSION) && !defined(__clang__)
302
- # define COMPILER_ID "ARMCC"
303
- #if __ARMCC_VERSION >= 1000000
304
- /* __ARMCC_VERSION = VRRPPPP */
305
- # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
306
- # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
307
- # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
308
- #else
309
- /* __ARMCC_VERSION = VRPPPP */
310
- # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
311
- # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
312
- # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
313
- #endif
314
-
315
-
316
- #elif defined(__clang__) && defined(__apple_build_version__)
317
- # define COMPILER_ID "AppleClang"
318
- # if defined(_MSC_VER)
319
- # define SIMULATE_ID "MSVC"
320
- # endif
321
- # define COMPILER_VERSION_MAJOR DEC(__clang_major__)
322
- # define COMPILER_VERSION_MINOR DEC(__clang_minor__)
323
- # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
324
- # if defined(_MSC_VER)
325
- /* _MSC_VER = VVRR */
326
- # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
327
- # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
328
- # endif
329
- # define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
330
-
331
- #elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
332
- # define COMPILER_ID "ARMClang"
333
- # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
334
- # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
335
- # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
336
- # define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
337
-
338
- #elif defined(__clang__)
339
- # define COMPILER_ID "Clang"
340
- # if defined(_MSC_VER)
341
- # define SIMULATE_ID "MSVC"
342
- # endif
343
- # define COMPILER_VERSION_MAJOR DEC(__clang_major__)
344
- # define COMPILER_VERSION_MINOR DEC(__clang_minor__)
345
- # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
346
- # if defined(_MSC_VER)
347
- /* _MSC_VER = VVRR */
348
- # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
349
- # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
350
- # endif
351
-
352
- #elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
353
- # define COMPILER_ID "LCC"
354
- # define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
355
- # define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
356
- # if defined(__LCC_MINOR__)
357
- # define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
358
- # endif
359
- # if defined(__GNUC__) && defined(__GNUC_MINOR__)
360
- # define SIMULATE_ID "GNU"
361
- # define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
362
- # define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
363
- # if defined(__GNUC_PATCHLEVEL__)
364
- # define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
365
- # endif
366
- # endif
367
-
368
- #elif defined(__GNUC__)
369
- # define COMPILER_ID "GNU"
370
- # define COMPILER_VERSION_MAJOR DEC(__GNUC__)
371
- # if defined(__GNUC_MINOR__)
372
- # define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
373
- # endif
374
- # if defined(__GNUC_PATCHLEVEL__)
375
- # define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
376
- # endif
377
-
378
- #elif defined(_MSC_VER)
379
- # define COMPILER_ID "MSVC"
380
- /* _MSC_VER = VVRR */
381
- # define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
382
- # define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
383
- # if defined(_MSC_FULL_VER)
384
- # if _MSC_VER >= 1400
385
- /* _MSC_FULL_VER = VVRRPPPPP */
386
- # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
387
- # else
388
- /* _MSC_FULL_VER = VVRRPPPP */
389
- # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
390
- # endif
391
- # endif
392
- # if defined(_MSC_BUILD)
393
- # define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
394
- # endif
395
-
396
- #elif defined(_ADI_COMPILER)
397
- # define COMPILER_ID "ADSP"
398
- #if defined(__VERSIONNUM__)
399
- /* __VERSIONNUM__ = 0xVVRRPPTT */
400
- # define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
401
- # define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
402
- # define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
403
- # define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
404
- #endif
405
-
406
- #elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
407
- # define COMPILER_ID "IAR"
408
- # if defined(__VER__) && defined(__ICCARM__)
409
- # define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
410
- # define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
411
- # define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
412
- # define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
413
- # elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
414
- # define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
415
- # define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
416
- # define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
417
- # define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
418
- # endif
419
-
420
- #elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
421
- # define COMPILER_ID "SDCC"
422
- # if defined(__SDCC_VERSION_MAJOR)
423
- # define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
424
- # define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
425
- # define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
426
- # else
427
- /* SDCC = VRP */
428
- # define COMPILER_VERSION_MAJOR DEC(SDCC/100)
429
- # define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
430
- # define COMPILER_VERSION_PATCH DEC(SDCC % 10)
431
- # endif
432
-
433
-
434
- /* These compilers are either not known or too old to define an
435
- identification macro. Try to identify the platform and guess that
436
- it is the native compiler. */
437
- #elif defined(__hpux) || defined(__hpua)
438
- # define COMPILER_ID "HP"
439
-
440
- #else /* unknown compiler */
441
- # define COMPILER_ID ""
442
- #endif
443
-
444
- /* Construct the string literal in pieces to prevent the source from
445
- getting matched. Store it in a pointer rather than an array
446
- because some compilers will just produce instructions to fill the
447
- array rather than assigning a pointer to a static array. */
448
- char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
449
- #ifdef SIMULATE_ID
450
- char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
451
- #endif
452
-
453
- #ifdef __QNXNTO__
454
- char const* qnxnto = "INFO" ":" "qnxnto[]";
455
- #endif
456
-
457
- #if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
458
- char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
459
- #endif
460
-
461
- #define STRINGIFY_HELPER(X) #X
462
- #define STRINGIFY(X) STRINGIFY_HELPER(X)
463
-
464
- /* Identify known platforms by name. */
465
- #if defined(__linux) || defined(__linux__) || defined(linux)
466
- # define PLATFORM_ID "Linux"
467
-
468
- #elif defined(__MSYS__)
469
- # define PLATFORM_ID "MSYS"
470
-
471
- #elif defined(__CYGWIN__)
472
- # define PLATFORM_ID "Cygwin"
473
-
474
- #elif defined(__MINGW32__)
475
- # define PLATFORM_ID "MinGW"
476
-
477
- #elif defined(__APPLE__)
478
- # define PLATFORM_ID "Darwin"
479
-
480
- #elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
481
- # define PLATFORM_ID "Windows"
482
-
483
- #elif defined(__FreeBSD__) || defined(__FreeBSD)
484
- # define PLATFORM_ID "FreeBSD"
485
-
486
- #elif defined(__NetBSD__) || defined(__NetBSD)
487
- # define PLATFORM_ID "NetBSD"
488
-
489
- #elif defined(__OpenBSD__) || defined(__OPENBSD)
490
- # define PLATFORM_ID "OpenBSD"
491
-
492
- #elif defined(__sun) || defined(sun)
493
- # define PLATFORM_ID "SunOS"
494
-
495
- #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
496
- # define PLATFORM_ID "AIX"
497
-
498
- #elif defined(__hpux) || defined(__hpux__)
499
- # define PLATFORM_ID "HP-UX"
500
-
501
- #elif defined(__HAIKU__)
502
- # define PLATFORM_ID "Haiku"
503
-
504
- #elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
505
- # define PLATFORM_ID "BeOS"
506
-
507
- #elif defined(__QNX__) || defined(__QNXNTO__)
508
- # define PLATFORM_ID "QNX"
509
-
510
- #elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
511
- # define PLATFORM_ID "Tru64"
512
-
513
- #elif defined(__riscos) || defined(__riscos__)
514
- # define PLATFORM_ID "RISCos"
515
-
516
- #elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
517
- # define PLATFORM_ID "SINIX"
518
-
519
- #elif defined(__UNIX_SV__)
520
- # define PLATFORM_ID "UNIX_SV"
521
-
522
- #elif defined(__bsdos__)
523
- # define PLATFORM_ID "BSDOS"
524
-
525
- #elif defined(_MPRAS) || defined(MPRAS)
526
- # define PLATFORM_ID "MP-RAS"
527
-
528
- #elif defined(__osf) || defined(__osf__)
529
- # define PLATFORM_ID "OSF1"
530
-
531
- #elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
532
- # define PLATFORM_ID "SCO_SV"
533
-
534
- #elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
535
- # define PLATFORM_ID "ULTRIX"
536
-
537
- #elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
538
- # define PLATFORM_ID "Xenix"
539
-
540
- #elif defined(__WATCOMC__)
541
- # if defined(__LINUX__)
542
- # define PLATFORM_ID "Linux"
543
-
544
- # elif defined(__DOS__)
545
- # define PLATFORM_ID "DOS"
546
-
547
- # elif defined(__OS2__)
548
- # define PLATFORM_ID "OS2"
549
-
550
- # elif defined(__WINDOWS__)
551
- # define PLATFORM_ID "Windows3x"
552
-
553
- # elif defined(__VXWORKS__)
554
- # define PLATFORM_ID "VxWorks"
555
-
556
- # else /* unknown platform */
557
- # define PLATFORM_ID
558
- # endif
559
-
560
- #elif defined(__INTEGRITY)
561
- # if defined(INT_178B)
562
- # define PLATFORM_ID "Integrity178"
563
-
564
- # else /* regular Integrity */
565
- # define PLATFORM_ID "Integrity"
566
- # endif
567
-
568
- # elif defined(_ADI_COMPILER)
569
- # define PLATFORM_ID "ADSP"
570
-
571
- #else /* unknown platform */
572
- # define PLATFORM_ID
573
-
574
- #endif
575
-
576
- /* For windows compilers MSVC and Intel we can determine
577
- the architecture of the compiler being used. This is because
578
- the compilers do not have flags that can change the architecture,
579
- but rather depend on which compiler is being used
580
- */
581
- #if defined(_WIN32) && defined(_MSC_VER)
582
- # if defined(_M_IA64)
583
- # define ARCHITECTURE_ID "IA64"
584
-
585
- # elif defined(_M_ARM64EC)
586
- # define ARCHITECTURE_ID "ARM64EC"
587
-
588
- # elif defined(_M_X64) || defined(_M_AMD64)
589
- # define ARCHITECTURE_ID "x64"
590
-
591
- # elif defined(_M_IX86)
592
- # define ARCHITECTURE_ID "X86"
593
-
594
- # elif defined(_M_ARM64)
595
- # define ARCHITECTURE_ID "ARM64"
596
-
597
- # elif defined(_M_ARM)
598
- # if _M_ARM == 4
599
- # define ARCHITECTURE_ID "ARMV4I"
600
- # elif _M_ARM == 5
601
- # define ARCHITECTURE_ID "ARMV5I"
602
- # else
603
- # define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
604
- # endif
605
-
606
- # elif defined(_M_MIPS)
607
- # define ARCHITECTURE_ID "MIPS"
608
-
609
- # elif defined(_M_SH)
610
- # define ARCHITECTURE_ID "SHx"
611
-
612
- # else /* unknown architecture */
613
- # define ARCHITECTURE_ID ""
614
- # endif
615
-
616
- #elif defined(__WATCOMC__)
617
- # if defined(_M_I86)
618
- # define ARCHITECTURE_ID "I86"
619
-
620
- # elif defined(_M_IX86)
621
- # define ARCHITECTURE_ID "X86"
622
-
623
- # else /* unknown architecture */
624
- # define ARCHITECTURE_ID ""
625
- # endif
626
-
627
- #elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
628
- # if defined(__ICCARM__)
629
- # define ARCHITECTURE_ID "ARM"
630
-
631
- # elif defined(__ICCRX__)
632
- # define ARCHITECTURE_ID "RX"
633
-
634
- # elif defined(__ICCRH850__)
635
- # define ARCHITECTURE_ID "RH850"
636
-
637
- # elif defined(__ICCRL78__)
638
- # define ARCHITECTURE_ID "RL78"
639
-
640
- # elif defined(__ICCRISCV__)
641
- # define ARCHITECTURE_ID "RISCV"
642
-
643
- # elif defined(__ICCAVR__)
644
- # define ARCHITECTURE_ID "AVR"
645
-
646
- # elif defined(__ICC430__)
647
- # define ARCHITECTURE_ID "MSP430"
648
-
649
- # elif defined(__ICCV850__)
650
- # define ARCHITECTURE_ID "V850"
651
-
652
- # elif defined(__ICC8051__)
653
- # define ARCHITECTURE_ID "8051"
654
-
655
- # elif defined(__ICCSTM8__)
656
- # define ARCHITECTURE_ID "STM8"
657
-
658
- # else /* unknown architecture */
659
- # define ARCHITECTURE_ID ""
660
- # endif
661
-
662
- #elif defined(__ghs__)
663
- # if defined(__PPC64__)
664
- # define ARCHITECTURE_ID "PPC64"
665
-
666
- # elif defined(__ppc__)
667
- # define ARCHITECTURE_ID "PPC"
668
-
669
- # elif defined(__ARM__)
670
- # define ARCHITECTURE_ID "ARM"
671
-
672
- # elif defined(__x86_64__)
673
- # define ARCHITECTURE_ID "x64"
674
-
675
- # elif defined(__i386__)
676
- # define ARCHITECTURE_ID "X86"
677
-
678
- # else /* unknown architecture */
679
- # define ARCHITECTURE_ID ""
680
- # endif
681
-
682
- #elif defined(__TI_COMPILER_VERSION__)
683
- # if defined(__TI_ARM__)
684
- # define ARCHITECTURE_ID "ARM"
685
-
686
- # elif defined(__MSP430__)
687
- # define ARCHITECTURE_ID "MSP430"
688
-
689
- # elif defined(__TMS320C28XX__)
690
- # define ARCHITECTURE_ID "TMS320C28x"
691
-
692
- # elif defined(__TMS320C6X__) || defined(_TMS320C6X)
693
- # define ARCHITECTURE_ID "TMS320C6x"
694
-
695
- # else /* unknown architecture */
696
- # define ARCHITECTURE_ID ""
697
- # endif
698
-
699
- # elif defined(__ADSPSHARC__)
700
- # define ARCHITECTURE_ID "SHARC"
701
-
702
- # elif defined(__ADSPBLACKFIN__)
703
- # define ARCHITECTURE_ID "Blackfin"
704
-
705
- #elif defined(__TASKING__)
706
-
707
- # if defined(__CTC__) || defined(__CPTC__)
708
- # define ARCHITECTURE_ID "TriCore"
709
-
710
- # elif defined(__CMCS__)
711
- # define ARCHITECTURE_ID "MCS"
712
-
713
- # elif defined(__CARM__)
714
- # define ARCHITECTURE_ID "ARM"
715
-
716
- # elif defined(__CARC__)
717
- # define ARCHITECTURE_ID "ARC"
718
-
719
- # elif defined(__C51__)
720
- # define ARCHITECTURE_ID "8051"
721
-
722
- # elif defined(__CPCP__)
723
- # define ARCHITECTURE_ID "PCP"
724
-
725
- # else
726
- # define ARCHITECTURE_ID ""
727
- # endif
728
-
729
- #else
730
- # define ARCHITECTURE_ID
731
- #endif
732
-
733
- /* Convert integer to decimal digit literals. */
734
- #define DEC(n) \
735
- ('0' + (((n) / 10000000)%10)), \
736
- ('0' + (((n) / 1000000)%10)), \
737
- ('0' + (((n) / 100000)%10)), \
738
- ('0' + (((n) / 10000)%10)), \
739
- ('0' + (((n) / 1000)%10)), \
740
- ('0' + (((n) / 100)%10)), \
741
- ('0' + (((n) / 10)%10)), \
742
- ('0' + ((n) % 10))
743
-
744
- /* Convert integer to hex digit literals. */
745
- #define HEX(n) \
746
- ('0' + ((n)>>28 & 0xF)), \
747
- ('0' + ((n)>>24 & 0xF)), \
748
- ('0' + ((n)>>20 & 0xF)), \
749
- ('0' + ((n)>>16 & 0xF)), \
750
- ('0' + ((n)>>12 & 0xF)), \
751
- ('0' + ((n)>>8 & 0xF)), \
752
- ('0' + ((n)>>4 & 0xF)), \
753
- ('0' + ((n) & 0xF))
754
-
755
- /* Construct a string literal encoding the version number. */
756
- #ifdef COMPILER_VERSION
757
- char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
758
-
759
- /* Construct a string literal encoding the version number components. */
760
- #elif defined(COMPILER_VERSION_MAJOR)
761
- char const info_version[] = {
762
- 'I', 'N', 'F', 'O', ':',
763
- 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
764
- COMPILER_VERSION_MAJOR,
765
- # ifdef COMPILER_VERSION_MINOR
766
- '.', COMPILER_VERSION_MINOR,
767
- # ifdef COMPILER_VERSION_PATCH
768
- '.', COMPILER_VERSION_PATCH,
769
- # ifdef COMPILER_VERSION_TWEAK
770
- '.', COMPILER_VERSION_TWEAK,
771
- # endif
772
- # endif
773
- # endif
774
- ']','\0'};
775
- #endif
776
-
777
- /* Construct a string literal encoding the internal version number. */
778
- #ifdef COMPILER_VERSION_INTERNAL
779
- char const info_version_internal[] = {
780
- 'I', 'N', 'F', 'O', ':',
781
- 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
782
- 'i','n','t','e','r','n','a','l','[',
783
- COMPILER_VERSION_INTERNAL,']','\0'};
784
- #elif defined(COMPILER_VERSION_INTERNAL_STR)
785
- char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
786
- #endif
787
-
788
- /* Construct a string literal encoding the version number components. */
789
- #ifdef SIMULATE_VERSION_MAJOR
790
- char const info_simulate_version[] = {
791
- 'I', 'N', 'F', 'O', ':',
792
- 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
793
- SIMULATE_VERSION_MAJOR,
794
- # ifdef SIMULATE_VERSION_MINOR
795
- '.', SIMULATE_VERSION_MINOR,
796
- # ifdef SIMULATE_VERSION_PATCH
797
- '.', SIMULATE_VERSION_PATCH,
798
- # ifdef SIMULATE_VERSION_TWEAK
799
- '.', SIMULATE_VERSION_TWEAK,
800
- # endif
801
- # endif
802
- # endif
803
- ']','\0'};
804
- #endif
805
-
806
- /* Construct the string literal in pieces to prevent the source from
807
- getting matched. Store it in a pointer rather than an array
808
- because some compilers will just produce instructions to fill the
809
- array rather than assigning a pointer to a static array. */
810
- char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
811
- char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
812
-
813
-
814
-
815
- #if !defined(__STDC__) && !defined(__clang__)
816
- # if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
817
- # define C_VERSION "90"
818
- # else
819
- # define C_VERSION
820
- # endif
821
- #elif __STDC_VERSION__ > 201710L
822
- # define C_VERSION "23"
823
- #elif __STDC_VERSION__ >= 201710L
824
- # define C_VERSION "17"
825
- #elif __STDC_VERSION__ >= 201000L
826
- # define C_VERSION "11"
827
- #elif __STDC_VERSION__ >= 199901L
828
- # define C_VERSION "99"
829
- #else
830
- # define C_VERSION "90"
831
- #endif
832
- const char* info_language_standard_default =
833
- "INFO" ":" "standard_default[" C_VERSION "]";
834
-
835
- const char* info_language_extensions_default = "INFO" ":" "extensions_default["
836
- #if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
837
- defined(__TI_COMPILER_VERSION__)) && \
838
- !defined(__STRICT_ANSI__)
839
- "ON"
840
- #else
841
- "OFF"
842
- #endif
843
- "]";
844
-
845
- /*--------------------------------------------------------------------------*/
846
-
847
- #ifdef ID_VOID_MAIN
848
- void main() {}
849
- #else
850
- # if defined(__CLASSIC_C__)
851
- int main(argc, argv) int argc; char *argv[];
852
- # else
853
- int main(int argc, char* argv[])
854
- # endif
855
- {
856
- int require = 0;
857
- require += info_compiler[argc];
858
- require += info_platform[argc];
859
- require += info_arch[argc];
860
- #ifdef COMPILER_VERSION_MAJOR
861
- require += info_version[argc];
862
- #endif
863
- #ifdef COMPILER_VERSION_INTERNAL
864
- require += info_version_internal[argc];
865
- #endif
866
- #ifdef SIMULATE_ID
867
- require += info_simulate[argc];
868
- #endif
869
- #ifdef SIMULATE_VERSION_MAJOR
870
- require += info_simulate_version[argc];
871
- #endif
872
- #if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
873
- require += info_cray[argc];
874
- #endif
875
- require += info_language_standard_default[argc];
876
- require += info_language_extensions_default[argc];
877
- (void)argv;
878
- return require;
879
- }
880
- #endif
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/3.28.1/CompilerIdC/a.out DELETED
Binary file (16.8 kB)
 
REAPER/build/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp DELETED
@@ -1,869 +0,0 @@
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(__clang__) && defined(__cray__)
228
- # define COMPILER_ID "CrayClang"
229
- # define COMPILER_VERSION_MAJOR DEC(__cray_major__)
230
- # define COMPILER_VERSION_MINOR DEC(__cray_minor__)
231
- # define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
232
- # define COMPILER_VERSION_INTERNAL_STR __clang_version__
233
-
234
-
235
- #elif defined(_CRAYC)
236
- # define COMPILER_ID "Cray"
237
- # define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
238
- # define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
239
-
240
- #elif defined(__TI_COMPILER_VERSION__)
241
- # define COMPILER_ID "TI"
242
- /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
243
- # define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
244
- # define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
245
- # define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
246
-
247
- #elif defined(__CLANG_FUJITSU)
248
- # define COMPILER_ID "FujitsuClang"
249
- # define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
250
- # define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
251
- # define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
252
- # define COMPILER_VERSION_INTERNAL_STR __clang_version__
253
-
254
-
255
- #elif defined(__FUJITSU)
256
- # define COMPILER_ID "Fujitsu"
257
- # if defined(__FCC_version__)
258
- # define COMPILER_VERSION __FCC_version__
259
- # elif defined(__FCC_major__)
260
- # define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
261
- # define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
262
- # define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
263
- # endif
264
- # if defined(__fcc_version)
265
- # define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
266
- # elif defined(__FCC_VERSION)
267
- # define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
268
- # endif
269
-
270
-
271
- #elif defined(__ghs__)
272
- # define COMPILER_ID "GHS"
273
- /* __GHS_VERSION_NUMBER = VVVVRP */
274
- # ifdef __GHS_VERSION_NUMBER
275
- # define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
276
- # define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
277
- # define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
278
- # endif
279
-
280
- #elif defined(__TASKING__)
281
- # define COMPILER_ID "Tasking"
282
- # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
283
- # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
284
- # define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
285
-
286
- #elif defined(__ORANGEC__)
287
- # define COMPILER_ID "OrangeC"
288
- # define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
289
- # define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
290
- # define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
291
-
292
- #elif defined(__SCO_VERSION__)
293
- # define COMPILER_ID "SCO"
294
-
295
- #elif defined(__ARMCC_VERSION) && !defined(__clang__)
296
- # define COMPILER_ID "ARMCC"
297
- #if __ARMCC_VERSION >= 1000000
298
- /* __ARMCC_VERSION = VRRPPPP */
299
- # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
300
- # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
301
- # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
302
- #else
303
- /* __ARMCC_VERSION = VRPPPP */
304
- # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
305
- # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
306
- # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
307
- #endif
308
-
309
-
310
- #elif defined(__clang__) && defined(__apple_build_version__)
311
- # define COMPILER_ID "AppleClang"
312
- # if defined(_MSC_VER)
313
- # define SIMULATE_ID "MSVC"
314
- # endif
315
- # define COMPILER_VERSION_MAJOR DEC(__clang_major__)
316
- # define COMPILER_VERSION_MINOR DEC(__clang_minor__)
317
- # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
318
- # if defined(_MSC_VER)
319
- /* _MSC_VER = VVRR */
320
- # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
321
- # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
322
- # endif
323
- # define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
324
-
325
- #elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
326
- # define COMPILER_ID "ARMClang"
327
- # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
328
- # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
329
- # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
330
- # define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
331
-
332
- #elif defined(__clang__)
333
- # define COMPILER_ID "Clang"
334
- # if defined(_MSC_VER)
335
- # define SIMULATE_ID "MSVC"
336
- # endif
337
- # define COMPILER_VERSION_MAJOR DEC(__clang_major__)
338
- # define COMPILER_VERSION_MINOR DEC(__clang_minor__)
339
- # define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
340
- # if defined(_MSC_VER)
341
- /* _MSC_VER = VVRR */
342
- # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
343
- # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
344
- # endif
345
-
346
- #elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
347
- # define COMPILER_ID "LCC"
348
- # define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
349
- # define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
350
- # if defined(__LCC_MINOR__)
351
- # define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
352
- # endif
353
- # if defined(__GNUC__) && defined(__GNUC_MINOR__)
354
- # define SIMULATE_ID "GNU"
355
- # define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
356
- # define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
357
- # if defined(__GNUC_PATCHLEVEL__)
358
- # define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
359
- # endif
360
- # endif
361
-
362
- #elif defined(__GNUC__) || defined(__GNUG__)
363
- # define COMPILER_ID "GNU"
364
- # if defined(__GNUC__)
365
- # define COMPILER_VERSION_MAJOR DEC(__GNUC__)
366
- # else
367
- # define COMPILER_VERSION_MAJOR DEC(__GNUG__)
368
- # endif
369
- # if defined(__GNUC_MINOR__)
370
- # define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
371
- # endif
372
- # if defined(__GNUC_PATCHLEVEL__)
373
- # define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
374
- # endif
375
-
376
- #elif defined(_MSC_VER)
377
- # define COMPILER_ID "MSVC"
378
- /* _MSC_VER = VVRR */
379
- # define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
380
- # define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
381
- # if defined(_MSC_FULL_VER)
382
- # if _MSC_VER >= 1400
383
- /* _MSC_FULL_VER = VVRRPPPPP */
384
- # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
385
- # else
386
- /* _MSC_FULL_VER = VVRRPPPP */
387
- # define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
388
- # endif
389
- # endif
390
- # if defined(_MSC_BUILD)
391
- # define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
392
- # endif
393
-
394
- #elif defined(_ADI_COMPILER)
395
- # define COMPILER_ID "ADSP"
396
- #if defined(__VERSIONNUM__)
397
- /* __VERSIONNUM__ = 0xVVRRPPTT */
398
- # define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
399
- # define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
400
- # define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
401
- # define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
402
- #endif
403
-
404
- #elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
405
- # define COMPILER_ID "IAR"
406
- # if defined(__VER__) && defined(__ICCARM__)
407
- # define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
408
- # define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
409
- # define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
410
- # define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
411
- # elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
412
- # define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
413
- # define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
414
- # define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
415
- # define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
416
- # endif
417
-
418
-
419
- /* These compilers are either not known or too old to define an
420
- identification macro. Try to identify the platform and guess that
421
- it is the native compiler. */
422
- #elif defined(__hpux) || defined(__hpua)
423
- # define COMPILER_ID "HP"
424
-
425
- #else /* unknown compiler */
426
- # define COMPILER_ID ""
427
- #endif
428
-
429
- /* Construct the string literal in pieces to prevent the source from
430
- getting matched. Store it in a pointer rather than an array
431
- because some compilers will just produce instructions to fill the
432
- array rather than assigning a pointer to a static array. */
433
- char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
434
- #ifdef SIMULATE_ID
435
- char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
436
- #endif
437
-
438
- #ifdef __QNXNTO__
439
- char const* qnxnto = "INFO" ":" "qnxnto[]";
440
- #endif
441
-
442
- #if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
443
- char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
444
- #endif
445
-
446
- #define STRINGIFY_HELPER(X) #X
447
- #define STRINGIFY(X) STRINGIFY_HELPER(X)
448
-
449
- /* Identify known platforms by name. */
450
- #if defined(__linux) || defined(__linux__) || defined(linux)
451
- # define PLATFORM_ID "Linux"
452
-
453
- #elif defined(__MSYS__)
454
- # define PLATFORM_ID "MSYS"
455
-
456
- #elif defined(__CYGWIN__)
457
- # define PLATFORM_ID "Cygwin"
458
-
459
- #elif defined(__MINGW32__)
460
- # define PLATFORM_ID "MinGW"
461
-
462
- #elif defined(__APPLE__)
463
- # define PLATFORM_ID "Darwin"
464
-
465
- #elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
466
- # define PLATFORM_ID "Windows"
467
-
468
- #elif defined(__FreeBSD__) || defined(__FreeBSD)
469
- # define PLATFORM_ID "FreeBSD"
470
-
471
- #elif defined(__NetBSD__) || defined(__NetBSD)
472
- # define PLATFORM_ID "NetBSD"
473
-
474
- #elif defined(__OpenBSD__) || defined(__OPENBSD)
475
- # define PLATFORM_ID "OpenBSD"
476
-
477
- #elif defined(__sun) || defined(sun)
478
- # define PLATFORM_ID "SunOS"
479
-
480
- #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
481
- # define PLATFORM_ID "AIX"
482
-
483
- #elif defined(__hpux) || defined(__hpux__)
484
- # define PLATFORM_ID "HP-UX"
485
-
486
- #elif defined(__HAIKU__)
487
- # define PLATFORM_ID "Haiku"
488
-
489
- #elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
490
- # define PLATFORM_ID "BeOS"
491
-
492
- #elif defined(__QNX__) || defined(__QNXNTO__)
493
- # define PLATFORM_ID "QNX"
494
-
495
- #elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
496
- # define PLATFORM_ID "Tru64"
497
-
498
- #elif defined(__riscos) || defined(__riscos__)
499
- # define PLATFORM_ID "RISCos"
500
-
501
- #elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
502
- # define PLATFORM_ID "SINIX"
503
-
504
- #elif defined(__UNIX_SV__)
505
- # define PLATFORM_ID "UNIX_SV"
506
-
507
- #elif defined(__bsdos__)
508
- # define PLATFORM_ID "BSDOS"
509
-
510
- #elif defined(_MPRAS) || defined(MPRAS)
511
- # define PLATFORM_ID "MP-RAS"
512
-
513
- #elif defined(__osf) || defined(__osf__)
514
- # define PLATFORM_ID "OSF1"
515
-
516
- #elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
517
- # define PLATFORM_ID "SCO_SV"
518
-
519
- #elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
520
- # define PLATFORM_ID "ULTRIX"
521
-
522
- #elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
523
- # define PLATFORM_ID "Xenix"
524
-
525
- #elif defined(__WATCOMC__)
526
- # if defined(__LINUX__)
527
- # define PLATFORM_ID "Linux"
528
-
529
- # elif defined(__DOS__)
530
- # define PLATFORM_ID "DOS"
531
-
532
- # elif defined(__OS2__)
533
- # define PLATFORM_ID "OS2"
534
-
535
- # elif defined(__WINDOWS__)
536
- # define PLATFORM_ID "Windows3x"
537
-
538
- # elif defined(__VXWORKS__)
539
- # define PLATFORM_ID "VxWorks"
540
-
541
- # else /* unknown platform */
542
- # define PLATFORM_ID
543
- # endif
544
-
545
- #elif defined(__INTEGRITY)
546
- # if defined(INT_178B)
547
- # define PLATFORM_ID "Integrity178"
548
-
549
- # else /* regular Integrity */
550
- # define PLATFORM_ID "Integrity"
551
- # endif
552
-
553
- # elif defined(_ADI_COMPILER)
554
- # define PLATFORM_ID "ADSP"
555
-
556
- #else /* unknown platform */
557
- # define PLATFORM_ID
558
-
559
- #endif
560
-
561
- /* For windows compilers MSVC and Intel we can determine
562
- the architecture of the compiler being used. This is because
563
- the compilers do not have flags that can change the architecture,
564
- but rather depend on which compiler is being used
565
- */
566
- #if defined(_WIN32) && defined(_MSC_VER)
567
- # if defined(_M_IA64)
568
- # define ARCHITECTURE_ID "IA64"
569
-
570
- # elif defined(_M_ARM64EC)
571
- # define ARCHITECTURE_ID "ARM64EC"
572
-
573
- # elif defined(_M_X64) || defined(_M_AMD64)
574
- # define ARCHITECTURE_ID "x64"
575
-
576
- # elif defined(_M_IX86)
577
- # define ARCHITECTURE_ID "X86"
578
-
579
- # elif defined(_M_ARM64)
580
- # define ARCHITECTURE_ID "ARM64"
581
-
582
- # elif defined(_M_ARM)
583
- # if _M_ARM == 4
584
- # define ARCHITECTURE_ID "ARMV4I"
585
- # elif _M_ARM == 5
586
- # define ARCHITECTURE_ID "ARMV5I"
587
- # else
588
- # define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
589
- # endif
590
-
591
- # elif defined(_M_MIPS)
592
- # define ARCHITECTURE_ID "MIPS"
593
-
594
- # elif defined(_M_SH)
595
- # define ARCHITECTURE_ID "SHx"
596
-
597
- # else /* unknown architecture */
598
- # define ARCHITECTURE_ID ""
599
- # endif
600
-
601
- #elif defined(__WATCOMC__)
602
- # if defined(_M_I86)
603
- # define ARCHITECTURE_ID "I86"
604
-
605
- # elif defined(_M_IX86)
606
- # define ARCHITECTURE_ID "X86"
607
-
608
- # else /* unknown architecture */
609
- # define ARCHITECTURE_ID ""
610
- # endif
611
-
612
- #elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
613
- # if defined(__ICCARM__)
614
- # define ARCHITECTURE_ID "ARM"
615
-
616
- # elif defined(__ICCRX__)
617
- # define ARCHITECTURE_ID "RX"
618
-
619
- # elif defined(__ICCRH850__)
620
- # define ARCHITECTURE_ID "RH850"
621
-
622
- # elif defined(__ICCRL78__)
623
- # define ARCHITECTURE_ID "RL78"
624
-
625
- # elif defined(__ICCRISCV__)
626
- # define ARCHITECTURE_ID "RISCV"
627
-
628
- # elif defined(__ICCAVR__)
629
- # define ARCHITECTURE_ID "AVR"
630
-
631
- # elif defined(__ICC430__)
632
- # define ARCHITECTURE_ID "MSP430"
633
-
634
- # elif defined(__ICCV850__)
635
- # define ARCHITECTURE_ID "V850"
636
-
637
- # elif defined(__ICC8051__)
638
- # define ARCHITECTURE_ID "8051"
639
-
640
- # elif defined(__ICCSTM8__)
641
- # define ARCHITECTURE_ID "STM8"
642
-
643
- # else /* unknown architecture */
644
- # define ARCHITECTURE_ID ""
645
- # endif
646
-
647
- #elif defined(__ghs__)
648
- # if defined(__PPC64__)
649
- # define ARCHITECTURE_ID "PPC64"
650
-
651
- # elif defined(__ppc__)
652
- # define ARCHITECTURE_ID "PPC"
653
-
654
- # elif defined(__ARM__)
655
- # define ARCHITECTURE_ID "ARM"
656
-
657
- # elif defined(__x86_64__)
658
- # define ARCHITECTURE_ID "x64"
659
-
660
- # elif defined(__i386__)
661
- # define ARCHITECTURE_ID "X86"
662
-
663
- # else /* unknown architecture */
664
- # define ARCHITECTURE_ID ""
665
- # endif
666
-
667
- #elif defined(__TI_COMPILER_VERSION__)
668
- # if defined(__TI_ARM__)
669
- # define ARCHITECTURE_ID "ARM"
670
-
671
- # elif defined(__MSP430__)
672
- # define ARCHITECTURE_ID "MSP430"
673
-
674
- # elif defined(__TMS320C28XX__)
675
- # define ARCHITECTURE_ID "TMS320C28x"
676
-
677
- # elif defined(__TMS320C6X__) || defined(_TMS320C6X)
678
- # define ARCHITECTURE_ID "TMS320C6x"
679
-
680
- # else /* unknown architecture */
681
- # define ARCHITECTURE_ID ""
682
- # endif
683
-
684
- # elif defined(__ADSPSHARC__)
685
- # define ARCHITECTURE_ID "SHARC"
686
-
687
- # elif defined(__ADSPBLACKFIN__)
688
- # define ARCHITECTURE_ID "Blackfin"
689
-
690
- #elif defined(__TASKING__)
691
-
692
- # if defined(__CTC__) || defined(__CPTC__)
693
- # define ARCHITECTURE_ID "TriCore"
694
-
695
- # elif defined(__CMCS__)
696
- # define ARCHITECTURE_ID "MCS"
697
-
698
- # elif defined(__CARM__)
699
- # define ARCHITECTURE_ID "ARM"
700
-
701
- # elif defined(__CARC__)
702
- # define ARCHITECTURE_ID "ARC"
703
-
704
- # elif defined(__C51__)
705
- # define ARCHITECTURE_ID "8051"
706
-
707
- # elif defined(__CPCP__)
708
- # define ARCHITECTURE_ID "PCP"
709
-
710
- # else
711
- # define ARCHITECTURE_ID ""
712
- # endif
713
-
714
- #else
715
- # define ARCHITECTURE_ID
716
- #endif
717
-
718
- /* Convert integer to decimal digit literals. */
719
- #define DEC(n) \
720
- ('0' + (((n) / 10000000)%10)), \
721
- ('0' + (((n) / 1000000)%10)), \
722
- ('0' + (((n) / 100000)%10)), \
723
- ('0' + (((n) / 10000)%10)), \
724
- ('0' + (((n) / 1000)%10)), \
725
- ('0' + (((n) / 100)%10)), \
726
- ('0' + (((n) / 10)%10)), \
727
- ('0' + ((n) % 10))
728
-
729
- /* Convert integer to hex digit literals. */
730
- #define HEX(n) \
731
- ('0' + ((n)>>28 & 0xF)), \
732
- ('0' + ((n)>>24 & 0xF)), \
733
- ('0' + ((n)>>20 & 0xF)), \
734
- ('0' + ((n)>>16 & 0xF)), \
735
- ('0' + ((n)>>12 & 0xF)), \
736
- ('0' + ((n)>>8 & 0xF)), \
737
- ('0' + ((n)>>4 & 0xF)), \
738
- ('0' + ((n) & 0xF))
739
-
740
- /* Construct a string literal encoding the version number. */
741
- #ifdef COMPILER_VERSION
742
- char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
743
-
744
- /* Construct a string literal encoding the version number components. */
745
- #elif defined(COMPILER_VERSION_MAJOR)
746
- char const info_version[] = {
747
- 'I', 'N', 'F', 'O', ':',
748
- 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
749
- COMPILER_VERSION_MAJOR,
750
- # ifdef COMPILER_VERSION_MINOR
751
- '.', COMPILER_VERSION_MINOR,
752
- # ifdef COMPILER_VERSION_PATCH
753
- '.', COMPILER_VERSION_PATCH,
754
- # ifdef COMPILER_VERSION_TWEAK
755
- '.', COMPILER_VERSION_TWEAK,
756
- # endif
757
- # endif
758
- # endif
759
- ']','\0'};
760
- #endif
761
-
762
- /* Construct a string literal encoding the internal version number. */
763
- #ifdef COMPILER_VERSION_INTERNAL
764
- char const info_version_internal[] = {
765
- 'I', 'N', 'F', 'O', ':',
766
- 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
767
- 'i','n','t','e','r','n','a','l','[',
768
- COMPILER_VERSION_INTERNAL,']','\0'};
769
- #elif defined(COMPILER_VERSION_INTERNAL_STR)
770
- char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
771
- #endif
772
-
773
- /* Construct a string literal encoding the version number components. */
774
- #ifdef SIMULATE_VERSION_MAJOR
775
- char const info_simulate_version[] = {
776
- 'I', 'N', 'F', 'O', ':',
777
- 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
778
- SIMULATE_VERSION_MAJOR,
779
- # ifdef SIMULATE_VERSION_MINOR
780
- '.', SIMULATE_VERSION_MINOR,
781
- # ifdef SIMULATE_VERSION_PATCH
782
- '.', SIMULATE_VERSION_PATCH,
783
- # ifdef SIMULATE_VERSION_TWEAK
784
- '.', SIMULATE_VERSION_TWEAK,
785
- # endif
786
- # endif
787
- # endif
788
- ']','\0'};
789
- #endif
790
-
791
- /* Construct the string literal in pieces to prevent the source from
792
- getting matched. Store it in a pointer rather than an array
793
- because some compilers will just produce instructions to fill the
794
- array rather than assigning a pointer to a static array. */
795
- char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
796
- char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
797
-
798
-
799
-
800
- #if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
801
- # if defined(__INTEL_CXX11_MODE__)
802
- # if defined(__cpp_aggregate_nsdmi)
803
- # define CXX_STD 201402L
804
- # else
805
- # define CXX_STD 201103L
806
- # endif
807
- # else
808
- # define CXX_STD 199711L
809
- # endif
810
- #elif defined(_MSC_VER) && defined(_MSVC_LANG)
811
- # define CXX_STD _MSVC_LANG
812
- #else
813
- # define CXX_STD __cplusplus
814
- #endif
815
-
816
- const char* info_language_standard_default = "INFO" ":" "standard_default["
817
- #if CXX_STD > 202002L
818
- "23"
819
- #elif CXX_STD > 201703L
820
- "20"
821
- #elif CXX_STD >= 201703L
822
- "17"
823
- #elif CXX_STD >= 201402L
824
- "14"
825
- #elif CXX_STD >= 201103L
826
- "11"
827
- #else
828
- "98"
829
- #endif
830
- "]";
831
-
832
- const char* info_language_extensions_default = "INFO" ":" "extensions_default["
833
- #if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
834
- defined(__TI_COMPILER_VERSION__)) && \
835
- !defined(__STRICT_ANSI__)
836
- "ON"
837
- #else
838
- "OFF"
839
- #endif
840
- "]";
841
-
842
- /*--------------------------------------------------------------------------*/
843
-
844
- int main(int argc, char* argv[])
845
- {
846
- int require = 0;
847
- require += info_compiler[argc];
848
- require += info_platform[argc];
849
- require += info_arch[argc];
850
- #ifdef COMPILER_VERSION_MAJOR
851
- require += info_version[argc];
852
- #endif
853
- #ifdef COMPILER_VERSION_INTERNAL
854
- require += info_version_internal[argc];
855
- #endif
856
- #ifdef SIMULATE_ID
857
- require += info_simulate[argc];
858
- #endif
859
- #ifdef SIMULATE_VERSION_MAJOR
860
- require += info_simulate_version[argc];
861
- #endif
862
- #if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
863
- require += info_cray[argc];
864
- #endif
865
- require += info_language_standard_default[argc];
866
- require += info_language_extensions_default[argc];
867
- (void)argv;
868
- return require;
869
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/3.28.1/CompilerIdCXX/a.out DELETED
Binary file (16.8 kB)
 
REAPER/build/CMakeFiles/CMakeConfigureLog.yaml DELETED
@@ -1,599 +0,0 @@
1
-
2
- ---
3
- events:
4
- -
5
- kind: "message-v1"
6
- backtrace:
7
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake:233 (message)"
8
- - "CMakeLists.txt:2 (project)"
9
- message: |
10
- The system is: Linux - 5.4.0-121-generic - x86_64
11
- ...
12
-
13
- ---
14
- events:
15
- -
16
- kind: "message-v1"
17
- backtrace:
18
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
19
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
20
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)"
21
- - "CMakeLists.txt:2 (project)"
22
- message: |
23
- Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
24
- Compiler: /usr/bin/cc
25
- Build flags:
26
- Id flags:
27
-
28
- The output was:
29
- 0
30
-
31
-
32
- Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
33
-
34
- The C compiler identification is GNU, found in:
35
- /workspace/NeuCoSVC/REAPER/build/CMakeFiles/3.28.1/CompilerIdC/a.out
36
-
37
- -
38
- kind: "message-v1"
39
- backtrace:
40
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
41
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
42
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
43
- - "CMakeLists.txt:2 (project)"
44
- message: |
45
- Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
46
- Compiler: /usr/bin/c++
47
- Build flags:
48
- Id flags:
49
-
50
- The output was:
51
- 0
52
-
53
-
54
- Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
55
-
56
- The CXX compiler identification is GNU, found in:
57
- /workspace/NeuCoSVC/REAPER/build/CMakeFiles/3.28.1/CompilerIdCXX/a.out
58
-
59
- -
60
- kind: "try_compile-v1"
61
- backtrace:
62
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)"
63
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
64
- - "CMakeLists.txt:2 (project)"
65
- checks:
66
- - "Detecting C compiler ABI info"
67
- directories:
68
- source: "/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-dBq53S"
69
- binary: "/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-dBq53S"
70
- cmakeVariables:
71
- CMAKE_C_FLAGS: ""
72
- buildResult:
73
- variable: "CMAKE_C_ABI_COMPILED"
74
- cached: true
75
- stdout: |
76
- Change Dir: '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-dBq53S'
77
-
78
- Run Build Command(s): /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_87981/fast
79
- /usr/bin/make -f CMakeFiles/cmTC_87981.dir/build.make CMakeFiles/cmTC_87981.dir/build
80
- make[1]: Entering directory '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-dBq53S'
81
- Building C object CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o
82
- /usr/bin/cc -v -o CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o -c /opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCCompilerABI.c
83
- Using built-in specs.
84
- COLLECT_GCC=/usr/bin/cc
85
- OFFLOAD_TARGET_NAMES=nvptx-none:hsa
86
- OFFLOAD_TARGET_DEFAULT=1
87
- Target: x86_64-linux-gnu
88
- Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.2' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-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 --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-9QDOt0/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
89
- Thread model: posix
90
- gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.2)
91
- COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
92
- /usr/lib/gcc/x86_64-linux-gnu/9/cc1 -quiet -v -imultiarch x86_64-linux-gnu /opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc6h5swQ.s
93
- GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.2) version 9.4.0 (x86_64-linux-gnu)
94
- compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
95
-
96
- GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
97
- ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
98
- ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"
99
- ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"
100
- #include "..." search starts here:
101
- #include <...> search starts here:
102
- /usr/lib/gcc/x86_64-linux-gnu/9/include
103
- /usr/local/include
104
- /usr/include/x86_64-linux-gnu
105
- /usr/include
106
- End of search list.
107
- GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.2) version 9.4.0 (x86_64-linux-gnu)
108
- compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
109
-
110
- GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
111
- Compiler executable checksum: 01da938ff5dc2163489aa33cb3b747a7
112
- COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
113
- as -v --64 -o CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o /tmp/cc6h5swQ.s
114
- GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34
115
- COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
116
- LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
117
- COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
118
- Linking C executable cmTC_87981
119
- /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_87981.dir/link.txt --verbose=1
120
- /usr/bin/cc -v -rdynamic CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o -o cmTC_87981
121
- Using built-in specs.
122
- COLLECT_GCC=/usr/bin/cc
123
- COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
124
- OFFLOAD_TARGET_NAMES=nvptx-none:hsa
125
- OFFLOAD_TARGET_DEFAULT=1
126
- Target: x86_64-linux-gnu
127
- Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.2' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-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 --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-9QDOt0/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
128
- Thread model: posix
129
- gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.2)
130
- COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
131
- LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
132
- COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_87981' '-mtune=generic' '-march=x86-64'
133
- /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cc3ihFig.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_87981 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_87981.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/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o
134
- COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_87981' '-mtune=generic' '-march=x86-64'
135
- make[1]: Leaving directory '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-dBq53S'
136
-
137
- exitCode: 0
138
- -
139
- kind: "message-v1"
140
- backtrace:
141
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)"
142
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
143
- - "CMakeLists.txt:2 (project)"
144
- message: |
145
- Parsed C implicit include dir info: rv=done
146
- found start of include info
147
- found start of implicit include info
148
- add: [/usr/lib/gcc/x86_64-linux-gnu/9/include]
149
- add: [/usr/local/include]
150
- add: [/usr/include/x86_64-linux-gnu]
151
- add: [/usr/include]
152
- end of search list found
153
- collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/9/include]
154
- collapse include dir [/usr/local/include] ==> [/usr/local/include]
155
- collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
156
- collapse include dir [/usr/include] ==> [/usr/include]
157
- implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include]
158
-
159
-
160
- -
161
- kind: "message-v1"
162
- backtrace:
163
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)"
164
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
165
- - "CMakeLists.txt:2 (project)"
166
- message: |
167
- Parsed C implicit link information:
168
- link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
169
- ignore line: [Change Dir: '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-dBq53S']
170
- ignore line: []
171
- ignore line: [Run Build Command(s): /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_87981/fast]
172
- ignore line: [/usr/bin/make -f CMakeFiles/cmTC_87981.dir/build.make CMakeFiles/cmTC_87981.dir/build]
173
- ignore line: [make[1]: Entering directory '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-dBq53S']
174
- ignore line: [Building C object CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o]
175
- ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o -c /opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCCompilerABI.c]
176
- ignore line: [Using built-in specs.]
177
- ignore line: [COLLECT_GCC=/usr/bin/cc]
178
- ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
179
- ignore line: [OFFLOAD_TARGET_DEFAULT=1]
180
- ignore line: [Target: x86_64-linux-gnu]
181
- ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.2' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-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 --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-9QDOt0/gcc-9-9.4.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
182
- ignore line: [Thread model: posix]
183
- ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.2) ]
184
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
185
- ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/cc1 -quiet -v -imultiarch x86_64-linux-gnu /opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc6h5swQ.s]
186
- ignore line: [GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.2) version 9.4.0 (x86_64-linux-gnu)]
187
- ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
188
- ignore line: []
189
- ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
190
- ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
191
- ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"]
192
- ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"]
193
- ignore line: [#include "..." search starts here:]
194
- ignore line: [#include <...> search starts here:]
195
- ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/include]
196
- ignore line: [ /usr/local/include]
197
- ignore line: [ /usr/include/x86_64-linux-gnu]
198
- ignore line: [ /usr/include]
199
- ignore line: [End of search list.]
200
- ignore line: [GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.2) version 9.4.0 (x86_64-linux-gnu)]
201
- ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
202
- ignore line: []
203
- ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
204
- ignore line: [Compiler executable checksum: 01da938ff5dc2163489aa33cb3b747a7]
205
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
206
- ignore line: [ as -v --64 -o CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o /tmp/cc6h5swQ.s]
207
- ignore line: [GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34]
208
- ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
209
- ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
210
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
211
- ignore line: [Linking C executable cmTC_87981]
212
- ignore line: [/opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_87981.dir/link.txt --verbose=1]
213
- ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o -o cmTC_87981 ]
214
- ignore line: [Using built-in specs.]
215
- ignore line: [COLLECT_GCC=/usr/bin/cc]
216
- ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper]
217
- ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
218
- ignore line: [OFFLOAD_TARGET_DEFAULT=1]
219
- ignore line: [Target: x86_64-linux-gnu]
220
- ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.2' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-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 --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-9QDOt0/gcc-9-9.4.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
221
- ignore line: [Thread model: posix]
222
- ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.2) ]
223
- ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
224
- ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
225
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_87981' '-mtune=generic' '-march=x86-64']
226
- link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cc3ihFig.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_87981 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_87981.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/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o]
227
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore
228
- arg [-plugin] ==> ignore
229
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore
230
- arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore
231
- arg [-plugin-opt=-fresolution=/tmp/cc3ihFig.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_87981] ==> ignore
251
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o]
252
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o]
253
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o]
254
- arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9]
255
- arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu]
256
- arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../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/lib/gcc/x86_64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..]
262
- arg [CMakeFiles/cmTC_87981.dir/CMakeCCompilerABI.c.o] ==> ignore
263
- arg [-lgcc] ==> lib [gcc]
264
- arg [--push-state] ==> ignore
265
- arg [--as-needed] ==> ignore
266
- arg [-lgcc_s] ==> lib [gcc_s]
267
- arg [--pop-state] ==> ignore
268
- arg [-lc] ==> lib [c]
269
- arg [-lgcc] ==> lib [gcc]
270
- arg [--push-state] ==> ignore
271
- arg [--as-needed] ==> ignore
272
- arg [-lgcc_s] ==> lib [gcc_s]
273
- arg [--pop-state] ==> ignore
274
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o]
275
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o]
276
- collapse obj [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o]
277
- collapse obj [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o]
278
- collapse obj [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o]
279
- collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9]
280
- collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
281
- collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> [/usr/lib]
282
- collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
283
- collapse library dir [/lib/../lib] ==> [/lib]
284
- collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
285
- collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
286
- collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> [/usr/lib]
287
- implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
288
- 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/9/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o]
289
- implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
290
- implicit fwks: []
291
-
292
-
293
- -
294
- kind: "try_compile-v1"
295
- backtrace:
296
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)"
297
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
298
- - "CMakeLists.txt:2 (project)"
299
- checks:
300
- - "Detecting CXX compiler ABI info"
301
- directories:
302
- source: "/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-wBns3Q"
303
- binary: "/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-wBns3Q"
304
- cmakeVariables:
305
- CMAKE_CXX_FLAGS: ""
306
- buildResult:
307
- variable: "CMAKE_CXX_ABI_COMPILED"
308
- cached: true
309
- stdout: |
310
- Change Dir: '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-wBns3Q'
311
-
312
- Run Build Command(s): /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_4eddd/fast
313
- /usr/bin/make -f CMakeFiles/cmTC_4eddd.dir/build.make CMakeFiles/cmTC_4eddd.dir/build
314
- make[1]: Entering directory '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-wBns3Q'
315
- Building CXX object CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o
316
- /usr/bin/c++ -v -o CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o -c /opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp
317
- Using built-in specs.
318
- COLLECT_GCC=/usr/bin/c++
319
- OFFLOAD_TARGET_NAMES=nvptx-none:hsa
320
- OFFLOAD_TARGET_DEFAULT=1
321
- Target: x86_64-linux-gnu
322
- Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.2' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-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 --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-9QDOt0/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
323
- Thread model: posix
324
- gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.2)
325
- COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
326
- /usr/lib/gcc/x86_64-linux-gnu/9/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccoViRFr.s
327
- GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.2) version 9.4.0 (x86_64-linux-gnu)
328
- compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
329
-
330
- GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
331
- ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/9"
332
- ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
333
- ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"
334
- ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"
335
- #include "..." search starts here:
336
- #include <...> search starts here:
337
- /usr/include/c++/9
338
- /usr/include/x86_64-linux-gnu/c++/9
339
- /usr/include/c++/9/backward
340
- /usr/lib/gcc/x86_64-linux-gnu/9/include
341
- /usr/local/include
342
- /usr/include/x86_64-linux-gnu
343
- /usr/include
344
- End of search list.
345
- GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.2) version 9.4.0 (x86_64-linux-gnu)
346
- compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
347
-
348
- GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
349
- Compiler executable checksum: 3d1eba838554fa2348dba760e4770469
350
- COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
351
- as -v --64 -o CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccoViRFr.s
352
- GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34
353
- COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
354
- LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
355
- COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
356
- Linking CXX executable cmTC_4eddd
357
- /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4eddd.dir/link.txt --verbose=1
358
- /usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4eddd
359
- Using built-in specs.
360
- COLLECT_GCC=/usr/bin/c++
361
- COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
362
- OFFLOAD_TARGET_NAMES=nvptx-none:hsa
363
- OFFLOAD_TARGET_DEFAULT=1
364
- Target: x86_64-linux-gnu
365
- Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.2' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-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 --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-9QDOt0/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
366
- Thread model: posix
367
- gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.2)
368
- COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
369
- LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
370
- COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_4eddd' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
371
- /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cctTOMDP.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_4eddd /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o
372
- COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_4eddd' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
373
- make[1]: Leaving directory '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-wBns3Q'
374
-
375
- exitCode: 0
376
- -
377
- kind: "message-v1"
378
- backtrace:
379
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)"
380
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
381
- - "CMakeLists.txt:2 (project)"
382
- message: |
383
- Parsed CXX implicit include dir info: rv=done
384
- found start of include info
385
- found start of implicit include info
386
- add: [/usr/include/c++/9]
387
- add: [/usr/include/x86_64-linux-gnu/c++/9]
388
- add: [/usr/include/c++/9/backward]
389
- add: [/usr/lib/gcc/x86_64-linux-gnu/9/include]
390
- add: [/usr/local/include]
391
- add: [/usr/include/x86_64-linux-gnu]
392
- add: [/usr/include]
393
- end of search list found
394
- collapse include dir [/usr/include/c++/9] ==> [/usr/include/c++/9]
395
- collapse include dir [/usr/include/x86_64-linux-gnu/c++/9] ==> [/usr/include/x86_64-linux-gnu/c++/9]
396
- collapse include dir [/usr/include/c++/9/backward] ==> [/usr/include/c++/9/backward]
397
- collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/9/include]
398
- collapse include dir [/usr/local/include] ==> [/usr/local/include]
399
- collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
400
- collapse include dir [/usr/include] ==> [/usr/include]
401
- implicit include dirs: [/usr/include/c++/9;/usr/include/x86_64-linux-gnu/c++/9;/usr/include/c++/9/backward;/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include]
402
-
403
-
404
- -
405
- kind: "message-v1"
406
- backtrace:
407
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)"
408
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
409
- - "CMakeLists.txt:2 (project)"
410
- message: |
411
- Parsed CXX implicit link information:
412
- link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
413
- ignore line: [Change Dir: '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-wBns3Q']
414
- ignore line: []
415
- ignore line: [Run Build Command(s): /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_4eddd/fast]
416
- ignore line: [/usr/bin/make -f CMakeFiles/cmTC_4eddd.dir/build.make CMakeFiles/cmTC_4eddd.dir/build]
417
- ignore line: [make[1]: Entering directory '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-wBns3Q']
418
- ignore line: [Building CXX object CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o]
419
- ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o -c /opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp]
420
- ignore line: [Using built-in specs.]
421
- ignore line: [COLLECT_GCC=/usr/bin/c++]
422
- ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
423
- ignore line: [OFFLOAD_TARGET_DEFAULT=1]
424
- ignore line: [Target: x86_64-linux-gnu]
425
- ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.2' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-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 --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-9QDOt0/gcc-9-9.4.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
426
- ignore line: [Thread model: posix]
427
- ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.2) ]
428
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
429
- ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccoViRFr.s]
430
- ignore line: [GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.2) version 9.4.0 (x86_64-linux-gnu)]
431
- ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
432
- ignore line: []
433
- ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
434
- ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/9"]
435
- ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
436
- ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"]
437
- ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"]
438
- ignore line: [#include "..." search starts here:]
439
- ignore line: [#include <...> search starts here:]
440
- ignore line: [ /usr/include/c++/9]
441
- ignore line: [ /usr/include/x86_64-linux-gnu/c++/9]
442
- ignore line: [ /usr/include/c++/9/backward]
443
- ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/include]
444
- ignore line: [ /usr/local/include]
445
- ignore line: [ /usr/include/x86_64-linux-gnu]
446
- ignore line: [ /usr/include]
447
- ignore line: [End of search list.]
448
- ignore line: [GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.2) version 9.4.0 (x86_64-linux-gnu)]
449
- ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
450
- ignore line: []
451
- ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
452
- ignore line: [Compiler executable checksum: 3d1eba838554fa2348dba760e4770469]
453
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
454
- ignore line: [ as -v --64 -o CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccoViRFr.s]
455
- ignore line: [GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34]
456
- ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
457
- ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
458
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
459
- ignore line: [Linking CXX executable cmTC_4eddd]
460
- ignore line: [/opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4eddd.dir/link.txt --verbose=1]
461
- ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4eddd ]
462
- ignore line: [Using built-in specs.]
463
- ignore line: [COLLECT_GCC=/usr/bin/c++]
464
- ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper]
465
- ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
466
- ignore line: [OFFLOAD_TARGET_DEFAULT=1]
467
- ignore line: [Target: x86_64-linux-gnu]
468
- ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.2' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-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 --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-9QDOt0/gcc-9-9.4.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
469
- ignore line: [Thread model: posix]
470
- ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.2) ]
471
- ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
472
- ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
473
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_4eddd' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
474
- link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cctTOMDP.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_4eddd /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o]
475
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore
476
- arg [-plugin] ==> ignore
477
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore
478
- arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore
479
- arg [-plugin-opt=-fresolution=/tmp/cctTOMDP.res] ==> ignore
480
- arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
481
- arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
482
- arg [-plugin-opt=-pass-through=-lc] ==> ignore
483
- arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
484
- arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
485
- arg [--build-id] ==> ignore
486
- arg [--eh-frame-hdr] ==> ignore
487
- arg [-m] ==> ignore
488
- arg [elf_x86_64] ==> ignore
489
- arg [--hash-style=gnu] ==> ignore
490
- arg [--as-needed] ==> ignore
491
- arg [-export-dynamic] ==> ignore
492
- arg [-dynamic-linker] ==> ignore
493
- arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
494
- arg [-pie] ==> ignore
495
- arg [-znow] ==> ignore
496
- arg [-zrelro] ==> ignore
497
- arg [-o] ==> ignore
498
- arg [cmTC_4eddd] ==> ignore
499
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o]
500
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o]
501
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o]
502
- arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9]
503
- arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu]
504
- arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib]
505
- arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
506
- arg [-L/lib/../lib] ==> dir [/lib/../lib]
507
- arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
508
- arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
509
- arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..]
510
- arg [CMakeFiles/cmTC_4eddd.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
511
- arg [-lstdc++] ==> lib [stdc++]
512
- arg [-lm] ==> lib [m]
513
- arg [-lgcc_s] ==> lib [gcc_s]
514
- arg [-lgcc] ==> lib [gcc]
515
- arg [-lc] ==> lib [c]
516
- arg [-lgcc_s] ==> lib [gcc_s]
517
- arg [-lgcc] ==> lib [gcc]
518
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o]
519
- arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o]
520
- collapse obj [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o]
521
- collapse obj [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o]
522
- collapse obj [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o]
523
- collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9]
524
- collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
525
- collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> [/usr/lib]
526
- collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
527
- collapse library dir [/lib/../lib] ==> [/lib]
528
- collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
529
- collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
530
- collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> [/usr/lib]
531
- implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
532
- 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/9/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o]
533
- implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
534
- implicit fwks: []
535
-
536
-
537
- -
538
- kind: "try_compile-v1"
539
- backtrace:
540
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)"
541
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)"
542
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CheckCXXCompilerFlag.cmake:34 (cmake_check_compiler_flag)"
543
- - "CMakeLists.txt:6 (CHECK_CXX_COMPILER_FLAG)"
544
- checks:
545
- - "Performing Test COMPILER_SUPPORTS_CXX11"
546
- directories:
547
- source: "/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-Iz5SKQ"
548
- binary: "/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-Iz5SKQ"
549
- cmakeVariables:
550
- CMAKE_CXX_FLAGS: ""
551
- buildResult:
552
- variable: "COMPILER_SUPPORTS_CXX11"
553
- cached: true
554
- stdout: |
555
- Change Dir: '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-Iz5SKQ'
556
-
557
- Run Build Command(s): /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_53182/fast
558
- /usr/bin/make -f CMakeFiles/cmTC_53182.dir/build.make CMakeFiles/cmTC_53182.dir/build
559
- make[1]: Entering directory '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-Iz5SKQ'
560
- Building CXX object CMakeFiles/cmTC_53182.dir/src.cxx.o
561
- /usr/bin/c++ -DCOMPILER_SUPPORTS_CXX11 -std=c++11 -o CMakeFiles/cmTC_53182.dir/src.cxx.o -c /workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-Iz5SKQ/src.cxx
562
- Linking CXX executable cmTC_53182
563
- /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_53182.dir/link.txt --verbose=1
564
- /usr/bin/c++ -rdynamic CMakeFiles/cmTC_53182.dir/src.cxx.o -o cmTC_53182
565
- make[1]: Leaving directory '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-Iz5SKQ'
566
-
567
- exitCode: 0
568
- -
569
- kind: "try_compile-v1"
570
- backtrace:
571
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)"
572
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)"
573
- - "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CheckCXXCompilerFlag.cmake:34 (cmake_check_compiler_flag)"
574
- - "CMakeLists.txt:7 (CHECK_CXX_COMPILER_FLAG)"
575
- checks:
576
- - "Performing Test COMPILER_SUPPORTS_CXX0X"
577
- directories:
578
- source: "/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-lWLIhR"
579
- binary: "/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-lWLIhR"
580
- cmakeVariables:
581
- CMAKE_CXX_FLAGS: ""
582
- buildResult:
583
- variable: "COMPILER_SUPPORTS_CXX0X"
584
- cached: true
585
- stdout: |
586
- Change Dir: '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-lWLIhR'
587
-
588
- Run Build Command(s): /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_ceea7/fast
589
- /usr/bin/make -f CMakeFiles/cmTC_ceea7.dir/build.make CMakeFiles/cmTC_ceea7.dir/build
590
- make[1]: Entering directory '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-lWLIhR'
591
- Building CXX object CMakeFiles/cmTC_ceea7.dir/src.cxx.o
592
- /usr/bin/c++ -DCOMPILER_SUPPORTS_CXX0X -std=c++0x -o CMakeFiles/cmTC_ceea7.dir/src.cxx.o -c /workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-lWLIhR/src.cxx
593
- Linking CXX executable cmTC_ceea7
594
- /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ceea7.dir/link.txt --verbose=1
595
- /usr/bin/c++ -rdynamic CMakeFiles/cmTC_ceea7.dir/src.cxx.o -o cmTC_ceea7
596
- make[1]: Leaving directory '/workspace/NeuCoSVC/REAPER/build/CMakeFiles/CMakeScratch/TryCompile-lWLIhR'
597
-
598
- exitCode: 0
599
- ...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/CMakeDirectoryInformation.cmake DELETED
@@ -1,16 +0,0 @@
1
- # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.28
3
-
4
- # Relative path conversion top directories.
5
- set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/workspace/NeuCoSVC/REAPER")
6
- set(CMAKE_RELATIVE_PATH_TOP_BINARY "/workspace/NeuCoSVC/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 DELETED
@@ -1,136 +0,0 @@
1
- # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.28
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
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCCompiler.cmake.in"
11
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCCompilerABI.c"
12
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCInformation.cmake"
13
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCXXCompiler.cmake.in"
14
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp"
15
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCXXInformation.cmake"
16
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
17
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake"
18
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeCompilerIdDetection.cmake"
19
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCCompiler.cmake"
20
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake"
21
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompileFeatures.cmake"
22
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompiler.cmake"
23
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake"
24
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake"
25
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeFindBinUtils.cmake"
26
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeGenericSystem.cmake"
27
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake"
28
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake"
29
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeParseImplicitIncludeInfo.cmake"
30
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake"
31
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeParseLibraryArchitecture.cmake"
32
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake"
33
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake"
34
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake"
35
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake"
36
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake"
37
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CMakeUnixFindMake.cmake"
38
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CheckCXXCompilerFlag.cmake"
39
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/CheckCXXSourceCompiles.cmake"
40
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/ADSP-DetermineCompiler.cmake"
41
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
42
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
43
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
44
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Borland-DetermineCompiler.cmake"
45
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
46
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
47
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompiler.cmake"
48
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
49
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
50
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
51
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
52
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Cray-DetermineCompiler.cmake"
53
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/CrayClang-DetermineCompiler.cmake"
54
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
55
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
56
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
57
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/GHS-DetermineCompiler.cmake"
58
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
59
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/GNU-C.cmake"
60
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
61
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake"
62
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/GNU-FindBinUtils.cmake"
63
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/GNU.cmake"
64
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/HP-C-DetermineCompiler.cmake"
65
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
66
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/IAR-DetermineCompiler.cmake"
67
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
68
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
69
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake"
70
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake"
71
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Intel-DetermineCompiler.cmake"
72
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
73
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/LCC-C-DetermineCompiler.cmake"
74
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake"
75
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/MSVC-DetermineCompiler.cmake"
76
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
77
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
78
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
79
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/OrangeC-DetermineCompiler.cmake"
80
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/PGI-DetermineCompiler.cmake"
81
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/PathScale-DetermineCompiler.cmake"
82
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/SCO-DetermineCompiler.cmake"
83
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
84
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
85
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
86
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/TI-DetermineCompiler.cmake"
87
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Tasking-DetermineCompiler.cmake"
88
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
89
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
90
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
91
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/Watcom-DetermineCompiler.cmake"
92
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/XL-C-DetermineCompiler.cmake"
93
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
94
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
95
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
96
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
97
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
98
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Internal/CheckCompilerFlag.cmake"
99
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Internal/CheckFlagCommonConfig.cmake"
100
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Internal/CheckSourceCompiles.cmake"
101
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Internal/FeatureTesting.cmake"
102
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Platform/Linux-Determine-CXX.cmake"
103
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Platform/Linux-GNU-C.cmake"
104
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Platform/Linux-GNU-CXX.cmake"
105
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake"
106
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake"
107
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Platform/Linux.cmake"
108
- "/opt/conda/lib/python3.10/site-packages/cmake/data/share/cmake-3.28/Modules/Platform/UnixPaths.cmake"
109
- "/workspace/NeuCoSVC/REAPER/CMakeLists.txt"
110
- "CMakeFiles/3.28.1/CMakeCCompiler.cmake"
111
- "CMakeFiles/3.28.1/CMakeCXXCompiler.cmake"
112
- "CMakeFiles/3.28.1/CMakeSystem.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.28.1/CMakeCCompiler.cmake"
124
- "CMakeFiles/3.28.1/CMakeCXXCompiler.cmake"
125
- "CMakeFiles/3.28.1/CMakeCCompiler.cmake"
126
- "CMakeFiles/3.28.1/CMakeCXXCompiler.cmake"
127
- "CMakeFiles/CMakeDirectoryInformation.cmake"
128
- )
129
-
130
- # Dependency information for all targets:
131
- set(CMAKE_DEPEND_INFO_FILES
132
- "CMakeFiles/core.dir/DependInfo.cmake"
133
- "CMakeFiles/wave.dir/DependInfo.cmake"
134
- "CMakeFiles/epoch_tracker.dir/DependInfo.cmake"
135
- "CMakeFiles/reaper.dir/DependInfo.cmake"
136
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/Makefile2 DELETED
@@ -1,199 +0,0 @@
1
- # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.28
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 = /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake
49
-
50
- # The command to remove a file.
51
- RM = /opt/conda/lib/python3.10/site-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 = /workspace/NeuCoSVC/REAPER
58
-
59
- # The top-level build directory on which CMake was run.
60
- CMAKE_BINARY_DIR = /workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/REAPER/build/CMakeFiles 4
96
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/core.dir/all
97
- $(CMAKE_COMMAND) -E cmake_progress_start /workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/REAPER/build/CMakeFiles 8
122
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/wave.dir/all
123
- $(CMAKE_COMMAND) -E cmake_progress_start /workspace/NeuCoSVC/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/core.dir/all
140
- CMakeFiles/epoch_tracker.dir/all: CMakeFiles/wave.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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/REAPER/build/CMakeFiles 13
149
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/epoch_tracker.dir/all
150
- $(CMAKE_COMMAND) -E cmake_progress_start /workspace/NeuCoSVC/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/core.dir/all
167
- CMakeFiles/reaper.dir/all: CMakeFiles/epoch_tracker.dir/all
168
- CMakeFiles/reaper.dir/all: CMakeFiles/wave.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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/REAPER/build/CMakeFiles 15
177
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/reaper.dir/all
178
- $(CMAKE_COMMAND) -E cmake_progress_start /workspace/NeuCoSVC/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 DELETED
@@ -1,6 +0,0 @@
1
- /workspace/NeuCoSVC/REAPER/build/CMakeFiles/core.dir
2
- /workspace/NeuCoSVC/REAPER/build/CMakeFiles/wave.dir
3
- /workspace/NeuCoSVC/REAPER/build/CMakeFiles/epoch_tracker.dir
4
- /workspace/NeuCoSVC/REAPER/build/CMakeFiles/reaper.dir
5
- /workspace/NeuCoSVC/REAPER/build/CMakeFiles/edit_cache.dir
6
- /workspace/NeuCoSVC/REAPER/build/CMakeFiles/rebuild_cache.dir
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/cmake.check_cache DELETED
@@ -1 +0,0 @@
1
- # This file is generated by cmake for dependency checking of the CMakeCache.txt file
 
 
REAPER/build/CMakeFiles/core.dir/DependInfo.cmake DELETED
@@ -1,25 +0,0 @@
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
- "/workspace/NeuCoSVC/REAPER/core/file_resource.cc" "CMakeFiles/core.dir/core/file_resource.cc.o" "gcc" "CMakeFiles/core.dir/core/file_resource.cc.o.d"
12
- "/workspace/NeuCoSVC/REAPER/core/float_matrix.cc" "CMakeFiles/core.dir/core/float_matrix.cc.o" "gcc" "CMakeFiles/core.dir/core/float_matrix.cc.o.d"
13
- "/workspace/NeuCoSVC/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
- # Targets to which this target links which contain Fortran sources.
21
- set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
22
- )
23
-
24
- # Fortran module output directory.
25
- set(CMAKE_Fortran_TARGET_MODULE_DIR "")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/core.dir/build.make DELETED
@@ -1,143 +0,0 @@
1
- # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.28
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 = /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake
48
-
49
- # The command to remove a file.
50
- RM = /opt/conda/lib/python3.10/site-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 = /workspace/NeuCoSVC/REAPER
57
-
58
- # The top-level build directory on which CMake was run.
59
- CMAKE_BINARY_DIR = /workspace/NeuCoSVC/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: /workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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: /workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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: /workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/REAPER/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /workspace/NeuCoSVC/REAPER /workspace/NeuCoSVC/REAPER /workspace/NeuCoSVC/REAPER/build /workspace/NeuCoSVC/REAPER/build /workspace/NeuCoSVC/REAPER/build/CMakeFiles/core.dir/DependInfo.cmake "--color=$(COLOR)"
142
- .PHONY : CMakeFiles/core.dir/depend
143
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/core.dir/cmake_clean.cmake DELETED
@@ -1,15 +0,0 @@
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 DELETED
@@ -1,3 +0,0 @@
1
- file(REMOVE_RECURSE
2
- "libcore.a"
3
- )
 
 
 
 
REAPER/build/CMakeFiles/core.dir/compiler_depend.make DELETED
@@ -1,2 +0,0 @@
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 DELETED
@@ -1,2 +0,0 @@
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 DELETED
Binary file (3.58 kB)
 
REAPER/build/CMakeFiles/core.dir/core/file_resource.cc.o.d DELETED
@@ -1,124 +0,0 @@
1
- CMakeFiles/core.dir/core/file_resource.cc.o: \
2
- /workspace/NeuCoSVC/REAPER/core/file_resource.cc \
3
- /usr/include/stdc-predef.h \
4
- /workspace/NeuCoSVC/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/x86_64-linux-gnu/sys/cdefs.h \
7
- /usr/include/x86_64-linux-gnu/bits/wordsize.h \
8
- /usr/include/x86_64-linux-gnu/bits/long-double.h \
9
- /usr/include/x86_64-linux-gnu/gnu/stubs.h \
10
- /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
11
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
12
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
13
- /usr/include/x86_64-linux-gnu/bits/types.h \
14
- /usr/include/x86_64-linux-gnu/bits/timesize.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/types/__fpos_t.h \
18
- /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
19
- /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
20
- /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
21
- /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
22
- /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
23
- /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
24
- /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
25
- /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
26
- /usr/include/c++/9/string \
27
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++config.h \
28
- /usr/include/x86_64-linux-gnu/c++/9/bits/os_defines.h \
29
- /usr/include/x86_64-linux-gnu/c++/9/bits/cpu_defines.h \
30
- /usr/include/c++/9/bits/stringfwd.h /usr/include/c++/9/bits/memoryfwd.h \
31
- /usr/include/c++/9/bits/char_traits.h \
32
- /usr/include/c++/9/bits/stl_algobase.h \
33
- /usr/include/c++/9/bits/functexcept.h \
34
- /usr/include/c++/9/bits/exception_defines.h \
35
- /usr/include/c++/9/bits/cpp_type_traits.h \
36
- /usr/include/c++/9/ext/type_traits.h \
37
- /usr/include/c++/9/ext/numeric_traits.h \
38
- /usr/include/c++/9/bits/stl_pair.h /usr/include/c++/9/bits/move.h \
39
- /usr/include/c++/9/bits/concept_check.h /usr/include/c++/9/type_traits \
40
- /usr/include/c++/9/bits/stl_iterator_base_types.h \
41
- /usr/include/c++/9/bits/stl_iterator_base_funcs.h \
42
- /usr/include/c++/9/debug/assertions.h \
43
- /usr/include/c++/9/bits/stl_iterator.h \
44
- /usr/include/c++/9/bits/ptr_traits.h /usr/include/c++/9/debug/debug.h \
45
- /usr/include/c++/9/bits/predefined_ops.h \
46
- /usr/include/c++/9/bits/postypes.h /usr/include/c++/9/cwchar \
47
- /usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \
48
- /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
49
- /usr/include/x86_64-linux-gnu/bits/wchar.h \
50
- /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
51
- /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.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++/9/cstdint \
55
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
56
- /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
57
- /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
58
- /usr/include/c++/9/bits/allocator.h \
59
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++allocator.h \
60
- /usr/include/c++/9/ext/new_allocator.h /usr/include/c++/9/new \
61
- /usr/include/c++/9/exception /usr/include/c++/9/bits/exception.h \
62
- /usr/include/c++/9/bits/exception_ptr.h \
63
- /usr/include/c++/9/bits/cxxabi_init_exception.h \
64
- /usr/include/c++/9/typeinfo /usr/include/c++/9/bits/hash_bytes.h \
65
- /usr/include/c++/9/bits/nested_exception.h \
66
- /usr/include/c++/9/bits/localefwd.h \
67
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++locale.h \
68
- /usr/include/c++/9/clocale /usr/include/locale.h \
69
- /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/9/iosfwd \
70
- /usr/include/c++/9/cctype /usr/include/ctype.h \
71
- /usr/include/x86_64-linux-gnu/bits/endian.h \
72
- /usr/include/x86_64-linux-gnu/bits/endianness.h \
73
- /usr/include/c++/9/bits/ostream_insert.h \
74
- /usr/include/c++/9/bits/cxxabi_forced.h \
75
- /usr/include/c++/9/bits/stl_function.h \
76
- /usr/include/c++/9/backward/binders.h \
77
- /usr/include/c++/9/bits/range_access.h \
78
- /usr/include/c++/9/initializer_list \
79
- /usr/include/c++/9/bits/basic_string.h \
80
- /usr/include/c++/9/ext/atomicity.h \
81
- /usr/include/x86_64-linux-gnu/c++/9/bits/gthr.h \
82
- /usr/include/x86_64-linux-gnu/c++/9/bits/gthr-default.h \
83
- /usr/include/pthread.h /usr/include/sched.h \
84
- /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
85
- /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.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/struct_mutex.h \
101
- /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
102
- /usr/include/x86_64-linux-gnu/bits/setjmp.h \
103
- /usr/include/x86_64-linux-gnu/c++/9/bits/atomic_word.h \
104
- /usr/include/c++/9/ext/alloc_traits.h \
105
- /usr/include/c++/9/bits/alloc_traits.h \
106
- /usr/include/c++/9/ext/string_conversions.h /usr/include/c++/9/cstdlib \
107
- /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
108
- /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
109
- /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \
110
- /usr/include/x86_64-linux-gnu/bits/byteswap.h \
111
- /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
112
- /usr/include/x86_64-linux-gnu/sys/select.h \
113
- /usr/include/x86_64-linux-gnu/bits/select.h \
114
- /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
115
- /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
116
- /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
117
- /usr/include/c++/9/bits/std_abs.h /usr/include/c++/9/cstdio \
118
- /usr/include/c++/9/cerrno /usr/include/errno.h \
119
- /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
120
- /usr/include/x86_64-linux-gnu/asm/errno.h \
121
- /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
122
- /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
123
- /usr/include/c++/9/bits/functional_hash.h \
124
- /usr/include/c++/9/bits/basic_string.tcc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/core.dir/core/float_matrix.cc.o DELETED
Binary file (3.72 kB)
 
REAPER/build/CMakeFiles/core.dir/core/float_matrix.cc.o.d DELETED
@@ -1,125 +0,0 @@
1
- CMakeFiles/core.dir/core/float_matrix.cc.o: \
2
- /workspace/NeuCoSVC/REAPER/core/float_matrix.cc \
3
- /usr/include/stdc-predef.h \
4
- /workspace/NeuCoSVC/REAPER/./core/float_matrix.h \
5
- /usr/lib/gcc/x86_64-linux-gnu/9/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/x86_64-linux-gnu/sys/cdefs.h \
8
- /usr/include/x86_64-linux-gnu/bits/wordsize.h \
9
- /usr/include/x86_64-linux-gnu/bits/long-double.h \
10
- /usr/include/x86_64-linux-gnu/gnu/stubs.h \
11
- /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
12
- /usr/include/x86_64-linux-gnu/bits/types.h \
13
- /usr/include/x86_64-linux-gnu/bits/timesize.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++/9/string \
20
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++config.h \
21
- /usr/include/x86_64-linux-gnu/c++/9/bits/os_defines.h \
22
- /usr/include/x86_64-linux-gnu/c++/9/bits/cpu_defines.h \
23
- /usr/include/c++/9/bits/stringfwd.h /usr/include/c++/9/bits/memoryfwd.h \
24
- /usr/include/c++/9/bits/char_traits.h \
25
- /usr/include/c++/9/bits/stl_algobase.h \
26
- /usr/include/c++/9/bits/functexcept.h \
27
- /usr/include/c++/9/bits/exception_defines.h \
28
- /usr/include/c++/9/bits/cpp_type_traits.h \
29
- /usr/include/c++/9/ext/type_traits.h \
30
- /usr/include/c++/9/ext/numeric_traits.h \
31
- /usr/include/c++/9/bits/stl_pair.h /usr/include/c++/9/bits/move.h \
32
- /usr/include/c++/9/bits/concept_check.h /usr/include/c++/9/type_traits \
33
- /usr/include/c++/9/bits/stl_iterator_base_types.h \
34
- /usr/include/c++/9/bits/stl_iterator_base_funcs.h \
35
- /usr/include/c++/9/debug/assertions.h \
36
- /usr/include/c++/9/bits/stl_iterator.h \
37
- /usr/include/c++/9/bits/ptr_traits.h /usr/include/c++/9/debug/debug.h \
38
- /usr/include/c++/9/bits/predefined_ops.h \
39
- /usr/include/c++/9/bits/postypes.h /usr/include/c++/9/cwchar \
40
- /usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \
41
- /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
42
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
43
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
44
- /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
45
- /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
46
- /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
47
- /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
48
- /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
49
- /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
50
- /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
51
- /usr/include/c++/9/cstdint /usr/include/c++/9/bits/allocator.h \
52
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++allocator.h \
53
- /usr/include/c++/9/ext/new_allocator.h /usr/include/c++/9/new \
54
- /usr/include/c++/9/exception /usr/include/c++/9/bits/exception.h \
55
- /usr/include/c++/9/bits/exception_ptr.h \
56
- /usr/include/c++/9/bits/cxxabi_init_exception.h \
57
- /usr/include/c++/9/typeinfo /usr/include/c++/9/bits/hash_bytes.h \
58
- /usr/include/c++/9/bits/nested_exception.h \
59
- /usr/include/c++/9/bits/localefwd.h \
60
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++locale.h \
61
- /usr/include/c++/9/clocale /usr/include/locale.h \
62
- /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/9/iosfwd \
63
- /usr/include/c++/9/cctype /usr/include/ctype.h \
64
- /usr/include/x86_64-linux-gnu/bits/endian.h \
65
- /usr/include/x86_64-linux-gnu/bits/endianness.h \
66
- /usr/include/c++/9/bits/ostream_insert.h \
67
- /usr/include/c++/9/bits/cxxabi_forced.h \
68
- /usr/include/c++/9/bits/stl_function.h \
69
- /usr/include/c++/9/backward/binders.h \
70
- /usr/include/c++/9/bits/range_access.h \
71
- /usr/include/c++/9/initializer_list \
72
- /usr/include/c++/9/bits/basic_string.h \
73
- /usr/include/c++/9/ext/atomicity.h \
74
- /usr/include/x86_64-linux-gnu/c++/9/bits/gthr.h \
75
- /usr/include/x86_64-linux-gnu/c++/9/bits/gthr-default.h \
76
- /usr/include/pthread.h /usr/include/sched.h \
77
- /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
78
- /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
79
- /usr/include/x86_64-linux-gnu/bits/sched.h \
80
- /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
81
- /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
82
- /usr/include/x86_64-linux-gnu/bits/time.h \
83
- /usr/include/x86_64-linux-gnu/bits/timex.h \
84
- /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
85
- /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
86
- /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
87
- /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
88
- /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
89
- /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
90
- /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
91
- /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
92
- /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.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/c++/9/bits/atomic_word.h \
97
- /usr/include/c++/9/ext/alloc_traits.h \
98
- /usr/include/c++/9/bits/alloc_traits.h \
99
- /usr/include/c++/9/ext/string_conversions.h /usr/include/c++/9/cstdlib \
100
- /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
101
- /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
102
- /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \
103
- /usr/include/x86_64-linux-gnu/bits/byteswap.h \
104
- /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
105
- /usr/include/x86_64-linux-gnu/sys/select.h \
106
- /usr/include/x86_64-linux-gnu/bits/select.h \
107
- /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
108
- /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
109
- /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
110
- /usr/include/c++/9/bits/std_abs.h /usr/include/c++/9/cstdio \
111
- /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
112
- /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
113
- /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
114
- /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
115
- /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
116
- /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
117
- /usr/include/c++/9/cerrno /usr/include/errno.h \
118
- /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
119
- /usr/include/x86_64-linux-gnu/asm/errno.h \
120
- /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
121
- /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
122
- /usr/include/c++/9/bits/functional_hash.h \
123
- /usr/include/c++/9/bits/basic_string.tcc \
124
- /workspace/NeuCoSVC/REAPER/./core/float_matrix-inl.h \
125
- /usr/include/string.h /usr/include/strings.h
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/core.dir/core/track.cc.o DELETED
Binary file (147 kB)
 
REAPER/build/CMakeFiles/core.dir/core/track.cc.o.d DELETED
@@ -1,156 +0,0 @@
1
- CMakeFiles/core.dir/core/track.cc.o: \
2
- /workspace/NeuCoSVC/REAPER/core/track.cc /usr/include/stdc-predef.h \
3
- /workspace/NeuCoSVC/REAPER/./core/track.h \
4
- /usr/lib/gcc/x86_64-linux-gnu/9/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/x86_64-linux-gnu/sys/cdefs.h \
7
- /usr/include/x86_64-linux-gnu/bits/wordsize.h \
8
- /usr/include/x86_64-linux-gnu/bits/long-double.h \
9
- /usr/include/x86_64-linux-gnu/gnu/stubs.h \
10
- /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
11
- /usr/include/x86_64-linux-gnu/bits/types.h \
12
- /usr/include/x86_64-linux-gnu/bits/timesize.h \
13
- /usr/include/x86_64-linux-gnu/bits/typesizes.h \
14
- /usr/include/x86_64-linux-gnu/bits/time64.h \
15
- /usr/include/x86_64-linux-gnu/bits/wchar.h \
16
- /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
17
- /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
18
- /usr/include/c++/9/string \
19
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++config.h \
20
- /usr/include/x86_64-linux-gnu/c++/9/bits/os_defines.h \
21
- /usr/include/x86_64-linux-gnu/c++/9/bits/cpu_defines.h \
22
- /usr/include/c++/9/bits/stringfwd.h /usr/include/c++/9/bits/memoryfwd.h \
23
- /usr/include/c++/9/bits/char_traits.h \
24
- /usr/include/c++/9/bits/stl_algobase.h \
25
- /usr/include/c++/9/bits/functexcept.h \
26
- /usr/include/c++/9/bits/exception_defines.h \
27
- /usr/include/c++/9/bits/cpp_type_traits.h \
28
- /usr/include/c++/9/ext/type_traits.h \
29
- /usr/include/c++/9/ext/numeric_traits.h \
30
- /usr/include/c++/9/bits/stl_pair.h /usr/include/c++/9/bits/move.h \
31
- /usr/include/c++/9/bits/concept_check.h /usr/include/c++/9/type_traits \
32
- /usr/include/c++/9/bits/stl_iterator_base_types.h \
33
- /usr/include/c++/9/bits/stl_iterator_base_funcs.h \
34
- /usr/include/c++/9/debug/assertions.h \
35
- /usr/include/c++/9/bits/stl_iterator.h \
36
- /usr/include/c++/9/bits/ptr_traits.h /usr/include/c++/9/debug/debug.h \
37
- /usr/include/c++/9/bits/predefined_ops.h \
38
- /usr/include/c++/9/bits/postypes.h /usr/include/c++/9/cwchar \
39
- /usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \
40
- /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
41
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
42
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
43
- /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
44
- /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
45
- /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
46
- /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
47
- /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
48
- /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
49
- /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
50
- /usr/include/c++/9/cstdint /usr/include/c++/9/bits/allocator.h \
51
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++allocator.h \
52
- /usr/include/c++/9/ext/new_allocator.h /usr/include/c++/9/new \
53
- /usr/include/c++/9/exception /usr/include/c++/9/bits/exception.h \
54
- /usr/include/c++/9/bits/exception_ptr.h \
55
- /usr/include/c++/9/bits/cxxabi_init_exception.h \
56
- /usr/include/c++/9/typeinfo /usr/include/c++/9/bits/hash_bytes.h \
57
- /usr/include/c++/9/bits/nested_exception.h \
58
- /usr/include/c++/9/bits/localefwd.h \
59
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++locale.h \
60
- /usr/include/c++/9/clocale /usr/include/locale.h \
61
- /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/9/iosfwd \
62
- /usr/include/c++/9/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++/9/bits/ostream_insert.h \
66
- /usr/include/c++/9/bits/cxxabi_forced.h \
67
- /usr/include/c++/9/bits/stl_function.h \
68
- /usr/include/c++/9/backward/binders.h \
69
- /usr/include/c++/9/bits/range_access.h \
70
- /usr/include/c++/9/initializer_list \
71
- /usr/include/c++/9/bits/basic_string.h \
72
- /usr/include/c++/9/ext/atomicity.h \
73
- /usr/include/x86_64-linux-gnu/c++/9/bits/gthr.h \
74
- /usr/include/x86_64-linux-gnu/c++/9/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/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/c++/9/bits/atomic_word.h \
96
- /usr/include/c++/9/ext/alloc_traits.h \
97
- /usr/include/c++/9/bits/alloc_traits.h \
98
- /usr/include/c++/9/ext/string_conversions.h /usr/include/c++/9/cstdlib \
99
- /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
100
- /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
101
- /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \
102
- /usr/include/x86_64-linux-gnu/bits/byteswap.h \
103
- /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
104
- /usr/include/x86_64-linux-gnu/sys/select.h \
105
- /usr/include/x86_64-linux-gnu/bits/select.h \
106
- /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
107
- /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
108
- /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
109
- /usr/include/c++/9/bits/std_abs.h /usr/include/c++/9/cstdio \
110
- /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
111
- /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
112
- /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
113
- /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
114
- /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
115
- /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
116
- /usr/include/c++/9/cerrno /usr/include/errno.h \
117
- /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
118
- /usr/include/x86_64-linux-gnu/asm/errno.h \
119
- /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
120
- /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
121
- /usr/include/c++/9/bits/functional_hash.h \
122
- /usr/include/c++/9/bits/basic_string.tcc /usr/include/c++/9/vector \
123
- /usr/include/c++/9/bits/stl_construct.h \
124
- /usr/include/c++/9/bits/stl_uninitialized.h \
125
- /usr/include/c++/9/bits/stl_vector.h \
126
- /usr/include/c++/9/bits/stl_bvector.h /usr/include/c++/9/bits/vector.tcc \
127
- /workspace/NeuCoSVC/REAPER/./core/file_resource.h \
128
- /workspace/NeuCoSVC/REAPER/./core/float_matrix.h \
129
- /workspace/NeuCoSVC/REAPER/./core/float_matrix-inl.h \
130
- /usr/include/c++/9/math.h /usr/include/c++/9/cmath /usr/include/math.h \
131
- /usr/include/x86_64-linux-gnu/bits/math-vector.h \
132
- /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
133
- /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
134
- /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
135
- /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
136
- /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
137
- /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
138
- /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
139
- /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
140
- /usr/include/c++/9/memory /usr/include/c++/9/bits/stl_tempbuf.h \
141
- /usr/include/c++/9/bits/stl_raw_storage_iter.h \
142
- /usr/include/c++/9/ext/concurrence.h \
143
- /usr/include/c++/9/bits/uses_allocator.h \
144
- /usr/include/c++/9/bits/unique_ptr.h /usr/include/c++/9/utility \
145
- /usr/include/c++/9/bits/stl_relops.h /usr/include/c++/9/tuple \
146
- /usr/include/c++/9/array /usr/include/c++/9/stdexcept \
147
- /usr/include/c++/9/bits/invoke.h /usr/include/c++/9/bits/shared_ptr.h \
148
- /usr/include/c++/9/bits/shared_ptr_base.h \
149
- /usr/include/c++/9/bits/allocated_ptr.h \
150
- /usr/include/c++/9/bits/refwrap.h \
151
- /usr/include/c++/9/ext/aligned_buffer.h \
152
- /usr/include/c++/9/bits/shared_ptr_atomic.h \
153
- /usr/include/c++/9/bits/atomic_base.h \
154
- /usr/include/c++/9/bits/atomic_lockfree_defines.h \
155
- /usr/include/c++/9/backward/auto_ptr.h /usr/include/c++/9/stdlib.h \
156
- /usr/include/inttypes.h
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/core.dir/depend.make DELETED
@@ -1,2 +0,0 @@
1
- # Empty dependencies file for core.
2
- # This may be replaced when dependencies are built.
 
 
 
REAPER/build/CMakeFiles/core.dir/flags.make DELETED
@@ -1,10 +0,0 @@
1
- # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.28
3
-
4
- # compile CXX with /usr/bin/c++
5
- CXX_DEFINES =
6
-
7
- CXX_INCLUDES = -I/workspace/NeuCoSVC/REAPER/.
8
-
9
- CXX_FLAGS = -std=c++11
10
-
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/core.dir/link.txt DELETED
@@ -1,2 +0,0 @@
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 DELETED
@@ -1,5 +0,0 @@
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 DELETED
@@ -1,26 +0,0 @@
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
- "/workspace/NeuCoSVC/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
- "/workspace/NeuCoSVC/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
- "/workspace/NeuCoSVC/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
- "/workspace/NeuCoSVC/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
- # Targets to which this target links which contain Fortran sources.
22
- set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
23
- )
24
-
25
- # Fortran module output directory.
26
- set(CMAKE_Fortran_TARGET_MODULE_DIR "")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/epoch_tracker.dir/build.make DELETED
@@ -1,159 +0,0 @@
1
- # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.28
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 = /opt/conda/lib/python3.10/site-packages/cmake/data/bin/cmake
48
-
49
- # The command to remove a file.
50
- RM = /opt/conda/lib/python3.10/site-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 = /workspace/NeuCoSVC/REAPER
57
-
58
- # The top-level build directory on which CMake was run.
59
- CMAKE_BINARY_DIR = /workspace/NeuCoSVC/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: /workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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: /workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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: /workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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: /workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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 /workspace/NeuCoSVC/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=/workspace/NeuCoSVC/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 /workspace/NeuCoSVC/REAPER/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /workspace/NeuCoSVC/REAPER /workspace/NeuCoSVC/REAPER /workspace/NeuCoSVC/REAPER/build /workspace/NeuCoSVC/REAPER/build /workspace/NeuCoSVC/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 DELETED
@@ -1,17 +0,0 @@
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 DELETED
@@ -1,3 +0,0 @@
1
- file(REMOVE_RECURSE
2
- "libepoch_tracker.a"
3
- )
 
 
 
 
REAPER/build/CMakeFiles/epoch_tracker.dir/compiler_depend.make DELETED
@@ -1,2 +0,0 @@
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 DELETED
@@ -1,2 +0,0 @@
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 DELETED
@@ -1,2 +0,0 @@
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 DELETED
Binary file (375 kB)
 
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o.d DELETED
@@ -1,156 +0,0 @@
1
- CMakeFiles/epoch_tracker.dir/epoch_tracker/epoch_tracker.cc.o: \
2
- /workspace/NeuCoSVC/REAPER/epoch_tracker/epoch_tracker.cc \
3
- /usr/include/stdc-predef.h \
4
- /workspace/NeuCoSVC/REAPER/./epoch_tracker/epoch_tracker.h \
5
- /usr/include/c++/9/memory /usr/include/c++/9/bits/stl_algobase.h \
6
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++config.h \
7
- /usr/include/x86_64-linux-gnu/c++/9/bits/os_defines.h \
8
- /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
9
- /usr/include/x86_64-linux-gnu/bits/wordsize.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/c++/9/bits/cpu_defines.h \
14
- /usr/include/c++/9/bits/functexcept.h \
15
- /usr/include/c++/9/bits/exception_defines.h \
16
- /usr/include/c++/9/bits/cpp_type_traits.h \
17
- /usr/include/c++/9/ext/type_traits.h \
18
- /usr/include/c++/9/ext/numeric_traits.h \
19
- /usr/include/c++/9/bits/stl_pair.h /usr/include/c++/9/bits/move.h \
20
- /usr/include/c++/9/bits/concept_check.h /usr/include/c++/9/type_traits \
21
- /usr/include/c++/9/bits/stl_iterator_base_types.h \
22
- /usr/include/c++/9/bits/stl_iterator_base_funcs.h \
23
- /usr/include/c++/9/debug/assertions.h \
24
- /usr/include/c++/9/bits/stl_iterator.h \
25
- /usr/include/c++/9/bits/ptr_traits.h /usr/include/c++/9/debug/debug.h \
26
- /usr/include/c++/9/bits/predefined_ops.h \
27
- /usr/include/c++/9/bits/allocator.h \
28
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++allocator.h \
29
- /usr/include/c++/9/ext/new_allocator.h /usr/include/c++/9/new \
30
- /usr/include/c++/9/exception /usr/include/c++/9/bits/exception.h \
31
- /usr/include/c++/9/bits/exception_ptr.h \
32
- /usr/include/c++/9/bits/cxxabi_init_exception.h \
33
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
34
- /usr/include/c++/9/typeinfo /usr/include/c++/9/bits/hash_bytes.h \
35
- /usr/include/c++/9/bits/nested_exception.h \
36
- /usr/include/c++/9/bits/memoryfwd.h \
37
- /usr/include/c++/9/bits/stl_construct.h \
38
- /usr/include/c++/9/ext/alloc_traits.h \
39
- /usr/include/c++/9/bits/alloc_traits.h \
40
- /usr/include/c++/9/bits/stl_uninitialized.h \
41
- /usr/include/c++/9/bits/stl_tempbuf.h \
42
- /usr/include/c++/9/bits/stl_raw_storage_iter.h /usr/include/c++/9/iosfwd \
43
- /usr/include/c++/9/bits/stringfwd.h /usr/include/c++/9/bits/postypes.h \
44
- /usr/include/c++/9/cwchar /usr/include/wchar.h \
45
- /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
46
- /usr/include/x86_64-linux-gnu/bits/floatn.h \
47
- /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
48
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
49
- /usr/include/x86_64-linux-gnu/bits/wchar.h \
50
- /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
51
- /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
52
- /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
53
- /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
54
- /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
55
- /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
56
- /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
57
- /usr/include/c++/9/ext/atomicity.h \
58
- /usr/include/x86_64-linux-gnu/c++/9/bits/gthr.h \
59
- /usr/include/x86_64-linux-gnu/c++/9/bits/gthr-default.h \
60
- /usr/include/pthread.h /usr/include/sched.h \
61
- /usr/include/x86_64-linux-gnu/bits/types.h \
62
- /usr/include/x86_64-linux-gnu/bits/timesize.h \
63
- /usr/include/x86_64-linux-gnu/bits/typesizes.h \
64
- /usr/include/x86_64-linux-gnu/bits/time64.h \
65
- /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
66
- /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
67
- /usr/include/x86_64-linux-gnu/bits/endian.h \
68
- /usr/include/x86_64-linux-gnu/bits/endianness.h \
69
- /usr/include/x86_64-linux-gnu/bits/sched.h \
70
- /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
71
- /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
72
- /usr/include/x86_64-linux-gnu/bits/time.h \
73
- /usr/include/x86_64-linux-gnu/bits/timex.h \
74
- /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
75
- /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
76
- /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
77
- /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
78
- /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
79
- /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
80
- /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
81
- /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
82
- /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
83
- /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
84
- /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
85
- /usr/include/x86_64-linux-gnu/bits/setjmp.h \
86
- /usr/include/x86_64-linux-gnu/c++/9/bits/atomic_word.h \
87
- /usr/include/c++/9/ext/concurrence.h \
88
- /usr/include/c++/9/bits/stl_function.h \
89
- /usr/include/c++/9/backward/binders.h \
90
- /usr/include/c++/9/bits/uses_allocator.h \
91
- /usr/include/c++/9/bits/unique_ptr.h /usr/include/c++/9/utility \
92
- /usr/include/c++/9/bits/stl_relops.h /usr/include/c++/9/initializer_list \
93
- /usr/include/c++/9/tuple /usr/include/c++/9/array \
94
- /usr/include/c++/9/stdexcept /usr/include/c++/9/string \
95
- /usr/include/c++/9/bits/char_traits.h /usr/include/c++/9/cstdint \
96
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
97
- /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
98
- /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
99
- /usr/include/c++/9/bits/localefwd.h \
100
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++locale.h \
101
- /usr/include/c++/9/clocale /usr/include/locale.h \
102
- /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/9/cctype \
103
- /usr/include/ctype.h /usr/include/c++/9/bits/ostream_insert.h \
104
- /usr/include/c++/9/bits/cxxabi_forced.h \
105
- /usr/include/c++/9/bits/range_access.h \
106
- /usr/include/c++/9/bits/basic_string.h \
107
- /usr/include/c++/9/ext/string_conversions.h /usr/include/c++/9/cstdlib \
108
- /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
109
- /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
110
- /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \
111
- /usr/include/x86_64-linux-gnu/bits/byteswap.h \
112
- /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
113
- /usr/include/x86_64-linux-gnu/sys/select.h \
114
- /usr/include/x86_64-linux-gnu/bits/select.h \
115
- /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
116
- /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
117
- /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
118
- /usr/include/c++/9/bits/std_abs.h /usr/include/c++/9/cstdio \
119
- /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
120
- /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
121
- /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
122
- /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
123
- /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
124
- /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
125
- /usr/include/c++/9/cerrno /usr/include/errno.h \
126
- /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
127
- /usr/include/x86_64-linux-gnu/asm/errno.h \
128
- /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
129
- /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
130
- /usr/include/c++/9/bits/functional_hash.h \
131
- /usr/include/c++/9/bits/basic_string.tcc \
132
- /usr/include/c++/9/bits/invoke.h /usr/include/c++/9/bits/shared_ptr.h \
133
- /usr/include/c++/9/bits/shared_ptr_base.h \
134
- /usr/include/c++/9/bits/allocated_ptr.h \
135
- /usr/include/c++/9/bits/refwrap.h \
136
- /usr/include/c++/9/ext/aligned_buffer.h \
137
- /usr/include/c++/9/bits/shared_ptr_atomic.h \
138
- /usr/include/c++/9/bits/atomic_base.h \
139
- /usr/include/c++/9/bits/atomic_lockfree_defines.h \
140
- /usr/include/c++/9/backward/auto_ptr.h /usr/include/c++/9/vector \
141
- /usr/include/c++/9/bits/stl_vector.h \
142
- /usr/include/c++/9/bits/stl_bvector.h /usr/include/c++/9/bits/vector.tcc \
143
- /workspace/NeuCoSVC/REAPER/./epoch_tracker/fd_filter.h \
144
- /workspace/NeuCoSVC/REAPER/./epoch_tracker/lpc_analyzer.h \
145
- /workspace/NeuCoSVC/REAPER/./epoch_tracker/fft.h \
146
- /usr/include/c++/9/math.h /usr/include/c++/9/cmath /usr/include/math.h \
147
- /usr/include/x86_64-linux-gnu/bits/math-vector.h \
148
- /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
149
- /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
150
- /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
151
- /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
152
- /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
153
- /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
154
- /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
155
- /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
156
- /usr/include/c++/9/stdlib.h
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o DELETED
Binary file (19.7 kB)
 
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o.d DELETED
@@ -1,75 +0,0 @@
1
- CMakeFiles/epoch_tracker.dir/epoch_tracker/fd_filter.cc.o: \
2
- /workspace/NeuCoSVC/REAPER/epoch_tracker/fd_filter.cc \
3
- /usr/include/stdc-predef.h \
4
- /workspace/NeuCoSVC/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/x86_64-linux-gnu/sys/cdefs.h \
8
- /usr/include/x86_64-linux-gnu/bits/wordsize.h \
9
- /usr/include/x86_64-linux-gnu/bits/long-double.h \
10
- /usr/include/x86_64-linux-gnu/gnu/stubs.h \
11
- /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
12
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
13
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
14
- /usr/include/x86_64-linux-gnu/bits/types.h \
15
- /usr/include/x86_64-linux-gnu/bits/timesize.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/sys_errlist.h \
27
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
28
- /usr/include/x86_64-linux-gnu/bits/wchar.h \
29
- /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
30
- /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
31
- /usr/include/c++/9/math.h /usr/include/c++/9/cmath \
32
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++config.h \
33
- /usr/include/x86_64-linux-gnu/c++/9/bits/os_defines.h \
34
- /usr/include/x86_64-linux-gnu/c++/9/bits/cpu_defines.h \
35
- /usr/include/c++/9/bits/cpp_type_traits.h \
36
- /usr/include/c++/9/ext/type_traits.h /usr/include/math.h \
37
- /usr/include/x86_64-linux-gnu/bits/math-vector.h \
38
- /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
39
- /usr/include/x86_64-linux-gnu/bits/floatn.h \
40
- /usr/include/x86_64-linux-gnu/bits/floatn-common.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++/9/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/struct_mutex.h \
72
- /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
73
- /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
74
- /workspace/NeuCoSVC/REAPER/./epoch_tracker/fft.h \
75
- /usr/include/c++/9/stdlib.h /usr/include/c++/9/cstdlib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o DELETED
Binary file (6.34 kB)
 
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o.d DELETED
@@ -1,70 +0,0 @@
1
- CMakeFiles/epoch_tracker.dir/epoch_tracker/fft.cc.o: \
2
- /workspace/NeuCoSVC/REAPER/epoch_tracker/fft.cc \
3
- /usr/include/stdc-predef.h \
4
- /workspace/NeuCoSVC/REAPER/./epoch_tracker/fft.h \
5
- /usr/include/c++/9/math.h /usr/include/c++/9/cmath \
6
- /usr/include/x86_64-linux-gnu/c++/9/bits/c++config.h \
7
- /usr/include/x86_64-linux-gnu/c++/9/bits/os_defines.h \
8
- /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
9
- /usr/include/x86_64-linux-gnu/bits/wordsize.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/c++/9/bits/cpu_defines.h \
14
- /usr/include/c++/9/bits/cpp_type_traits.h \
15
- /usr/include/c++/9/ext/type_traits.h /usr/include/math.h \
16
- /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
17
- /usr/include/x86_64-linux-gnu/bits/types.h \
18
- /usr/include/x86_64-linux-gnu/bits/timesize.h \
19
- /usr/include/x86_64-linux-gnu/bits/typesizes.h \
20
- /usr/include/x86_64-linux-gnu/bits/time64.h \
21
- /usr/include/x86_64-linux-gnu/bits/math-vector.h \
22
- /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
23
- /usr/include/x86_64-linux-gnu/bits/floatn.h \
24
- /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
25
- /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
26
- /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
27
- /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
28
- /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
29
- /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
30
- /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
31
- /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
32
- /usr/include/c++/9/bits/std_abs.h /usr/include/stdlib.h \
33
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
34
- /usr/include/x86_64-linux-gnu/bits/waitflags.h \
35
- /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
36
- /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
37
- /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
38
- /usr/include/x86_64-linux-gnu/sys/types.h \
39
- /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
40
- /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
41
- /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
42
- /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
43
- /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
44
- /usr/include/x86_64-linux-gnu/bits/endian.h \
45
- /usr/include/x86_64-linux-gnu/bits/endianness.h \
46
- /usr/include/x86_64-linux-gnu/bits/byteswap.h \
47
- /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
48
- /usr/include/x86_64-linux-gnu/sys/select.h \
49
- /usr/include/x86_64-linux-gnu/bits/select.h \
50
- /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
51
- /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
52
- /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
53
- /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
54
- /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
55
- /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
56
- /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
57
- /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
58
- /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
59
- /usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/stdio.h \
60
- /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
61
- /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
62
- /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
63
- /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
64
- /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
65
- /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
66
- /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
67
- /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
68
- /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
69
- /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
70
- /usr/include/c++/9/stdlib.h /usr/include/c++/9/cstdlib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
REAPER/build/CMakeFiles/epoch_tracker.dir/epoch_tracker/lpc_analyzer.cc.o DELETED
Binary file (36 kB)