Compare commits
6 Commits
d17bf70260
...
8fdea465cb
| Author | SHA1 | Date | |
|---|---|---|---|
| 8fdea465cb | |||
| 524459ec04 | |||
| fd4bcdecfd | |||
| 83ad680cab | |||
| e9591d651e | |||
| 69673fdb02 |
75
ros2_ws/src/darknet_ros2/CMakeLists.txt
Normal file
75
ros2_ws/src/darknet_ros2/CMakeLists.txt
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.10)
|
||||||
|
project(openrobotics_darknet_ros)
|
||||||
|
|
||||||
|
# Default to C++14
|
||||||
|
if(NOT CMAKE_CXX_STANDARD)
|
||||||
|
set(CMAKE_CXX_STANDARD 14)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT WIN32)
|
||||||
|
add_compile_options(-Wall -Wextra -Wpedantic)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_package(ament_cmake REQUIRED)
|
||||||
|
find_package(cv_bridge REQUIRED)
|
||||||
|
find_package(darknet_vendor REQUIRED)
|
||||||
|
find_package(rclcpp REQUIRED)
|
||||||
|
find_package(rclcpp_components REQUIRED)
|
||||||
|
find_package(sensor_msgs REQUIRED)
|
||||||
|
find_package(vision_msgs REQUIRED)
|
||||||
|
|
||||||
|
add_library(openrobotics_darknet_ros SHARED
|
||||||
|
src/detector_network.cpp
|
||||||
|
src/parse.cpp)
|
||||||
|
target_include_directories(openrobotics_darknet_ros PUBLIC include)
|
||||||
|
target_compile_definitions(openrobotics_darknet_ros PRIVATE "DARKNET_ROS_BUILDING_DLL")
|
||||||
|
ament_target_dependencies(openrobotics_darknet_ros
|
||||||
|
cv_bridge
|
||||||
|
darknet_vendor
|
||||||
|
sensor_msgs
|
||||||
|
vision_msgs)
|
||||||
|
|
||||||
|
add_library(detector_node SHARED
|
||||||
|
src/detector_node.cpp)
|
||||||
|
target_compile_definitions(detector_node PRIVATE "DARKNET_ROS_NODE_BUILDING_DLL")
|
||||||
|
ament_target_dependencies(detector_node PUBLIC
|
||||||
|
"rclcpp"
|
||||||
|
"rclcpp_components")
|
||||||
|
target_link_libraries(detector_node PUBLIC openrobotics_darknet_ros)
|
||||||
|
rclcpp_components_register_nodes(detector_node "openrobotics::darknet_ros::DetectorNode")
|
||||||
|
|
||||||
|
add_executable(detector_node_main
|
||||||
|
src/detector_node_main.cpp)
|
||||||
|
target_link_libraries(detector_node_main detector_node)
|
||||||
|
set_target_properties(detector_node_main PROPERTIES OUTPUT_NAME "detector_node")
|
||||||
|
|
||||||
|
if(BUILD_TESTING)
|
||||||
|
find_package(ament_lint_auto REQUIRED)
|
||||||
|
ament_lint_auto_find_test_dependencies()
|
||||||
|
|
||||||
|
ament_add_gtest(test_parser test/test_parser.cpp
|
||||||
|
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/test/")
|
||||||
|
target_link_libraries(test_parser openrobotics_darknet_ros)
|
||||||
|
|
||||||
|
ament_add_gtest(test_detector_network test/test_detector_network.cpp)
|
||||||
|
target_link_libraries(test_detector_network openrobotics_darknet_ros)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
ament_export_libraries(openrobotics_darknet_ros)
|
||||||
|
|
||||||
|
install(TARGETS openrobotics_darknet_ros
|
||||||
|
ARCHIVE DESTINATION lib
|
||||||
|
LIBRARY DESTINATION lib
|
||||||
|
RUNTIME DESTINATION bin)
|
||||||
|
|
||||||
|
install(TARGETS detector_node
|
||||||
|
ARCHIVE DESTINATION lib
|
||||||
|
LIBRARY DESTINATION lib
|
||||||
|
RUNTIME DESTINATION bin)
|
||||||
|
|
||||||
|
install(TARGETS detector_node_main
|
||||||
|
DESTINATION lib/${PROJECT_NAME})
|
||||||
|
|
||||||
|
install(DIRECTORY include/ DESTINATION include)
|
||||||
|
|
||||||
|
ament_package()
|
||||||
18
ros2_ws/src/darknet_ros2/CONTRIBUTING.md
Normal file
18
ros2_ws/src/darknet_ros2/CONTRIBUTING.md
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
Any contribution that you make to this repository will
|
||||||
|
be under the Apache 2 License, as dictated by that
|
||||||
|
[license](http://www.apache.org/licenses/LICENSE-2.0.html):
|
||||||
|
|
||||||
|
~~~
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
~~~
|
||||||
|
|
||||||
|
Contributors must sign-off each commit by adding a `Signed-off-by: ...`
|
||||||
|
line to commit messages to certify that they have the right to submit
|
||||||
|
the code they are contributing to the project according to the
|
||||||
|
[Developer Certificate of Origin (DCO)](https://developercertificate.org/).
|
||||||
202
ros2_ws/src/darknet_ros2/LICENSE
Normal file
202
ros2_ws/src/darknet_ros2/LICENSE
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
|
||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
58
ros2_ws/src/darknet_ros2/README.md
Normal file
58
ros2_ws/src/darknet_ros2/README.md
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
# Open Robotics Darknet ROS
|
||||||
|
|
||||||
|
This is a ROS 2 wrapper around [darknet](https://pjreddie.com/darknet), an open source neural network framework.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## DetectorNode
|
||||||
|
|
||||||
|
This node can run object detectors like [YOLOv3](https://pjreddie.com/darknet/yolo/) on images.
|
||||||
|
|
||||||
|
### Subscribers
|
||||||
|
|
||||||
|
* `~/images` (type `sensor_msgs/msg/Image`) - Input mages to feed to the detector
|
||||||
|
|
||||||
|
### Publishers
|
||||||
|
|
||||||
|
* `~/detections` (type `vision_msgs/msg/Detection2DArray`) - Objects detected in an image (if any)
|
||||||
|
|
||||||
|
### Parameters
|
||||||
|
|
||||||
|
* `network.config` - a path to a file describing a darknet detector network
|
||||||
|
* `network.weights` - a path to a file with weights for the given network
|
||||||
|
* `network.class_names` - a path to a file with names of classes the network can detect (1 per line)
|
||||||
|
* `detection.threshold` - Minimum probability of a detection to be published
|
||||||
|
* `detection.nms_threshold` - Non-maximal Suppression threshold - controls filtering of overlapping boxes
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|
Download `YOLOv3-tiny`.
|
||||||
|
|
||||||
|
```
|
||||||
|
wget https://raw.githubusercontent.com/pjreddie/darknet/f86901f6177dfc6116360a13cc06ab680e0c86b0/cfg/yolov3-tiny.cfg
|
||||||
|
wget https://pjreddie.com/media/files/yolov3-tiny.weights
|
||||||
|
wget https://raw.githubusercontent.com/pjreddie/darknet/c6afc7ff1499fbbe64069e1843d7929bd7ae2eaa/data/coco.names
|
||||||
|
```
|
||||||
|
|
||||||
|
Save the following as `detector_node_params.yaml`
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
/**:
|
||||||
|
ros__parameters:
|
||||||
|
network:
|
||||||
|
config: "./yolov3-tiny.cfg"
|
||||||
|
weights: "./yolov3-tiny.weights"
|
||||||
|
class_names: "./coco.names"
|
||||||
|
detection:
|
||||||
|
threshold: 0.25
|
||||||
|
nms_threshold: 0.45
|
||||||
|
```
|
||||||
|
|
||||||
|
Then run the node.
|
||||||
|
|
||||||
|
```
|
||||||
|
ros2 run openrobotics_darknet_ros detector_node __params:=detector_node_params.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
The node is now running.
|
||||||
|
Publish images on `~/images` to get the node to detect objects.
|
||||||
BIN
ros2_ws/src/darknet_ros2/doc/example_darknet_yolov3-tiny.png
Normal file
BIN
ros2_ws/src/darknet_ros2/doc/example_darknet_yolov3-tiny.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 757 KiB |
@ -0,0 +1,72 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#ifndef OPENROBOTICS_DARKNET_ROS__DETECTOR_NETWORK_HPP_
|
||||||
|
#define OPENROBOTICS_DARKNET_ROS__DETECTOR_NETWORK_HPP_
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "openrobotics_darknet_ros/visibility.hpp"
|
||||||
|
#include "sensor_msgs/msg/image.hpp"
|
||||||
|
#include "vision_msgs/msg/detection2_d_array.hpp"
|
||||||
|
#include "vision_msgs/msg/object_hypothesis_with_pose.hpp"
|
||||||
|
|
||||||
|
namespace openrobotics
|
||||||
|
{
|
||||||
|
namespace darknet_ros
|
||||||
|
{
|
||||||
|
// Forward declaration
|
||||||
|
class DetectorNetworkPrivate;
|
||||||
|
|
||||||
|
class DetectorNetwork
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
/// \brief load a network from disk
|
||||||
|
/// \param[in] config_file Path to a file describing the network
|
||||||
|
/// \param[in] weights_file Path to a file containing the network's weights
|
||||||
|
/// \param[in] classes Ordered list of class names the network can predict
|
||||||
|
DARKNET_ROS_PUBLIC
|
||||||
|
DetectorNetwork(
|
||||||
|
const std::string & config_file,
|
||||||
|
const std::string & weights_file,
|
||||||
|
const std::vector<std::string> & classes);
|
||||||
|
|
||||||
|
DARKNET_ROS_PUBLIC
|
||||||
|
~DetectorNetwork();
|
||||||
|
|
||||||
|
/// \brief Detect objects in image
|
||||||
|
/// \param[in] image An image to analyze
|
||||||
|
/// \param[in] threshold How confident the network must be to detect something [0.0, 1.0]
|
||||||
|
/// \param[in] nms_threshold Non-Maximal Suppression threhsold [0.0, 1.0].
|
||||||
|
/// When the intersection over union (iou) of two bounding boxes is greater than nms_threshold,
|
||||||
|
/// the box with the lower objectness score is discarded.
|
||||||
|
/// \param[out] output_detections Things detected in the image (does not set source_img)
|
||||||
|
/// \return number of objects detected
|
||||||
|
DARKNET_ROS_PUBLIC
|
||||||
|
size_t
|
||||||
|
detect(
|
||||||
|
const sensor_msgs::msg::Image & image,
|
||||||
|
double threshold,
|
||||||
|
double nms_threshold,
|
||||||
|
vision_msgs::msg::Detection2DArray * output_detections);
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::unique_ptr<DetectorNetworkPrivate> impl_;
|
||||||
|
};
|
||||||
|
} // namespace darknet_ros
|
||||||
|
} // namespace openrobotics
|
||||||
|
|
||||||
|
#endif // OPENROBOTICS_DARKNET_ROS__DETECTOR_NETWORK_HPP_
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#ifndef OPENROBOTICS_DARKNET_ROS__DETECTOR_NODE_HPP_
|
||||||
|
#define OPENROBOTICS_DARKNET_ROS__DETECTOR_NODE_HPP_
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
#include "rclcpp/node.hpp"
|
||||||
|
#include "openrobotics_darknet_ros/visibility_node.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
namespace openrobotics
|
||||||
|
{
|
||||||
|
namespace darknet_ros
|
||||||
|
{
|
||||||
|
// Forward declaration
|
||||||
|
class DetectorNodePrivate;
|
||||||
|
|
||||||
|
class DetectorNode : public rclcpp::Node
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
/// \brief Create a node that uses ROS parameters to get the network
|
||||||
|
DARKNET_ROS_NODE_PUBLIC
|
||||||
|
explicit DetectorNode(rclcpp::NodeOptions options);
|
||||||
|
|
||||||
|
DARKNET_ROS_NODE_PUBLIC
|
||||||
|
virtual ~DetectorNode();
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::unique_ptr<DetectorNodePrivate> impl_;
|
||||||
|
OnSetParametersCallbackHandle::SharedPtr callback_handle_;
|
||||||
|
};
|
||||||
|
} // namespace darknet_ros
|
||||||
|
} // namespace openrobotics
|
||||||
|
|
||||||
|
#endif // OPENROBOTICS_DARKNET_ROS__DETECTOR_NODE_HPP_
|
||||||
@ -0,0 +1,36 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#ifndef OPENROBOTICS_DARKNET_ROS__PARSE_HPP_
|
||||||
|
#define OPENROBOTICS_DARKNET_ROS__PARSE_HPP_
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "openrobotics_darknet_ros/visibility.hpp"
|
||||||
|
|
||||||
|
namespace openrobotics
|
||||||
|
{
|
||||||
|
namespace darknet_ros
|
||||||
|
{
|
||||||
|
/// \brief Read file containing class names, one per line
|
||||||
|
/// \param[in] filename a path to a file containing classes a network can detect
|
||||||
|
/// \return a container with all of the class names detected
|
||||||
|
DARKNET_ROS_PUBLIC
|
||||||
|
std::vector<std::string>
|
||||||
|
parse_class_names(const std::string & filename);
|
||||||
|
} // namespace darknet_ros
|
||||||
|
} // namespace openrobotics
|
||||||
|
|
||||||
|
#endif // OPENROBOTICS_DARKNET_ROS__PARSE_HPP_
|
||||||
@ -0,0 +1,56 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
/* This header must be included by all rclcpp headers which declare symbols
|
||||||
|
* which are defined in the rclcpp library. When not building the rclcpp
|
||||||
|
* library, i.e. when using the headers in other package's code, the contents
|
||||||
|
* of this header change the visibility of certain symbols which the rclcpp
|
||||||
|
* library cannot have, but the consuming code must have inorder to link.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef OPENROBOTICS_DARKNET_ROS__VISIBILITY_HPP_
|
||||||
|
#define OPENROBOTICS_DARKNET_ROS__VISIBILITY_HPP_
|
||||||
|
|
||||||
|
// This logic was borrowed (then namespaced) from the examples on the gcc wiki:
|
||||||
|
// https://gcc.gnu.org/wiki/Visibility
|
||||||
|
|
||||||
|
#if defined _WIN32 || defined __CYGWIN__
|
||||||
|
#ifdef __GNUC__
|
||||||
|
#define DARKNET_ROS_EXPORT __attribute__ ((dllexport))
|
||||||
|
#define DARKNET_ROS_IMPORT __attribute__ ((dllimport))
|
||||||
|
#else
|
||||||
|
#define DARKNET_ROS_EXPORT __declspec(dllexport)
|
||||||
|
#define DARKNET_ROS_IMPORT __declspec(dllimport)
|
||||||
|
#endif
|
||||||
|
#ifdef DARKNET_ROS_BUILDING_LIBRARY
|
||||||
|
#define DARKNET_ROS_PUBLIC DARKNET_ROS_EXPORT
|
||||||
|
#else
|
||||||
|
#define DARKNET_ROS_PUBLIC DARKNET_ROS_IMPORT
|
||||||
|
#endif
|
||||||
|
#define DARKNET_ROS_PUBLIC_TYPE DARKNET_ROS_PUBLIC
|
||||||
|
#define DARKNET_ROS_LOCAL
|
||||||
|
#else
|
||||||
|
#define DARKNET_ROS_EXPORT __attribute__ ((visibility("default")))
|
||||||
|
#define DARKNET_ROS_IMPORT
|
||||||
|
#if __GNUC__ >= 4
|
||||||
|
#define DARKNET_ROS_PUBLIC __attribute__ ((visibility("default")))
|
||||||
|
#define DARKNET_ROS_LOCAL __attribute__ ((visibility("hidden")))
|
||||||
|
#else
|
||||||
|
#define DARKNET_ROS_PUBLIC
|
||||||
|
#define DARKNET_ROS_LOCAL
|
||||||
|
#endif
|
||||||
|
#define DARKNET_ROS_PUBLIC_TYPE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif // OPENROBOTICS_DARKNET_ROS__VISIBILITY_HPP_
|
||||||
@ -0,0 +1,56 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
/* This header must be included by all rclcpp headers which declare symbols
|
||||||
|
* which are defined in the rclcpp library. When not building the rclcpp
|
||||||
|
* library, i.e. when using the headers in other package's code, the contents
|
||||||
|
* of this header change the visibility of certain symbols which the rclcpp
|
||||||
|
* library cannot have, but the consuming code must have inorder to link.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef OPENROBOTICS_DARKNET_ROS__VISIBILITY_NODE_HPP_
|
||||||
|
#define OPENROBOTICS_DARKNET_ROS__VISIBILITY_NODE_HPP_
|
||||||
|
|
||||||
|
// This logic was borrowed (then namespaced) from the examples on the gcc wiki:
|
||||||
|
// https://gcc.gnu.org/wiki/Visibility
|
||||||
|
|
||||||
|
#if defined _WIN32 || defined __CYGWIN__
|
||||||
|
#ifdef __GNUC__
|
||||||
|
#define DARKNET_ROS_NODE_EXPORT __attribute__ ((dllexport))
|
||||||
|
#define DARKNET_ROS_NODE_IMPORT __attribute__ ((dllimport))
|
||||||
|
#else
|
||||||
|
#define DARKNET_ROS_NODE_EXPORT __declspec(dllexport)
|
||||||
|
#define DARKNET_ROS_NODE_IMPORT __declspec(dllimport)
|
||||||
|
#endif
|
||||||
|
#ifdef DARKNET_ROS_NODE_BUILDING_LIBRARY
|
||||||
|
#define DARKNET_ROS_NODE_PUBLIC DARKNET_ROS_NODE_EXPORT
|
||||||
|
#else
|
||||||
|
#define DARKNET_ROS_NODE_PUBLIC DARKNET_ROS_NODE_IMPORT
|
||||||
|
#endif
|
||||||
|
#define DARKNET_ROS_NODE_PUBLIC_TYPE DARKNET_ROS_NODE_PUBLIC
|
||||||
|
#define DARKNET_ROS_NODE_LOCAL
|
||||||
|
#else
|
||||||
|
#define DARKNET_ROS_NODE_EXPORT __attribute__ ((visibility("default")))
|
||||||
|
#define DARKNET_ROS_NODE_IMPORT
|
||||||
|
#if __GNUC__ >= 4
|
||||||
|
#define DARKNET_ROS_NODE_PUBLIC __attribute__ ((visibility("default")))
|
||||||
|
#define DARKNET_ROS_NODE_LOCAL __attribute__ ((visibility("hidden")))
|
||||||
|
#else
|
||||||
|
#define DARKNET_ROS_NODE_PUBLIC
|
||||||
|
#define DARKNET_ROS_NODE_LOCAL
|
||||||
|
#endif
|
||||||
|
#define DARKNET_ROS_NODE_PUBLIC_TYPE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif // OPENROBOTICS_DARKNET_ROS__VISIBILITY_NODE_HPP_
|
||||||
29
ros2_ws/src/darknet_ros2/package.xml
Normal file
29
ros2_ws/src/darknet_ros2/package.xml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<package format="2">
|
||||||
|
<name>openrobotics_darknet_ros</name>
|
||||||
|
<version>0.1.0</version>
|
||||||
|
<description>ROS wrapper around darknet, an open source neural network framework.</description>
|
||||||
|
|
||||||
|
<author email="sloretz@openrobotics.org">Shane Loretz</author>
|
||||||
|
<maintainer email="sloretz@openrobotics.org">Shane Loretz</maintainer>
|
||||||
|
|
||||||
|
<license>Apache License 2.0</license>
|
||||||
|
|
||||||
|
<buildtool_depend>ament_cmake</buildtool_depend>
|
||||||
|
|
||||||
|
<depend>cv_bridge</depend>
|
||||||
|
<depend>darknet_vendor</depend>
|
||||||
|
<depend>rclcpp</depend>
|
||||||
|
<depend>rclcpp_components</depend>
|
||||||
|
<depend>sensor_msgs</depend>
|
||||||
|
<depend>vision_msgs</depend>
|
||||||
|
|
||||||
|
<test_depend>ament_cmake_gtest</test_depend>
|
||||||
|
<test_depend>ament_lint_auto</test_depend>
|
||||||
|
<test_depend>ament_lint_common</test_depend>
|
||||||
|
|
||||||
|
<export>
|
||||||
|
<build_type>ament_cmake</build_type>
|
||||||
|
</export>
|
||||||
|
</package>
|
||||||
|
|
||||||
44
ros2_ws/src/darknet_ros2/src/darknet_detections.hpp
Normal file
44
ros2_ws/src/darknet_ros2/src/darknet_detections.hpp
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
//
|
||||||
|
#ifndef DARKNET_DETECTIONS_HPP_
|
||||||
|
#define DARKNET_DETECTIONS_HPP_
|
||||||
|
|
||||||
|
#include <darknet_vendor/darknet_vendor.h>
|
||||||
|
|
||||||
|
namespace openrobotics
|
||||||
|
{
|
||||||
|
namespace darknet_ros
|
||||||
|
{
|
||||||
|
/// \brief RAII wrapper around darknet type `detections`
|
||||||
|
class DarknetDetections
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
/// \brief Steal ownership of detections
|
||||||
|
DarknetDetections(detection * darknet_detections, size_t num_detections)
|
||||||
|
: detections_(darknet_detections), num_detections_(num_detections)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
~DarknetDetections()
|
||||||
|
{
|
||||||
|
free_detections(detections_, num_detections_);
|
||||||
|
}
|
||||||
|
|
||||||
|
detection * detections_;
|
||||||
|
const size_t num_detections_ = 0;
|
||||||
|
};
|
||||||
|
} // namespace darknet_ros
|
||||||
|
} // namespace openrobotics
|
||||||
|
#endif // DARKNET_DETECTIONS_HPP_
|
||||||
71
ros2_ws/src/darknet_ros2/src/darknet_image.hpp
Normal file
71
ros2_ws/src/darknet_ros2/src/darknet_image.hpp
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#ifndef DARKNET_IMAGE_HPP_
|
||||||
|
#define DARKNET_IMAGE_HPP_
|
||||||
|
|
||||||
|
#include <darknet_vendor/darknet_vendor.h>
|
||||||
|
#include <cv_bridge/cv_bridge.h>
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
|
namespace openrobotics
|
||||||
|
{
|
||||||
|
namespace darknet_ros
|
||||||
|
{
|
||||||
|
/// \brief RAII wrapper around darknet type `image`
|
||||||
|
class DarknetImage
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
/// \brief Steal ownership of image
|
||||||
|
explicit DarknetImage(image darknet_image)
|
||||||
|
: image_(darknet_image)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
explicit DarknetImage(const sensor_msgs::msg::Image & image_msg)
|
||||||
|
{
|
||||||
|
// Convert to open cv type with a known format
|
||||||
|
std::shared_ptr<void const> dummy_object;
|
||||||
|
cv_bridge::CvImageConstPtr opencv_image = cv_bridge::toCvShare(image_msg, dummy_object, "rgb8");
|
||||||
|
const cv::Mat & image_matrix = opencv_image->image;
|
||||||
|
|
||||||
|
// Make a darknet image with this data
|
||||||
|
const int width = image_matrix.cols;
|
||||||
|
const int height = image_matrix.rows;
|
||||||
|
const int channels = 3; // rgb
|
||||||
|
image_ = make_image(width, height, channels);
|
||||||
|
|
||||||
|
for (int channel = 0; channel < channels; ++channel) {
|
||||||
|
for (int row = 0; row < image_matrix.rows; ++row) {
|
||||||
|
for (int column = 0; column < image_matrix.cols; ++column) {
|
||||||
|
// Darknet stores each channel separately in R G B order
|
||||||
|
// Within a channel pixels are in row-major order
|
||||||
|
size_t darknet_idx = channel * height * width + row * width + column;
|
||||||
|
image_.data[darknet_idx] = image_matrix.ptr(row, column)[channel] / 255.0f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
~DarknetImage()
|
||||||
|
{
|
||||||
|
free_image(image_);
|
||||||
|
}
|
||||||
|
|
||||||
|
image image_;
|
||||||
|
};
|
||||||
|
} // namespace darknet_ros
|
||||||
|
} // namespace openrobotics
|
||||||
|
#endif // DARKNET_IMAGE_HPP_
|
||||||
176
ros2_ws/src/darknet_ros2/src/detector_network.cpp
Normal file
176
ros2_ws/src/darknet_ros2/src/detector_network.cpp
Normal file
@ -0,0 +1,176 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#include <darknet_vendor/darknet_vendor.h>
|
||||||
|
|
||||||
|
#include <fstream>
|
||||||
|
#include <memory>
|
||||||
|
#include <sstream>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "darknet_detections.hpp"
|
||||||
|
#include "darknet_image.hpp"
|
||||||
|
#include "openrobotics_darknet_ros/detector_network.hpp"
|
||||||
|
|
||||||
|
namespace openrobotics
|
||||||
|
{
|
||||||
|
namespace darknet_ros
|
||||||
|
{
|
||||||
|
class DetectorNetworkPrivate
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
DetectorNetworkPrivate() {}
|
||||||
|
|
||||||
|
~DetectorNetworkPrivate()
|
||||||
|
{
|
||||||
|
if (network_) {
|
||||||
|
free_network(network_);
|
||||||
|
network_ = nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// darknet network
|
||||||
|
network * network_ = nullptr;
|
||||||
|
// Classes the network can detect
|
||||||
|
std::vector<std::string> class_names_;
|
||||||
|
};
|
||||||
|
|
||||||
|
DetectorNetwork::DetectorNetwork(
|
||||||
|
const std::string & config_file,
|
||||||
|
const std::string & weights_file,
|
||||||
|
const std::vector<std::string> & classes)
|
||||||
|
: impl_(new DetectorNetworkPrivate())
|
||||||
|
{
|
||||||
|
if (!std::ifstream(config_file)) {
|
||||||
|
std::stringstream str;
|
||||||
|
str << "Could not open " << config_file;
|
||||||
|
throw std::invalid_argument(str.str());
|
||||||
|
} else if (!std::ifstream(weights_file)) {
|
||||||
|
std::stringstream str;
|
||||||
|
str << "Could not open " << weights_file;
|
||||||
|
throw std::invalid_argument(str.str());
|
||||||
|
}
|
||||||
|
|
||||||
|
impl_->class_names_ = classes;
|
||||||
|
|
||||||
|
// Make copies because of darknet's lack of const
|
||||||
|
std::unique_ptr<char> config_mutable(new char[config_file.size() + 1]);
|
||||||
|
std::unique_ptr<char> weights_mutable(new char[weights_file.size() + 1]);
|
||||||
|
snprintf(&*config_mutable, config_file.size() + 1, "%s", config_file.c_str());
|
||||||
|
snprintf(&*weights_mutable, weights_file.size() + 1, "%s", weights_file.c_str());
|
||||||
|
|
||||||
|
const int clear = 0;
|
||||||
|
impl_->network_ = load_network(&*config_mutable, &*weights_mutable, clear);
|
||||||
|
if (nullptr == impl_->network_) {
|
||||||
|
std::stringstream str;
|
||||||
|
str << "Failed to load network from " << config_file << " and " << weights_file;
|
||||||
|
throw std::invalid_argument(str.str());
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO(sloretz) what is this and why do examples set it?
|
||||||
|
const int batch = 1;
|
||||||
|
set_batch_network(impl_->network_, batch);
|
||||||
|
|
||||||
|
const int num_classes_int = impl_->network_->layers[impl_->network_->n - 1].classes;
|
||||||
|
if (num_classes_int <= 0) {
|
||||||
|
throw std::invalid_argument("Invalid network, it expects no classes");
|
||||||
|
}
|
||||||
|
size_t num_classes = static_cast<size_t>(num_classes_int);
|
||||||
|
if (num_classes != classes.size()) {
|
||||||
|
std::stringstream str;
|
||||||
|
str << "DetectorNetwork expects " << num_classes << " class names but got " << classes.size();
|
||||||
|
throw std::invalid_argument(str.str());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DetectorNetwork::~DetectorNetwork()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
DetectorNetwork::detect(
|
||||||
|
const sensor_msgs::msg::Image & image_msg,
|
||||||
|
double threshold,
|
||||||
|
double nms_threshold,
|
||||||
|
vision_msgs::msg::Detection2DArray * output_detections)
|
||||||
|
{
|
||||||
|
DarknetImage orig_image(image_msg);
|
||||||
|
|
||||||
|
// resize image to network size, filling rest with gray
|
||||||
|
DarknetImage resized_image(
|
||||||
|
letterbox_image(orig_image.image_, impl_->network_->w, impl_->network_->h));
|
||||||
|
|
||||||
|
// Ask network to make predictions
|
||||||
|
network_predict(impl_->network_, resized_image.image_.data);
|
||||||
|
|
||||||
|
// Get predictions from network
|
||||||
|
int num_detections = 0;
|
||||||
|
// TODO(sloretz) what do hier, map, and relative do?
|
||||||
|
const float hier = 0;
|
||||||
|
int * map = nullptr;
|
||||||
|
const int relative = 0;
|
||||||
|
detection * darknet_detections = get_network_boxes(
|
||||||
|
impl_->network_, image_msg.width, image_msg.height, threshold,
|
||||||
|
hier, map, relative,
|
||||||
|
&num_detections);
|
||||||
|
|
||||||
|
if (num_detections <= 0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
DarknetDetections raii_detections(darknet_detections, static_cast<size_t>(num_detections));
|
||||||
|
|
||||||
|
// Non-maximal suppression: filters overlapping bounding boxes
|
||||||
|
if (nms_threshold > 0.0f) {
|
||||||
|
const int num_classes = impl_->network_->layers[impl_->network_->n - 1].classes;
|
||||||
|
do_nms_sort(darknet_detections, num_detections, num_classes, nms_threshold);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Populate output message
|
||||||
|
output_detections->header = image_msg.header;
|
||||||
|
output_detections->detections.reserve(num_detections);
|
||||||
|
for (int i = 0; i < num_detections; ++i) {
|
||||||
|
auto & detection = darknet_detections[i];
|
||||||
|
output_detections->detections.emplace_back();
|
||||||
|
auto & detection_ros = output_detections->detections.back();
|
||||||
|
|
||||||
|
// Copy probabilities of each class
|
||||||
|
for (int cls = 0; cls < detection.classes; ++cls) {
|
||||||
|
if (detection.prob[cls] > 0.0f) {
|
||||||
|
detection_ros.results.emplace_back();
|
||||||
|
vision_msgs::msg::ObjectHypothesisWithPose hypothesis = detection_ros.results.back();
|
||||||
|
hypothesis.hypothesis.class_id = impl_->class_names_.at(cls);
|
||||||
|
hypothesis.hypothesis.score = detection.prob[cls];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (detection_ros.results.empty()) {
|
||||||
|
// nms suppressed this detection
|
||||||
|
output_detections->detections.pop_back();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Copy bounding box, darknet uses center of bounding box too
|
||||||
|
detection_ros.bbox.center.position.x = detection.bbox.x;
|
||||||
|
detection_ros.bbox.center.position.y = detection.bbox.y;
|
||||||
|
detection_ros.bbox.size_x = detection.bbox.w;
|
||||||
|
detection_ros.bbox.size_y = detection.bbox.h;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not using num_detections because nms may have suppressed some
|
||||||
|
return output_detections->detections.size();
|
||||||
|
}
|
||||||
|
} // namespace darknet_ros
|
||||||
|
} // namespace openrobotics
|
||||||
167
ros2_ws/src/darknet_ros2/src/detector_node.cpp
Normal file
167
ros2_ws/src/darknet_ros2/src/detector_node.cpp
Normal file
@ -0,0 +1,167 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#include <darknet_vendor/darknet_vendor.h>
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
#include <string>
|
||||||
|
#include <utility>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "openrobotics_darknet_ros/detector_node.hpp"
|
||||||
|
#include "openrobotics_darknet_ros/detector_network.hpp"
|
||||||
|
#include "openrobotics_darknet_ros/parse.hpp"
|
||||||
|
#include "rcl_interfaces/msg/parameter_descriptor.hpp"
|
||||||
|
#include "rclcpp/parameter_value.hpp"
|
||||||
|
#include "rclcpp/parameter_client.hpp"
|
||||||
|
|
||||||
|
namespace openrobotics
|
||||||
|
{
|
||||||
|
namespace darknet_ros
|
||||||
|
{
|
||||||
|
class DetectorNodePrivate
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
void on_image_rx(const sensor_msgs::msg::Image::ConstSharedPtr image_msg)
|
||||||
|
{
|
||||||
|
vision_msgs::msg::Detection2DArray::UniquePtr detections(
|
||||||
|
new vision_msgs::msg::Detection2DArray);
|
||||||
|
// std::cerr << "using threshold " << threshold_ << " nms " << nms_threshold_ << "\n";
|
||||||
|
if (network_->detect(*image_msg, threshold_, nms_threshold_, &*detections)) {
|
||||||
|
detections_pub_->publish(std::move(detections));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
rcl_interfaces::msg::SetParametersResult
|
||||||
|
on_parameters_change(const std::vector<rclcpp::Parameter> & new_values)
|
||||||
|
{
|
||||||
|
rcl_interfaces::msg::SetParametersResult result;
|
||||||
|
result.successful = true;
|
||||||
|
double new_threshold = threshold_;
|
||||||
|
double new_nms_threshold = nms_threshold_;
|
||||||
|
|
||||||
|
for (const auto & parameter : new_values) {
|
||||||
|
if (threshold_desc_.name == parameter.get_name()) {
|
||||||
|
new_threshold = parameter.as_double();
|
||||||
|
// TODO(sloretz) range constraints in parameter description
|
||||||
|
if (new_threshold < 0.0 || new_threshold > 1.0) {
|
||||||
|
result.successful = false;
|
||||||
|
result.reason = "threshold out of range [0.0, 1.0]";
|
||||||
|
}
|
||||||
|
} else if (nms_threshold_desc_.name == parameter.get_name()) {
|
||||||
|
new_nms_threshold = parameter.as_double();
|
||||||
|
if (new_nms_threshold < 0.0 || new_nms_threshold > 1.0) {
|
||||||
|
result.successful = false;
|
||||||
|
result.reason = "nms_threshold out of range [0.0, 1.0]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (result.successful) {
|
||||||
|
threshold_ = new_threshold;
|
||||||
|
nms_threshold_ = new_nms_threshold;
|
||||||
|
// std::cerr << "New threshold " << threshold_ << " nms " << nms_threshold_ << "\n";
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::unique_ptr<DetectorNetwork> network_;
|
||||||
|
rclcpp::Publisher<vision_msgs::msg::Detection2DArray>::SharedPtr detections_pub_;
|
||||||
|
rclcpp::Subscription<sensor_msgs::msg::Image>::SharedPtr image_sub_;
|
||||||
|
|
||||||
|
double threshold_ = 0.25;
|
||||||
|
double nms_threshold_ = 0.45;
|
||||||
|
|
||||||
|
rcl_interfaces::msg::ParameterDescriptor threshold_desc_;
|
||||||
|
rcl_interfaces::msg::ParameterDescriptor nms_threshold_desc_;
|
||||||
|
};
|
||||||
|
|
||||||
|
DetectorNode::DetectorNode(rclcpp::NodeOptions options)
|
||||||
|
: rclcpp::Node("detector_node", options), impl_(new DetectorNodePrivate)
|
||||||
|
{
|
||||||
|
// Read-only input parameters: cfg, weights, classes
|
||||||
|
rcl_interfaces::msg::ParameterDescriptor network_cfg_desc;
|
||||||
|
network_cfg_desc.description = "Path to config file describing network";
|
||||||
|
network_cfg_desc.type = rcl_interfaces::msg::ParameterType::PARAMETER_STRING;
|
||||||
|
network_cfg_desc.read_only = true;
|
||||||
|
network_cfg_desc.name = "network.config";
|
||||||
|
const std::string network_config_path = declare_parameter(
|
||||||
|
network_cfg_desc.name,
|
||||||
|
rclcpp::ParameterValue(),
|
||||||
|
network_cfg_desc).get<std::string>();
|
||||||
|
|
||||||
|
rcl_interfaces::msg::ParameterDescriptor network_weights_desc;
|
||||||
|
network_weights_desc.description = "Path to file describing network weights";
|
||||||
|
network_weights_desc.type = rcl_interfaces::msg::ParameterType::PARAMETER_STRING;
|
||||||
|
network_weights_desc.read_only = true;
|
||||||
|
network_weights_desc.name = "network.weights";
|
||||||
|
const std::string network_weights_path = declare_parameter(
|
||||||
|
network_weights_desc.name,
|
||||||
|
rclcpp::ParameterValue(),
|
||||||
|
network_weights_desc).get<std::string>();
|
||||||
|
|
||||||
|
rcl_interfaces::msg::ParameterDescriptor network_class_names_desc;
|
||||||
|
network_class_names_desc.description = "Path to file with class names (one per line)";
|
||||||
|
network_class_names_desc.type = rcl_interfaces::msg::ParameterType::PARAMETER_STRING;
|
||||||
|
network_class_names_desc.read_only = true;
|
||||||
|
network_class_names_desc.name = "network.class_names";
|
||||||
|
const std::string network_class_names_path = declare_parameter(
|
||||||
|
network_class_names_desc.name,
|
||||||
|
rclcpp::ParameterValue(),
|
||||||
|
network_class_names_desc).get<std::string>();
|
||||||
|
|
||||||
|
impl_->threshold_desc_.description = "Minimum detection confidence [0.0, 1.0]";
|
||||||
|
impl_->threshold_desc_.type = rcl_interfaces::msg::ParameterType::PARAMETER_DOUBLE;
|
||||||
|
impl_->threshold_desc_.name = "detection.threshold";
|
||||||
|
impl_->threshold_ = declare_parameter(
|
||||||
|
impl_->threshold_desc_.name,
|
||||||
|
rclcpp::ParameterValue(impl_->threshold_),
|
||||||
|
impl_->threshold_desc_).get<double>();
|
||||||
|
|
||||||
|
impl_->nms_threshold_desc_.description =
|
||||||
|
"Non Maximal Suppression threshold for filtering overlapping boxes [0.0, 1.0]";
|
||||||
|
impl_->nms_threshold_desc_.type = rcl_interfaces::msg::ParameterType::PARAMETER_DOUBLE;
|
||||||
|
impl_->nms_threshold_desc_.name = "detection.nms_threshold";
|
||||||
|
impl_->nms_threshold_ = declare_parameter(
|
||||||
|
impl_->nms_threshold_desc_.name,
|
||||||
|
rclcpp::ParameterValue(impl_->nms_threshold_),
|
||||||
|
impl_->nms_threshold_desc_).get<double>();
|
||||||
|
|
||||||
|
// Register a callback for parameter changes
|
||||||
|
// auto parameters_client = std::make_shared<rclcpp::SyncParametersClient>(this);
|
||||||
|
// parameters_client->add_on_set_parameters_callback(std::bind(&DetectorNodePrivate::on_parameters_change, &*impl_, std::placeholders::_1));
|
||||||
|
callback_handle_ = this->add_on_set_parameters_callback(std::bind(&DetectorNodePrivate::on_parameters_change, &*impl_, std::placeholders::_1));
|
||||||
|
// TODO(sloretz) raise if user tried to initialize node with undeclared parameters
|
||||||
|
|
||||||
|
std::vector<std::string> class_names = parse_class_names(network_class_names_path);
|
||||||
|
impl_->network_.reset(
|
||||||
|
new DetectorNetwork(network_config_path, network_weights_path, class_names));
|
||||||
|
|
||||||
|
// Ouput topic ~/detections [vision_msgs/msg/Detection2DArray]
|
||||||
|
impl_->detections_pub_ = this->create_publisher<vision_msgs::msg::Detection2DArray>(
|
||||||
|
"~/detections", 1);
|
||||||
|
|
||||||
|
// Input topic ~/images [sensor_msgs/msg/Image]
|
||||||
|
impl_->image_sub_ = this->create_subscription<sensor_msgs::msg::Image>(
|
||||||
|
"~/images", 12, std::bind(&DetectorNodePrivate::on_image_rx, &*impl_, std::placeholders::_1));
|
||||||
|
}
|
||||||
|
|
||||||
|
DetectorNode::~DetectorNode()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
} // namespace darknet_ros
|
||||||
|
} // namespace openrobotics
|
||||||
|
|
||||||
|
#include "rclcpp_components/register_node_macro.hpp"
|
||||||
|
|
||||||
|
RCLCPP_COMPONENTS_REGISTER_NODE(openrobotics::darknet_ros::DetectorNode)
|
||||||
31
ros2_ws/src/darknet_ros2/src/detector_node_main.cpp
Normal file
31
ros2_ws/src/darknet_ros2/src/detector_node_main.cpp
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
|
#include "openrobotics_darknet_ros/detector_node.hpp"
|
||||||
|
#include "rclcpp/rclcpp.hpp"
|
||||||
|
|
||||||
|
int main(int argc, char ** argv)
|
||||||
|
{
|
||||||
|
rclcpp::init(argc, argv);
|
||||||
|
|
||||||
|
rclcpp::NodeOptions options;
|
||||||
|
auto detector_node = std::make_shared<openrobotics::darknet_ros::DetectorNode>(options);
|
||||||
|
|
||||||
|
rclcpp::spin(detector_node);
|
||||||
|
|
||||||
|
rclcpp::shutdown();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
51
ros2_ws/src/darknet_ros2/src/parse.cpp
Normal file
51
ros2_ws/src/darknet_ros2/src/parse.cpp
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#include <fstream>
|
||||||
|
#include <sstream>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "openrobotics_darknet_ros/parse.hpp"
|
||||||
|
|
||||||
|
namespace openrobotics
|
||||||
|
{
|
||||||
|
namespace darknet_ros
|
||||||
|
{
|
||||||
|
std::vector<std::string>
|
||||||
|
parse_class_names(const std::string & filename)
|
||||||
|
{
|
||||||
|
std::ifstream fin(filename);
|
||||||
|
std::vector<std::string> class_names;
|
||||||
|
std::string line;
|
||||||
|
while (fin) {
|
||||||
|
std::getline(fin, line);
|
||||||
|
if (!fin) {
|
||||||
|
if (!fin.eof()) {
|
||||||
|
std::stringstream str;
|
||||||
|
str << "Failed to read [" << filename << "] line " << class_names.size();
|
||||||
|
throw std::runtime_error(str.str());
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (line.empty()) {
|
||||||
|
// Ignore blank lines
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
class_names.emplace_back(line);
|
||||||
|
}
|
||||||
|
return class_names;
|
||||||
|
}
|
||||||
|
} // namespace darknet_ros
|
||||||
|
} // namespace openrobotics
|
||||||
1
ros2_ws/src/darknet_ros2/test/data/1_class_name.txt
Normal file
1
ros2_ws/src/darknet_ros2/test/data/1_class_name.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
tomato
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
foo
|
||||||
|
|
||||||
|
|
||||||
|
bar
|
||||||
|
|
||||||
|
|
||||||
|
baz
|
||||||
5
ros2_ws/src/darknet_ros2/test/data/5_class_names.txt
Normal file
5
ros2_ws/src/darknet_ros2/test/data/5_class_names.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
car
|
||||||
|
boat
|
||||||
|
bus
|
||||||
|
airplane
|
||||||
|
space ship
|
||||||
33
ros2_ws/src/darknet_ros2/test/test_detector_network.cpp
Normal file
33
ros2_ws/src/darknet_ros2/test/test_detector_network.cpp
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "openrobotics_darknet_ros/detector_network.hpp"
|
||||||
|
|
||||||
|
TEST(network, config_does_not_exist)
|
||||||
|
{
|
||||||
|
const std::string config = "does_not_exist.cfg";
|
||||||
|
const std::string weights = "does_not_exist.weights";
|
||||||
|
std::vector<std::string> classes{"foo", "bar"};
|
||||||
|
|
||||||
|
try {
|
||||||
|
openrobotics::darknet_ros::DetectorNetwork network(config, weights, classes);
|
||||||
|
ASSERT_TRUE(false);
|
||||||
|
} catch (const std::invalid_argument &) {
|
||||||
|
}
|
||||||
|
}
|
||||||
67
ros2_ws/src/darknet_ros2/test/test_parser.cpp
Normal file
67
ros2_ws/src/darknet_ros2/test/test_parser.cpp
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
// Copyright 2019 Open Source Robotics Foundation, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "openrobotics_darknet_ros/parse.hpp"
|
||||||
|
|
||||||
|
using openrobotics::darknet_ros::parse_class_names;
|
||||||
|
|
||||||
|
TEST(parse, names_file_does_not_exist)
|
||||||
|
{
|
||||||
|
std::vector<std::string> class_names;
|
||||||
|
|
||||||
|
class_names = parse_class_names("openrobotics_darknet_ros_file_does_not_exist");
|
||||||
|
|
||||||
|
ASSERT_EQ(0u, class_names.size());
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(parse, one_name)
|
||||||
|
{
|
||||||
|
std::vector<std::string> class_names;
|
||||||
|
|
||||||
|
class_names = parse_class_names("data/1_class_name.txt");
|
||||||
|
|
||||||
|
ASSERT_EQ(1u, class_names.size());
|
||||||
|
EXPECT_EQ("tomato", class_names[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(parse, 3_class_names_with_whitespace)
|
||||||
|
{
|
||||||
|
std::vector<std::string> class_names;
|
||||||
|
|
||||||
|
class_names = parse_class_names("data/3_class_names_with_whitespace.txt");
|
||||||
|
|
||||||
|
ASSERT_EQ(3u, class_names.size());
|
||||||
|
EXPECT_EQ("foo", class_names[0]);
|
||||||
|
EXPECT_EQ("bar", class_names[1]);
|
||||||
|
EXPECT_EQ("baz", class_names[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(parse, five_names)
|
||||||
|
{
|
||||||
|
std::vector<std::string> class_names;
|
||||||
|
|
||||||
|
class_names = parse_class_names("data/5_class_names.txt");
|
||||||
|
|
||||||
|
ASSERT_EQ(5u, class_names.size());
|
||||||
|
EXPECT_EQ("car", class_names[0]);
|
||||||
|
EXPECT_EQ("boat", class_names[1]);
|
||||||
|
EXPECT_EQ("bus", class_names[2]);
|
||||||
|
EXPECT_EQ("airplane", class_names[3]);
|
||||||
|
EXPECT_EQ("space ship", class_names[4]);
|
||||||
|
}
|
||||||
1
ros2_ws/src/darknet_vendor/build/.built_by
Normal file
1
ros2_ws/src/darknet_vendor/build/.built_by
Normal file
@ -0,0 +1 @@
|
|||||||
|
colcon
|
||||||
424
ros2_ws/src/darknet_vendor/build/CMakeCache.txt
Normal file
424
ros2_ws/src/darknet_vendor/build/CMakeCache.txt
Normal file
@ -0,0 +1,424 @@
|
|||||||
|
# This is the CMakeCache file.
|
||||||
|
# For build in directory: /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build
|
||||||
|
# It was generated by CMake: /usr/bin/cmake
|
||||||
|
# You can edit this file to change values found and used by cmake.
|
||||||
|
# If you do not want to change any of the values, simply exit the editor.
|
||||||
|
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||||
|
# The syntax for the file is as follows:
|
||||||
|
# KEY:TYPE=VALUE
|
||||||
|
# KEY is the name of a variable in the cache.
|
||||||
|
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||||
|
# VALUE is the current value for the KEY.
|
||||||
|
|
||||||
|
########################
|
||||||
|
# EXTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_AR:FILEPATH=/usr/bin/ar
|
||||||
|
|
||||||
|
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
||||||
|
// MinSizeRel ...
|
||||||
|
CMAKE_BUILD_TYPE:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable color output during build.
|
||||||
|
CMAKE_COLOR_MAKEFILE:BOOL=ON
|
||||||
|
|
||||||
|
//CXX compiler
|
||||||
|
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during all build types.
|
||||||
|
CMAKE_CXX_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during DEBUG builds.
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELEASE builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//C compiler
|
||||||
|
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11
|
||||||
|
|
||||||
|
//Flags used by the C compiler during all build types.
|
||||||
|
CMAKE_C_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the C compiler during DEBUG builds.
|
||||||
|
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the C compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELEASE builds.
|
||||||
|
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
|
||||||
|
|
||||||
|
//Flags used by the linker during all build types.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during DEBUG builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during MINSIZEREL builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELEASE builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable output of compile commands during generation.
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||||
|
|
||||||
|
//Install path prefix, prepended onto install directories.
|
||||||
|
CMAKE_INSTALL_PREFIX:PATH=/usr/local
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_LINKER:FILEPATH=/usr/bin/ld
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// all build types.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// DEBUG builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// MINSIZEREL builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELEASE builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELWITHDEBINFO builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_NM:FILEPATH=/usr/bin/nm
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_NAME:STATIC=darknet_vendor
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION:STATIC=0.1.0
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_MAJOR:STATIC=0
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_MINOR:STATIC=1
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_PATCH:STATIC=0
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_READELF:FILEPATH=/usr/bin/readelf
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when installing shared libraries,
|
||||||
|
// but are added when building.
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when using shared libraries.
|
||||||
|
CMAKE_SKIP_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_STRIP:FILEPATH=/usr/bin/strip
|
||||||
|
|
||||||
|
//If this value is on, makefiles will be generated without the
|
||||||
|
// .SILENT directive, and all commands will be echoed to the console
|
||||||
|
// during the make. This is useful for debugging only. With Visual
|
||||||
|
// Studio IDE projects all commands are done without /nologo.
|
||||||
|
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||||
|
|
||||||
|
//Build darknet with CUDA support
|
||||||
|
DARKNET_CUDA:BOOL=Off
|
||||||
|
|
||||||
|
//Build darknet with OpenCV support
|
||||||
|
DARKNET_OPENCV:BOOL=Off
|
||||||
|
|
||||||
|
//Directory under which to collect all populated content
|
||||||
|
FETCHCONTENT_BASE_DIR:PATH=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps
|
||||||
|
|
||||||
|
//Disables all attempts to download or update content and assumes
|
||||||
|
// source dirs already exist
|
||||||
|
FETCHCONTENT_FULLY_DISCONNECTED:BOOL=OFF
|
||||||
|
|
||||||
|
//Enables QUIET option for all content population
|
||||||
|
FETCHCONTENT_QUIET:BOOL=ON
|
||||||
|
|
||||||
|
//When not empty, overrides where to find pre-populated content
|
||||||
|
// for darknet-download
|
||||||
|
FETCHCONTENT_SOURCE_DIR_DARKNET-DOWNLOAD:PATH=
|
||||||
|
|
||||||
|
//Enables UPDATE_DISCONNECTED behavior for all content population
|
||||||
|
FETCHCONTENT_UPDATES_DISCONNECTED:BOOL=OFF
|
||||||
|
|
||||||
|
//Enables UPDATE_DISCONNECTED behavior just for population of darknet-download
|
||||||
|
FETCHCONTENT_UPDATES_DISCONNECTED_DARKNET-DOWNLOAD:BOOL=OFF
|
||||||
|
|
||||||
|
//Git command line client
|
||||||
|
GIT_EXECUTABLE:FILEPATH=/usr/bin/git
|
||||||
|
|
||||||
|
//Dependencies for the target
|
||||||
|
darknet_LIB_DEPENDS:STATIC=general;m;
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
darknet_vendor_BINARY_DIR:STATIC=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
darknet_vendor_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
darknet_vendor_SOURCE_DIR:STATIC=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# INTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//ADVANCED property for variable: CMAKE_ADDR2LINE
|
||||||
|
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_AR
|
||||||
|
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||||
|
//This is the directory where this CMakeCache.txt was created
|
||||||
|
CMAKE_CACHEFILE_DIR:INTERNAL=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build
|
||||||
|
//Major version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||||
|
//Minor version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MINOR_VERSION:INTERNAL=22
|
||||||
|
//Patch version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_PATCH_VERSION:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
|
||||||
|
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake executable.
|
||||||
|
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
|
||||||
|
//Path to cpack program executable.
|
||||||
|
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
|
||||||
|
//Path to ctest program executable.
|
||||||
|
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER
|
||||||
|
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
||||||
|
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
||||||
|
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER
|
||||||
|
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
|
||||||
|
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
|
||||||
|
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS
|
||||||
|
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
||||||
|
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
||||||
|
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_DLLTOOL
|
||||||
|
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
|
||||||
|
//Executable file format
|
||||||
|
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||||
|
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||||
|
//Name of external makefile project generator.
|
||||||
|
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||||
|
//Name of generator.
|
||||||
|
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
|
||||||
|
//Generator instance identifier.
|
||||||
|
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||||
|
//Name of generator platform.
|
||||||
|
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||||
|
//Name of generator toolset.
|
||||||
|
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||||
|
//Test CMAKE_HAVE_LIBC_PTHREAD
|
||||||
|
CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1
|
||||||
|
//Have include pthread.h
|
||||||
|
CMAKE_HAVE_PTHREAD_H:INTERNAL=1
|
||||||
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
|
// project
|
||||||
|
CMAKE_HOME_DIRECTORY:INTERNAL=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor
|
||||||
|
//Install .so files without execute permission.
|
||||||
|
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_LINKER
|
||||||
|
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
||||||
|
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_NM
|
||||||
|
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||||
|
//number of local generators
|
||||||
|
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||||
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||||
|
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||||
|
//Platform information initialized
|
||||||
|
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_RANLIB
|
||||||
|
CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_READELF
|
||||||
|
CMAKE_READELF-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake installation.
|
||||||
|
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.22
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||||
|
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STRIP
|
||||||
|
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||||
|
//uname command
|
||||||
|
CMAKE_UNAME:INTERNAL=/usr/bin/uname
|
||||||
|
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||||
|
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Details about finding Threads
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
|
||||||
|
//ADVANCED property for variable: GIT_EXECUTABLE
|
||||||
|
GIT_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||||
|
|
||||||
@ -0,0 +1,72 @@
|
|||||||
|
set(CMAKE_C_COMPILER "/usr/bin/cc")
|
||||||
|
set(CMAKE_C_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_C_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION "11.3.0")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
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")
|
||||||
|
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||||
|
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||||
|
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||||
|
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
|
||||||
|
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
|
||||||
|
|
||||||
|
set(CMAKE_C_PLATFORM_ID "Linux")
|
||||||
|
set(CMAKE_C_SIMULATE_ID "")
|
||||||
|
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
|
||||||
|
set(CMAKE_C_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "/usr/bin/ar")
|
||||||
|
set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-11")
|
||||||
|
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||||
|
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11")
|
||||||
|
set(CMAKE_LINKER "/usr/bin/ld")
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCC 1)
|
||||||
|
set(CMAKE_C_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_C_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||||
|
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_C_SIZEOF_DATA_PTR "8")
|
||||||
|
set(CMAKE_C_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
|
||||||
|
set(CMAKE_C_LIBRARY_ARCHITECTURE "aarch64-linux-gnu")
|
||||||
|
|
||||||
|
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "aarch64-linux-gnu")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||||
@ -0,0 +1,83 @@
|
|||||||
|
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
|
||||||
|
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION "11.3.0")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23")
|
||||||
|
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||||
|
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")
|
||||||
|
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")
|
||||||
|
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||||
|
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
||||||
|
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_PLATFORM_ID "Linux")
|
||||||
|
set(CMAKE_CXX_SIMULATE_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "")
|
||||||
|
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "/usr/bin/ar")
|
||||||
|
set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-11")
|
||||||
|
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||||
|
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11")
|
||||||
|
set(CMAKE_LINKER "/usr/bin/ld")
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCXX 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm)
|
||||||
|
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
|
||||||
|
foreach (lang C OBJC OBJCXX)
|
||||||
|
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
||||||
|
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
||||||
|
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
||||||
|
endforeach()
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
|
||||||
|
set(CMAKE_CXX_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
|
||||||
|
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "aarch64-linux-gnu")
|
||||||
|
|
||||||
|
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "aarch64-linux-gnu")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11;/usr/include/aarch64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1,15 @@
|
|||||||
|
set(CMAKE_HOST_SYSTEM "Linux-5.15.0-67-generic")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "5.15.0-67-generic")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "aarch64")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM "Linux-5.15.0-67-generic")
|
||||||
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_SYSTEM_VERSION "5.15.0-67-generic")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "aarch64")
|
||||||
|
|
||||||
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM_LOADED 1)
|
||||||
@ -0,0 +1,803 @@
|
|||||||
|
#ifdef __cplusplus
|
||||||
|
# error "A C++ compiler has been selected for C."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__18CXX)
|
||||||
|
# define ID_VOID_MAIN
|
||||||
|
#endif
|
||||||
|
#if defined(__CLASSIC_C__)
|
||||||
|
/* cv-qualifiers did not exist in K&R C */
|
||||||
|
# define const
|
||||||
|
# define volatile
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__has_include)
|
||||||
|
/* If the compiler does not have __has_include, pretend the answer is
|
||||||
|
always no. */
|
||||||
|
# define __has_include(x) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Version number components: V=Version, R=Revision, P=Patch
|
||||||
|
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||||
|
# define COMPILER_ID "Intel"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# endif
|
||||||
|
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
||||||
|
except that a few beta releases use the old format with V=2021. */
|
||||||
|
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||||
|
# if defined(__INTEL_COMPILER_UPDATE)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
/* The third version component from --version is an update index,
|
||||||
|
but no macro is provided for it. */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(0)
|
||||||
|
# endif
|
||||||
|
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
||||||
|
# define COMPILER_ID "IntelLLVM"
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
#endif
|
||||||
|
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
||||||
|
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
||||||
|
* VVVV is no smaller than the current year when a version is released.
|
||||||
|
*/
|
||||||
|
#if __INTEL_LLVM_COMPILER < 1000000L
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
||||||
|
#else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
#elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__PATHCC__)
|
||||||
|
# define COMPILER_ID "PathScale"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||||
|
# if defined(__PATHCC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||||
|
# define COMPILER_ID "Embarcadero"
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__)
|
||||||
|
# define COMPILER_ID "Borland"
|
||||||
|
/* __BORLANDC__ = 0xVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||||
|
# define COMPILER_ID "Watcom"
|
||||||
|
/* __WATCOMC__ = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# define COMPILER_ID "OpenWatcom"
|
||||||
|
/* __WATCOMC__ = VVRP + 1100 */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SUNPRO_C)
|
||||||
|
# define COMPILER_ID "SunPro"
|
||||||
|
# if __SUNPRO_C >= 0x5100
|
||||||
|
/* __SUNPRO_C = 0xVRRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||||
|
# else
|
||||||
|
/* __SUNPRO_CC = 0xVRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__HP_cc)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
/* __HP_cc = VVRRPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
|
||||||
|
|
||||||
|
#elif defined(__DECC)
|
||||||
|
# define COMPILER_ID "Compaq"
|
||||||
|
/* __DECC_VER = VVRRTPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
|
||||||
|
# define COMPILER_ID "zOS"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__ibmxl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "XLClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
|
||||||
|
# define COMPILER_ID "XL"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
|
||||||
|
# define COMPILER_ID "VisualAge"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__NVCOMPILER)
|
||||||
|
# define COMPILER_ID "NVHPC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
||||||
|
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__PGI)
|
||||||
|
# define COMPILER_ID "PGI"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||||
|
# if defined(__PGIC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_CRAYC)
|
||||||
|
# define COMPILER_ID "Cray"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# define COMPILER_ID "TI"
|
||||||
|
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||||
|
|
||||||
|
#elif defined(__CLANG_FUJITSU)
|
||||||
|
# define COMPILER_ID "FujitsuClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__FUJITSU)
|
||||||
|
# define COMPILER_ID "Fujitsu"
|
||||||
|
# if defined(__FCC_version__)
|
||||||
|
# define COMPILER_VERSION __FCC_version__
|
||||||
|
# elif defined(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# endif
|
||||||
|
# if defined(__fcc_version)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
||||||
|
# elif defined(__FCC_VERSION)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# define COMPILER_ID "GHS"
|
||||||
|
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||||
|
# ifdef __GHS_VERSION_NUMBER
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TINYC__)
|
||||||
|
# define COMPILER_ID "TinyCC"
|
||||||
|
|
||||||
|
#elif defined(__BCC__)
|
||||||
|
# define COMPILER_ID "Bruce"
|
||||||
|
|
||||||
|
#elif defined(__SCO_VERSION__)
|
||||||
|
# define COMPILER_ID "SCO"
|
||||||
|
|
||||||
|
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||||
|
# define COMPILER_ID "ARMCC"
|
||||||
|
#if __ARMCC_VERSION >= 1000000
|
||||||
|
/* __ARMCC_VERSION = VRRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#else
|
||||||
|
/* __ARMCC_VERSION = VRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||||
|
# define COMPILER_ID "AppleClang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||||
|
# define COMPILER_ID "ARMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||||
|
|
||||||
|
#elif defined(__clang__)
|
||||||
|
# define COMPILER_ID "Clang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
# define COMPILER_ID "GNU"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define COMPILER_ID "MSVC"
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# if defined(_MSC_FULL_VER)
|
||||||
|
# if _MSC_VER >= 1400
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||||
|
# else
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_BUILD)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
|
||||||
|
# define COMPILER_ID "ADSP"
|
||||||
|
#if defined(__VISUALDSPVERSION__)
|
||||||
|
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# define COMPILER_ID "IAR"
|
||||||
|
# if defined(__VER__) && defined(__ICCARM__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
|
||||||
|
# define COMPILER_ID "SDCC"
|
||||||
|
# if defined(__SDCC_VERSION_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
|
||||||
|
# else
|
||||||
|
/* SDCC = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
/* These compilers are either not known or too old to define an
|
||||||
|
identification macro. Try to identify the platform and guess that
|
||||||
|
it is the native compiler. */
|
||||||
|
#elif defined(__hpux) || defined(__hpua)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
|
||||||
|
#else /* unknown compiler */
|
||||||
|
# define COMPILER_ID ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __QNXNTO__
|
||||||
|
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define STRINGIFY_HELPER(X) #X
|
||||||
|
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||||
|
|
||||||
|
/* Identify known platforms by name. */
|
||||||
|
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
#elif defined(__MSYS__)
|
||||||
|
# define PLATFORM_ID "MSYS"
|
||||||
|
|
||||||
|
#elif defined(__CYGWIN__)
|
||||||
|
# define PLATFORM_ID "Cygwin"
|
||||||
|
|
||||||
|
#elif defined(__MINGW32__)
|
||||||
|
# define PLATFORM_ID "MinGW"
|
||||||
|
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
# define PLATFORM_ID "Darwin"
|
||||||
|
|
||||||
|
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||||
|
# define PLATFORM_ID "Windows"
|
||||||
|
|
||||||
|
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||||
|
# define PLATFORM_ID "FreeBSD"
|
||||||
|
|
||||||
|
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||||
|
# define PLATFORM_ID "NetBSD"
|
||||||
|
|
||||||
|
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||||
|
# define PLATFORM_ID "OpenBSD"
|
||||||
|
|
||||||
|
#elif defined(__sun) || defined(sun)
|
||||||
|
# define PLATFORM_ID "SunOS"
|
||||||
|
|
||||||
|
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||||
|
# define PLATFORM_ID "AIX"
|
||||||
|
|
||||||
|
#elif defined(__hpux) || defined(__hpux__)
|
||||||
|
# define PLATFORM_ID "HP-UX"
|
||||||
|
|
||||||
|
#elif defined(__HAIKU__)
|
||||||
|
# define PLATFORM_ID "Haiku"
|
||||||
|
|
||||||
|
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||||
|
# define PLATFORM_ID "BeOS"
|
||||||
|
|
||||||
|
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||||
|
# define PLATFORM_ID "QNX"
|
||||||
|
|
||||||
|
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||||
|
# define PLATFORM_ID "Tru64"
|
||||||
|
|
||||||
|
#elif defined(__riscos) || defined(__riscos__)
|
||||||
|
# define PLATFORM_ID "RISCos"
|
||||||
|
|
||||||
|
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||||
|
# define PLATFORM_ID "SINIX"
|
||||||
|
|
||||||
|
#elif defined(__UNIX_SV__)
|
||||||
|
# define PLATFORM_ID "UNIX_SV"
|
||||||
|
|
||||||
|
#elif defined(__bsdos__)
|
||||||
|
# define PLATFORM_ID "BSDOS"
|
||||||
|
|
||||||
|
#elif defined(_MPRAS) || defined(MPRAS)
|
||||||
|
# define PLATFORM_ID "MP-RAS"
|
||||||
|
|
||||||
|
#elif defined(__osf) || defined(__osf__)
|
||||||
|
# define PLATFORM_ID "OSF1"
|
||||||
|
|
||||||
|
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||||
|
# define PLATFORM_ID "SCO_SV"
|
||||||
|
|
||||||
|
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||||
|
# define PLATFORM_ID "ULTRIX"
|
||||||
|
|
||||||
|
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||||
|
# define PLATFORM_ID "Xenix"
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(__LINUX__)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
# elif defined(__DOS__)
|
||||||
|
# define PLATFORM_ID "DOS"
|
||||||
|
|
||||||
|
# elif defined(__OS2__)
|
||||||
|
# define PLATFORM_ID "OS2"
|
||||||
|
|
||||||
|
# elif defined(__WINDOWS__)
|
||||||
|
# define PLATFORM_ID "Windows3x"
|
||||||
|
|
||||||
|
# elif defined(__VXWORKS__)
|
||||||
|
# define PLATFORM_ID "VxWorks"
|
||||||
|
|
||||||
|
# else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__INTEGRITY)
|
||||||
|
# if defined(INT_178B)
|
||||||
|
# define PLATFORM_ID "Integrity178"
|
||||||
|
|
||||||
|
# else /* regular Integrity */
|
||||||
|
# define PLATFORM_ID "Integrity"
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* For windows compilers MSVC and Intel we can determine
|
||||||
|
the architecture of the compiler being used. This is because
|
||||||
|
the compilers do not have flags that can change the architecture,
|
||||||
|
but rather depend on which compiler is being used
|
||||||
|
*/
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
# if defined(_M_IA64)
|
||||||
|
# define ARCHITECTURE_ID "IA64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64EC)
|
||||||
|
# define ARCHITECTURE_ID "ARM64EC"
|
||||||
|
|
||||||
|
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64)
|
||||||
|
# define ARCHITECTURE_ID "ARM64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM)
|
||||||
|
# if _M_ARM == 4
|
||||||
|
# define ARCHITECTURE_ID "ARMV4I"
|
||||||
|
# elif _M_ARM == 5
|
||||||
|
# define ARCHITECTURE_ID "ARMV5I"
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_M_MIPS)
|
||||||
|
# define ARCHITECTURE_ID "MIPS"
|
||||||
|
|
||||||
|
# elif defined(_M_SH)
|
||||||
|
# define ARCHITECTURE_ID "SHx"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(_M_I86)
|
||||||
|
# define ARCHITECTURE_ID "I86"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# if defined(__ICCARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__ICCRX__)
|
||||||
|
# define ARCHITECTURE_ID "RX"
|
||||||
|
|
||||||
|
# elif defined(__ICCRH850__)
|
||||||
|
# define ARCHITECTURE_ID "RH850"
|
||||||
|
|
||||||
|
# elif defined(__ICCRL78__)
|
||||||
|
# define ARCHITECTURE_ID "RL78"
|
||||||
|
|
||||||
|
# elif defined(__ICCRISCV__)
|
||||||
|
# define ARCHITECTURE_ID "RISCV"
|
||||||
|
|
||||||
|
# elif defined(__ICCAVR__)
|
||||||
|
# define ARCHITECTURE_ID "AVR"
|
||||||
|
|
||||||
|
# elif defined(__ICC430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__ICCV850__)
|
||||||
|
# define ARCHITECTURE_ID "V850"
|
||||||
|
|
||||||
|
# elif defined(__ICC8051__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__ICCSTM8__)
|
||||||
|
# define ARCHITECTURE_ID "STM8"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# if defined(__PPC64__)
|
||||||
|
# define ARCHITECTURE_ID "PPC64"
|
||||||
|
|
||||||
|
# elif defined(__ppc__)
|
||||||
|
# define ARCHITECTURE_ID "PPC"
|
||||||
|
|
||||||
|
# elif defined(__ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__x86_64__)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(__i386__)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# if defined(__TI_ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__MSP430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C28XX__)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C28x"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C6x"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else
|
||||||
|
# define ARCHITECTURE_ID
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Convert integer to decimal digit literals. */
|
||||||
|
#define DEC(n) \
|
||||||
|
('0' + (((n) / 10000000)%10)), \
|
||||||
|
('0' + (((n) / 1000000)%10)), \
|
||||||
|
('0' + (((n) / 100000)%10)), \
|
||||||
|
('0' + (((n) / 10000)%10)), \
|
||||||
|
('0' + (((n) / 1000)%10)), \
|
||||||
|
('0' + (((n) / 100)%10)), \
|
||||||
|
('0' + (((n) / 10)%10)), \
|
||||||
|
('0' + ((n) % 10))
|
||||||
|
|
||||||
|
/* Convert integer to hex digit literals. */
|
||||||
|
#define HEX(n) \
|
||||||
|
('0' + ((n)>>28 & 0xF)), \
|
||||||
|
('0' + ((n)>>24 & 0xF)), \
|
||||||
|
('0' + ((n)>>20 & 0xF)), \
|
||||||
|
('0' + ((n)>>16 & 0xF)), \
|
||||||
|
('0' + ((n)>>12 & 0xF)), \
|
||||||
|
('0' + ((n)>>8 & 0xF)), \
|
||||||
|
('0' + ((n)>>4 & 0xF)), \
|
||||||
|
('0' + ((n) & 0xF))
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number. */
|
||||||
|
#ifdef COMPILER_VERSION
|
||||||
|
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#elif defined(COMPILER_VERSION_MAJOR)
|
||||||
|
char const info_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||||
|
COMPILER_VERSION_MAJOR,
|
||||||
|
# ifdef COMPILER_VERSION_MINOR
|
||||||
|
'.', COMPILER_VERSION_MINOR,
|
||||||
|
# ifdef COMPILER_VERSION_PATCH
|
||||||
|
'.', COMPILER_VERSION_PATCH,
|
||||||
|
# ifdef COMPILER_VERSION_TWEAK
|
||||||
|
'.', COMPILER_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the internal version number. */
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
char const info_version_internal[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||||
|
'i','n','t','e','r','n','a','l','[',
|
||||||
|
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||||
|
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
char const info_simulate_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||||
|
SIMULATE_VERSION_MAJOR,
|
||||||
|
# ifdef SIMULATE_VERSION_MINOR
|
||||||
|
'.', SIMULATE_VERSION_MINOR,
|
||||||
|
# ifdef SIMULATE_VERSION_PATCH
|
||||||
|
'.', SIMULATE_VERSION_PATCH,
|
||||||
|
# ifdef SIMULATE_VERSION_TWEAK
|
||||||
|
'.', SIMULATE_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||||
|
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(__STDC__) && !defined(__clang__)
|
||||||
|
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
|
||||||
|
# define C_VERSION "90"
|
||||||
|
# else
|
||||||
|
# define C_VERSION
|
||||||
|
# endif
|
||||||
|
#elif __STDC_VERSION__ > 201710L
|
||||||
|
# define C_VERSION "23"
|
||||||
|
#elif __STDC_VERSION__ >= 201710L
|
||||||
|
# define C_VERSION "17"
|
||||||
|
#elif __STDC_VERSION__ >= 201000L
|
||||||
|
# define C_VERSION "11"
|
||||||
|
#elif __STDC_VERSION__ >= 199901L
|
||||||
|
# define C_VERSION "99"
|
||||||
|
#else
|
||||||
|
# define C_VERSION "90"
|
||||||
|
#endif
|
||||||
|
const char* info_language_standard_default =
|
||||||
|
"INFO" ":" "standard_default[" C_VERSION "]";
|
||||||
|
|
||||||
|
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
||||||
|
/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */
|
||||||
|
#if (defined(__clang__) || defined(__GNUC__) || \
|
||||||
|
defined(__TI_COMPILER_VERSION__)) && \
|
||||||
|
!defined(__STRICT_ANSI__) && !defined(_MSC_VER)
|
||||||
|
"ON"
|
||||||
|
#else
|
||||||
|
"OFF"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifdef ID_VOID_MAIN
|
||||||
|
void main() {}
|
||||||
|
#else
|
||||||
|
# if defined(__CLASSIC_C__)
|
||||||
|
int main(argc, argv) int argc; char *argv[];
|
||||||
|
# else
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
# endif
|
||||||
|
{
|
||||||
|
int require = 0;
|
||||||
|
require += info_compiler[argc];
|
||||||
|
require += info_platform[argc];
|
||||||
|
require += info_arch[argc];
|
||||||
|
#ifdef COMPILER_VERSION_MAJOR
|
||||||
|
require += info_version[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
require += info_version_internal[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
require += info_simulate[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
require += info_simulate_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
require += info_cray[argc];
|
||||||
|
#endif
|
||||||
|
require += info_language_standard_default[argc];
|
||||||
|
require += info_language_extensions_default[argc];
|
||||||
|
(void)argv;
|
||||||
|
return require;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
BIN
ros2_ws/src/darknet_vendor/build/CMakeFiles/3.22.1/CompilerIdC/a.out
Executable file
BIN
ros2_ws/src/darknet_vendor/build/CMakeFiles/3.22.1/CompilerIdC/a.out
Executable file
Binary file not shown.
@ -0,0 +1,791 @@
|
|||||||
|
/* This source file must have a .cpp extension so that all C++ compilers
|
||||||
|
recognize the extension without flags. Borland does not know .cxx for
|
||||||
|
example. */
|
||||||
|
#ifndef __cplusplus
|
||||||
|
# error "A C compiler has been selected for C++."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__has_include)
|
||||||
|
/* If the compiler does not have __has_include, pretend the answer is
|
||||||
|
always no. */
|
||||||
|
# define __has_include(x) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Version number components: V=Version, R=Revision, P=Patch
|
||||||
|
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||||
|
|
||||||
|
#if defined(__COMO__)
|
||||||
|
# define COMPILER_ID "Comeau"
|
||||||
|
/* __COMO_VERSION__ = VRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
|
||||||
|
|
||||||
|
#elif defined(__INTEL_COMPILER) || defined(__ICC)
|
||||||
|
# define COMPILER_ID "Intel"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# endif
|
||||||
|
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
||||||
|
except that a few beta releases use the old format with V=2021. */
|
||||||
|
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||||
|
# if defined(__INTEL_COMPILER_UPDATE)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
/* The third version component from --version is an update index,
|
||||||
|
but no macro is provided for it. */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(0)
|
||||||
|
# endif
|
||||||
|
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
||||||
|
# define COMPILER_ID "IntelLLVM"
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
#endif
|
||||||
|
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
||||||
|
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
||||||
|
* VVVV is no smaller than the current year when a version is released.
|
||||||
|
*/
|
||||||
|
#if __INTEL_LLVM_COMPILER < 1000000L
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
||||||
|
#else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
#elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__PATHCC__)
|
||||||
|
# define COMPILER_ID "PathScale"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||||
|
# if defined(__PATHCC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||||
|
# define COMPILER_ID "Embarcadero"
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__)
|
||||||
|
# define COMPILER_ID "Borland"
|
||||||
|
/* __BORLANDC__ = 0xVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||||
|
# define COMPILER_ID "Watcom"
|
||||||
|
/* __WATCOMC__ = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# define COMPILER_ID "OpenWatcom"
|
||||||
|
/* __WATCOMC__ = VVRP + 1100 */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SUNPRO_CC)
|
||||||
|
# define COMPILER_ID "SunPro"
|
||||||
|
# if __SUNPRO_CC >= 0x5100
|
||||||
|
/* __SUNPRO_CC = 0xVRRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||||
|
# else
|
||||||
|
/* __SUNPRO_CC = 0xVRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__HP_aCC)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
/* __HP_aCC = VVRRPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
|
||||||
|
|
||||||
|
#elif defined(__DECCXX)
|
||||||
|
# define COMPILER_ID "Compaq"
|
||||||
|
/* __DECCXX_VER = VVRRTPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
|
||||||
|
# define COMPILER_ID "zOS"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__ibmxl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "XLClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
|
||||||
|
# define COMPILER_ID "XL"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
|
||||||
|
# define COMPILER_ID "VisualAge"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__NVCOMPILER)
|
||||||
|
# define COMPILER_ID "NVHPC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
||||||
|
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__PGI)
|
||||||
|
# define COMPILER_ID "PGI"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||||
|
# if defined(__PGIC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_CRAYC)
|
||||||
|
# define COMPILER_ID "Cray"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# define COMPILER_ID "TI"
|
||||||
|
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||||
|
|
||||||
|
#elif defined(__CLANG_FUJITSU)
|
||||||
|
# define COMPILER_ID "FujitsuClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__FUJITSU)
|
||||||
|
# define COMPILER_ID "Fujitsu"
|
||||||
|
# if defined(__FCC_version__)
|
||||||
|
# define COMPILER_VERSION __FCC_version__
|
||||||
|
# elif defined(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# endif
|
||||||
|
# if defined(__fcc_version)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
||||||
|
# elif defined(__FCC_VERSION)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# define COMPILER_ID "GHS"
|
||||||
|
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||||
|
# ifdef __GHS_VERSION_NUMBER
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SCO_VERSION__)
|
||||||
|
# define COMPILER_ID "SCO"
|
||||||
|
|
||||||
|
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||||
|
# define COMPILER_ID "ARMCC"
|
||||||
|
#if __ARMCC_VERSION >= 1000000
|
||||||
|
/* __ARMCC_VERSION = VRRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#else
|
||||||
|
/* __ARMCC_VERSION = VRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||||
|
# define COMPILER_ID "AppleClang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||||
|
# define COMPILER_ID "ARMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||||
|
|
||||||
|
#elif defined(__clang__)
|
||||||
|
# define COMPILER_ID "Clang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__GNUC__) || defined(__GNUG__)
|
||||||
|
# define COMPILER_ID "GNU"
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define COMPILER_ID "MSVC"
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# if defined(_MSC_FULL_VER)
|
||||||
|
# if _MSC_VER >= 1400
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||||
|
# else
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_BUILD)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
|
||||||
|
# define COMPILER_ID "ADSP"
|
||||||
|
#if defined(__VISUALDSPVERSION__)
|
||||||
|
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# define COMPILER_ID "IAR"
|
||||||
|
# if defined(__VER__) && defined(__ICCARM__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
/* These compilers are either not known or too old to define an
|
||||||
|
identification macro. Try to identify the platform and guess that
|
||||||
|
it is the native compiler. */
|
||||||
|
#elif defined(__hpux) || defined(__hpua)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
|
||||||
|
#else /* unknown compiler */
|
||||||
|
# define COMPILER_ID ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __QNXNTO__
|
||||||
|
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define STRINGIFY_HELPER(X) #X
|
||||||
|
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||||
|
|
||||||
|
/* Identify known platforms by name. */
|
||||||
|
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
#elif defined(__MSYS__)
|
||||||
|
# define PLATFORM_ID "MSYS"
|
||||||
|
|
||||||
|
#elif defined(__CYGWIN__)
|
||||||
|
# define PLATFORM_ID "Cygwin"
|
||||||
|
|
||||||
|
#elif defined(__MINGW32__)
|
||||||
|
# define PLATFORM_ID "MinGW"
|
||||||
|
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
# define PLATFORM_ID "Darwin"
|
||||||
|
|
||||||
|
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||||
|
# define PLATFORM_ID "Windows"
|
||||||
|
|
||||||
|
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||||
|
# define PLATFORM_ID "FreeBSD"
|
||||||
|
|
||||||
|
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||||
|
# define PLATFORM_ID "NetBSD"
|
||||||
|
|
||||||
|
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||||
|
# define PLATFORM_ID "OpenBSD"
|
||||||
|
|
||||||
|
#elif defined(__sun) || defined(sun)
|
||||||
|
# define PLATFORM_ID "SunOS"
|
||||||
|
|
||||||
|
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||||
|
# define PLATFORM_ID "AIX"
|
||||||
|
|
||||||
|
#elif defined(__hpux) || defined(__hpux__)
|
||||||
|
# define PLATFORM_ID "HP-UX"
|
||||||
|
|
||||||
|
#elif defined(__HAIKU__)
|
||||||
|
# define PLATFORM_ID "Haiku"
|
||||||
|
|
||||||
|
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||||
|
# define PLATFORM_ID "BeOS"
|
||||||
|
|
||||||
|
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||||
|
# define PLATFORM_ID "QNX"
|
||||||
|
|
||||||
|
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||||
|
# define PLATFORM_ID "Tru64"
|
||||||
|
|
||||||
|
#elif defined(__riscos) || defined(__riscos__)
|
||||||
|
# define PLATFORM_ID "RISCos"
|
||||||
|
|
||||||
|
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||||
|
# define PLATFORM_ID "SINIX"
|
||||||
|
|
||||||
|
#elif defined(__UNIX_SV__)
|
||||||
|
# define PLATFORM_ID "UNIX_SV"
|
||||||
|
|
||||||
|
#elif defined(__bsdos__)
|
||||||
|
# define PLATFORM_ID "BSDOS"
|
||||||
|
|
||||||
|
#elif defined(_MPRAS) || defined(MPRAS)
|
||||||
|
# define PLATFORM_ID "MP-RAS"
|
||||||
|
|
||||||
|
#elif defined(__osf) || defined(__osf__)
|
||||||
|
# define PLATFORM_ID "OSF1"
|
||||||
|
|
||||||
|
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||||
|
# define PLATFORM_ID "SCO_SV"
|
||||||
|
|
||||||
|
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||||
|
# define PLATFORM_ID "ULTRIX"
|
||||||
|
|
||||||
|
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||||
|
# define PLATFORM_ID "Xenix"
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(__LINUX__)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
# elif defined(__DOS__)
|
||||||
|
# define PLATFORM_ID "DOS"
|
||||||
|
|
||||||
|
# elif defined(__OS2__)
|
||||||
|
# define PLATFORM_ID "OS2"
|
||||||
|
|
||||||
|
# elif defined(__WINDOWS__)
|
||||||
|
# define PLATFORM_ID "Windows3x"
|
||||||
|
|
||||||
|
# elif defined(__VXWORKS__)
|
||||||
|
# define PLATFORM_ID "VxWorks"
|
||||||
|
|
||||||
|
# else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__INTEGRITY)
|
||||||
|
# if defined(INT_178B)
|
||||||
|
# define PLATFORM_ID "Integrity178"
|
||||||
|
|
||||||
|
# else /* regular Integrity */
|
||||||
|
# define PLATFORM_ID "Integrity"
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* For windows compilers MSVC and Intel we can determine
|
||||||
|
the architecture of the compiler being used. This is because
|
||||||
|
the compilers do not have flags that can change the architecture,
|
||||||
|
but rather depend on which compiler is being used
|
||||||
|
*/
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
# if defined(_M_IA64)
|
||||||
|
# define ARCHITECTURE_ID "IA64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64EC)
|
||||||
|
# define ARCHITECTURE_ID "ARM64EC"
|
||||||
|
|
||||||
|
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64)
|
||||||
|
# define ARCHITECTURE_ID "ARM64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM)
|
||||||
|
# if _M_ARM == 4
|
||||||
|
# define ARCHITECTURE_ID "ARMV4I"
|
||||||
|
# elif _M_ARM == 5
|
||||||
|
# define ARCHITECTURE_ID "ARMV5I"
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_M_MIPS)
|
||||||
|
# define ARCHITECTURE_ID "MIPS"
|
||||||
|
|
||||||
|
# elif defined(_M_SH)
|
||||||
|
# define ARCHITECTURE_ID "SHx"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(_M_I86)
|
||||||
|
# define ARCHITECTURE_ID "I86"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# if defined(__ICCARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__ICCRX__)
|
||||||
|
# define ARCHITECTURE_ID "RX"
|
||||||
|
|
||||||
|
# elif defined(__ICCRH850__)
|
||||||
|
# define ARCHITECTURE_ID "RH850"
|
||||||
|
|
||||||
|
# elif defined(__ICCRL78__)
|
||||||
|
# define ARCHITECTURE_ID "RL78"
|
||||||
|
|
||||||
|
# elif defined(__ICCRISCV__)
|
||||||
|
# define ARCHITECTURE_ID "RISCV"
|
||||||
|
|
||||||
|
# elif defined(__ICCAVR__)
|
||||||
|
# define ARCHITECTURE_ID "AVR"
|
||||||
|
|
||||||
|
# elif defined(__ICC430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__ICCV850__)
|
||||||
|
# define ARCHITECTURE_ID "V850"
|
||||||
|
|
||||||
|
# elif defined(__ICC8051__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__ICCSTM8__)
|
||||||
|
# define ARCHITECTURE_ID "STM8"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# if defined(__PPC64__)
|
||||||
|
# define ARCHITECTURE_ID "PPC64"
|
||||||
|
|
||||||
|
# elif defined(__ppc__)
|
||||||
|
# define ARCHITECTURE_ID "PPC"
|
||||||
|
|
||||||
|
# elif defined(__ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__x86_64__)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(__i386__)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# if defined(__TI_ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__MSP430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C28XX__)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C28x"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C6x"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else
|
||||||
|
# define ARCHITECTURE_ID
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Convert integer to decimal digit literals. */
|
||||||
|
#define DEC(n) \
|
||||||
|
('0' + (((n) / 10000000)%10)), \
|
||||||
|
('0' + (((n) / 1000000)%10)), \
|
||||||
|
('0' + (((n) / 100000)%10)), \
|
||||||
|
('0' + (((n) / 10000)%10)), \
|
||||||
|
('0' + (((n) / 1000)%10)), \
|
||||||
|
('0' + (((n) / 100)%10)), \
|
||||||
|
('0' + (((n) / 10)%10)), \
|
||||||
|
('0' + ((n) % 10))
|
||||||
|
|
||||||
|
/* Convert integer to hex digit literals. */
|
||||||
|
#define HEX(n) \
|
||||||
|
('0' + ((n)>>28 & 0xF)), \
|
||||||
|
('0' + ((n)>>24 & 0xF)), \
|
||||||
|
('0' + ((n)>>20 & 0xF)), \
|
||||||
|
('0' + ((n)>>16 & 0xF)), \
|
||||||
|
('0' + ((n)>>12 & 0xF)), \
|
||||||
|
('0' + ((n)>>8 & 0xF)), \
|
||||||
|
('0' + ((n)>>4 & 0xF)), \
|
||||||
|
('0' + ((n) & 0xF))
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number. */
|
||||||
|
#ifdef COMPILER_VERSION
|
||||||
|
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#elif defined(COMPILER_VERSION_MAJOR)
|
||||||
|
char const info_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||||
|
COMPILER_VERSION_MAJOR,
|
||||||
|
# ifdef COMPILER_VERSION_MINOR
|
||||||
|
'.', COMPILER_VERSION_MINOR,
|
||||||
|
# ifdef COMPILER_VERSION_PATCH
|
||||||
|
'.', COMPILER_VERSION_PATCH,
|
||||||
|
# ifdef COMPILER_VERSION_TWEAK
|
||||||
|
'.', COMPILER_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the internal version number. */
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
char const info_version_internal[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||||
|
'i','n','t','e','r','n','a','l','[',
|
||||||
|
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||||
|
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
char const info_simulate_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||||
|
SIMULATE_VERSION_MAJOR,
|
||||||
|
# ifdef SIMULATE_VERSION_MINOR
|
||||||
|
'.', SIMULATE_VERSION_MINOR,
|
||||||
|
# ifdef SIMULATE_VERSION_PATCH
|
||||||
|
'.', SIMULATE_VERSION_PATCH,
|
||||||
|
# ifdef SIMULATE_VERSION_TWEAK
|
||||||
|
'.', SIMULATE_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||||
|
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
|
||||||
|
# if defined(__INTEL_CXX11_MODE__)
|
||||||
|
# if defined(__cpp_aggregate_nsdmi)
|
||||||
|
# define CXX_STD 201402L
|
||||||
|
# else
|
||||||
|
# define CXX_STD 201103L
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
# define CXX_STD 199711L
|
||||||
|
# endif
|
||||||
|
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
|
||||||
|
# define CXX_STD _MSVC_LANG
|
||||||
|
#else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
#endif
|
||||||
|
|
||||||
|
const char* info_language_standard_default = "INFO" ":" "standard_default["
|
||||||
|
#if CXX_STD > 202002L
|
||||||
|
"23"
|
||||||
|
#elif CXX_STD > 201703L
|
||||||
|
"20"
|
||||||
|
#elif CXX_STD >= 201703L
|
||||||
|
"17"
|
||||||
|
#elif CXX_STD >= 201402L
|
||||||
|
"14"
|
||||||
|
#elif CXX_STD >= 201103L
|
||||||
|
"11"
|
||||||
|
#else
|
||||||
|
"98"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
||||||
|
/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */
|
||||||
|
#if (defined(__clang__) || defined(__GNUC__) || \
|
||||||
|
defined(__TI_COMPILER_VERSION__)) && \
|
||||||
|
!defined(__STRICT_ANSI__) && !defined(_MSC_VER)
|
||||||
|
"ON"
|
||||||
|
#else
|
||||||
|
"OFF"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
{
|
||||||
|
int require = 0;
|
||||||
|
require += info_compiler[argc];
|
||||||
|
require += info_platform[argc];
|
||||||
|
#ifdef COMPILER_VERSION_MAJOR
|
||||||
|
require += info_version[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
require += info_version_internal[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
require += info_simulate[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
require += info_simulate_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
require += info_cray[argc];
|
||||||
|
#endif
|
||||||
|
require += info_language_standard_default[argc];
|
||||||
|
require += info_language_extensions_default[argc];
|
||||||
|
(void)argv;
|
||||||
|
return require;
|
||||||
|
}
|
||||||
BIN
ros2_ws/src/darknet_vendor/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out
Executable file
BIN
ros2_ws/src/darknet_vendor/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out
Executable file
Binary file not shown.
@ -0,0 +1,16 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||||
|
|
||||||
|
# Relative path conversion top directories.
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor")
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build")
|
||||||
|
|
||||||
|
# Force unix paths in dependencies.
|
||||||
|
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||||
|
|
||||||
|
|
||||||
|
# The C and CXX include file regular expressions for this directory.
|
||||||
|
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||||
|
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||||
|
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||||
|
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
||||||
485
ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeOutput.log
Normal file
485
ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeOutput.log
Normal file
@ -0,0 +1,485 @@
|
|||||||
|
The system is: Linux - 5.15.0-67-generic - aarch64
|
||||||
|
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
||||||
|
Compiler: /usr/bin/cc
|
||||||
|
Build flags:
|
||||||
|
Id flags:
|
||||||
|
|
||||||
|
The output was:
|
||||||
|
0
|
||||||
|
|
||||||
|
|
||||||
|
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
|
||||||
|
|
||||||
|
The C compiler identification is GNU, found in "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/3.22.1/CompilerIdC/a.out"
|
||||||
|
|
||||||
|
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
||||||
|
Compiler: /usr/bin/c++
|
||||||
|
Build flags:
|
||||||
|
Id flags:
|
||||||
|
|
||||||
|
The output was:
|
||||||
|
0
|
||||||
|
|
||||||
|
|
||||||
|
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
|
||||||
|
|
||||||
|
The CXX compiler identification is GNU, found in "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out"
|
||||||
|
|
||||||
|
Detecting C compiler ABI info compiled with the following output:
|
||||||
|
Change Dir: /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_e5cfd/fast && /usr/bin/gmake -f CMakeFiles/cmTC_e5cfd.dir/build.make CMakeFiles/cmTC_e5cfd.dir/build
|
||||||
|
gmake[1]: Entering directory '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o
|
||||||
|
/usr/bin/cc -v -o CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=/usr/bin/cc
|
||||||
|
Target: aarch64-linux-gnu
|
||||||
|
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.3.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 11.3.0 (Ubuntu 11.3.0-1ubuntu1~22.04)
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_e5cfd.dir/'
|
||||||
|
/usr/lib/gcc/aarch64-linux-gnu/11/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_e5cfd.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cc9wqW7F.s
|
||||||
|
GNU C17 (Ubuntu 11.3.0-1ubuntu1~22.04) version 11.3.0 (aarch64-linux-gnu)
|
||||||
|
compiled by GNU C version 11.3.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
|
||||||
|
|
||||||
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
|
ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"
|
||||||
|
ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed"
|
||||||
|
ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include"
|
||||||
|
#include "..." search starts here:
|
||||||
|
#include <...> search starts here:
|
||||||
|
/usr/lib/gcc/aarch64-linux-gnu/11/include
|
||||||
|
/usr/local/include
|
||||||
|
/usr/include/aarch64-linux-gnu
|
||||||
|
/usr/include
|
||||||
|
End of search list.
|
||||||
|
GNU C17 (Ubuntu 11.3.0-1ubuntu1~22.04) version 11.3.0 (aarch64-linux-gnu)
|
||||||
|
compiled by GNU C version 11.3.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
|
||||||
|
|
||||||
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
|
Compiler executable checksum: 06562aa9f506efde66562d94abdb9ed5
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_e5cfd.dir/'
|
||||||
|
as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o /tmp/cc9wqW7F.s
|
||||||
|
GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38
|
||||||
|
COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/
|
||||||
|
LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.'
|
||||||
|
Linking C executable cmTC_e5cfd
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e5cfd.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -v CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o -o cmTC_e5cfd
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=/usr/bin/cc
|
||||||
|
COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper
|
||||||
|
Target: aarch64-linux-gnu
|
||||||
|
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.3.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 11.3.0 (Ubuntu 11.3.0-1ubuntu1~22.04)
|
||||||
|
COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/
|
||||||
|
LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e5cfd' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_e5cfd.'
|
||||||
|
/usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccPJhY3C.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 --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_e5cfd /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_e5cfd.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/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e5cfd' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_e5cfd.'
|
||||||
|
gmake[1]: Leaving directory '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Parsed C implicit include dir info from above output: rv=done
|
||||||
|
found start of include info
|
||||||
|
found start of implicit include info
|
||||||
|
add: [/usr/lib/gcc/aarch64-linux-gnu/11/include]
|
||||||
|
add: [/usr/local/include]
|
||||||
|
add: [/usr/include/aarch64-linux-gnu]
|
||||||
|
add: [/usr/include]
|
||||||
|
end of search list found
|
||||||
|
collapse include dir [/usr/lib/gcc/aarch64-linux-gnu/11/include] ==> [/usr/lib/gcc/aarch64-linux-gnu/11/include]
|
||||||
|
collapse include dir [/usr/local/include] ==> [/usr/local/include]
|
||||||
|
collapse include dir [/usr/include/aarch64-linux-gnu] ==> [/usr/include/aarch64-linux-gnu]
|
||||||
|
collapse include dir [/usr/include] ==> [/usr/include]
|
||||||
|
implicit include dirs: [/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include]
|
||||||
|
|
||||||
|
|
||||||
|
Parsed C implicit link information from above output:
|
||||||
|
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||||
|
ignore line: [Change Dir: /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_e5cfd/fast && /usr/bin/gmake -f CMakeFiles/cmTC_e5cfd.dir/build.make CMakeFiles/cmTC_e5cfd.dir/build]
|
||||||
|
ignore line: [gmake[1]: Entering directory '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp']
|
||||||
|
ignore line: [Building C object CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o]
|
||||||
|
ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
||||||
|
ignore line: [Target: aarch64-linux-gnu]
|
||||||
|
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.3.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 11.3.0 (Ubuntu 11.3.0-1ubuntu1~22.04) ]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_e5cfd.dir/']
|
||||||
|
ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_e5cfd.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cc9wqW7F.s]
|
||||||
|
ignore line: [GNU C17 (Ubuntu 11.3.0-1ubuntu1~22.04) version 11.3.0 (aarch64-linux-gnu)]
|
||||||
|
ignore line: [ compiled by GNU C version 11.3.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
|
ignore line: [ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"]
|
||||||
|
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed"]
|
||||||
|
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include"]
|
||||||
|
ignore line: [#include "..." search starts here:]
|
||||||
|
ignore line: [#include <...> search starts here:]
|
||||||
|
ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/include]
|
||||||
|
ignore line: [ /usr/local/include]
|
||||||
|
ignore line: [ /usr/include/aarch64-linux-gnu]
|
||||||
|
ignore line: [ /usr/include]
|
||||||
|
ignore line: [End of search list.]
|
||||||
|
ignore line: [GNU C17 (Ubuntu 11.3.0-1ubuntu1~22.04) version 11.3.0 (aarch64-linux-gnu)]
|
||||||
|
ignore line: [ compiled by GNU C version 11.3.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
|
ignore line: [Compiler executable checksum: 06562aa9f506efde66562d94abdb9ed5]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_e5cfd.dir/']
|
||||||
|
ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o /tmp/cc9wqW7F.s]
|
||||||
|
ignore line: [GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38]
|
||||||
|
ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/]
|
||||||
|
ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.']
|
||||||
|
ignore line: [Linking C executable cmTC_e5cfd]
|
||||||
|
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e5cfd.dir/link.txt --verbose=1]
|
||||||
|
ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o -o cmTC_e5cfd ]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
||||||
|
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper]
|
||||||
|
ignore line: [Target: aarch64-linux-gnu]
|
||||||
|
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.3.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 11.3.0 (Ubuntu 11.3.0-1ubuntu1~22.04) ]
|
||||||
|
ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/]
|
||||||
|
ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e5cfd' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_e5cfd.']
|
||||||
|
link line: [ /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccPJhY3C.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 --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_e5cfd /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_e5cfd.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/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o]
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/collect2] ==> ignore
|
||||||
|
arg [-plugin] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so] ==> ignore
|
||||||
|
arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] ==> ignore
|
||||||
|
arg [-plugin-opt=-fresolution=/tmp/ccPJhY3C.res] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||||
|
arg [--build-id] ==> ignore
|
||||||
|
arg [--eh-frame-hdr] ==> ignore
|
||||||
|
arg [--hash-style=gnu] ==> ignore
|
||||||
|
arg [--as-needed] ==> ignore
|
||||||
|
arg [-dynamic-linker] ==> ignore
|
||||||
|
arg [/lib/ld-linux-aarch64.so.1] ==> ignore
|
||||||
|
arg [-X] ==> ignore
|
||||||
|
arg [-EL] ==> ignore
|
||||||
|
arg [-maarch64linux] ==> ignore
|
||||||
|
arg [--fix-cortex-a53-843419] ==> ignore
|
||||||
|
arg [-pie] ==> ignore
|
||||||
|
arg [-znow] ==> ignore
|
||||||
|
arg [-zrelro] ==> ignore
|
||||||
|
arg [-o] ==> ignore
|
||||||
|
arg [cmTC_e5cfd] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o]
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o]
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o]
|
||||||
|
arg [-L/usr/lib/gcc/aarch64-linux-gnu/11] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11]
|
||||||
|
arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu]
|
||||||
|
arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib]
|
||||||
|
arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu]
|
||||||
|
arg [-L/lib/../lib] ==> dir [/lib/../lib]
|
||||||
|
arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu]
|
||||||
|
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
||||||
|
arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..]
|
||||||
|
arg [CMakeFiles/cmTC_e5cfd.dir/CMakeCCompilerABI.c.o] ==> ignore
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [--push-state] ==> ignore
|
||||||
|
arg [--as-needed] ==> ignore
|
||||||
|
arg [-lgcc_s] ==> lib [gcc_s]
|
||||||
|
arg [--pop-state] ==> ignore
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [--push-state] ==> ignore
|
||||||
|
arg [--as-needed] ==> ignore
|
||||||
|
arg [-lgcc_s] ==> lib [gcc_s]
|
||||||
|
arg [--pop-state] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o]
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o]
|
||||||
|
collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> [/usr/lib/aarch64-linux-gnu/Scrt1.o]
|
||||||
|
collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> [/usr/lib/aarch64-linux-gnu/crti.o]
|
||||||
|
collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> [/usr/lib/aarch64-linux-gnu/crtn.o]
|
||||||
|
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11] ==> [/usr/lib/gcc/aarch64-linux-gnu/11]
|
||||||
|
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu]
|
||||||
|
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> [/usr/lib]
|
||||||
|
collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu]
|
||||||
|
collapse library dir [/lib/../lib] ==> [/lib]
|
||||||
|
collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu]
|
||||||
|
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
|
||||||
|
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> [/usr/lib]
|
||||||
|
implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
|
||||||
|
implicit objs: [/usr/lib/aarch64-linux-gnu/Scrt1.o;/usr/lib/aarch64-linux-gnu/crti.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o;/usr/lib/aarch64-linux-gnu/crtn.o]
|
||||||
|
implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib]
|
||||||
|
implicit fwks: []
|
||||||
|
|
||||||
|
|
||||||
|
Detecting CXX compiler ABI info compiled with the following output:
|
||||||
|
Change Dir: /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_38230/fast && /usr/bin/gmake -f CMakeFiles/cmTC_38230.dir/build.make CMakeFiles/cmTC_38230.dir/build
|
||||||
|
gmake[1]: Entering directory '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building CXX object CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o
|
||||||
|
/usr/bin/c++ -v -o CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=/usr/bin/c++
|
||||||
|
Target: aarch64-linux-gnu
|
||||||
|
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.3.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 11.3.0 (Ubuntu 11.3.0-1ubuntu1~22.04)
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_38230.dir/'
|
||||||
|
/usr/lib/gcc/aarch64-linux-gnu/11/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_38230.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cc9ydPcn.s
|
||||||
|
GNU C++17 (Ubuntu 11.3.0-1ubuntu1~22.04) version 11.3.0 (aarch64-linux-gnu)
|
||||||
|
compiled by GNU C version 11.3.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
|
||||||
|
|
||||||
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
|
ignoring duplicate directory "/usr/include/aarch64-linux-gnu/c++/11"
|
||||||
|
ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"
|
||||||
|
ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed"
|
||||||
|
ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include"
|
||||||
|
#include "..." search starts here:
|
||||||
|
#include <...> search starts here:
|
||||||
|
/usr/include/c++/11
|
||||||
|
/usr/include/aarch64-linux-gnu/c++/11
|
||||||
|
/usr/include/c++/11/backward
|
||||||
|
/usr/lib/gcc/aarch64-linux-gnu/11/include
|
||||||
|
/usr/local/include
|
||||||
|
/usr/include/aarch64-linux-gnu
|
||||||
|
/usr/include
|
||||||
|
End of search list.
|
||||||
|
GNU C++17 (Ubuntu 11.3.0-1ubuntu1~22.04) version 11.3.0 (aarch64-linux-gnu)
|
||||||
|
compiled by GNU C version 11.3.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
|
||||||
|
|
||||||
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
|
Compiler executable checksum: e47c5262693bacf48cf5a6899df204a1
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_38230.dir/'
|
||||||
|
as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc9ydPcn.s
|
||||||
|
GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38
|
||||||
|
COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/
|
||||||
|
LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.'
|
||||||
|
Linking CXX executable cmTC_38230
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_38230.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/c++ -v CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_38230
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=/usr/bin/c++
|
||||||
|
COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper
|
||||||
|
Target: aarch64-linux-gnu
|
||||||
|
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.3.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 11.3.0 (Ubuntu 11.3.0-1ubuntu1~22.04)
|
||||||
|
COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/
|
||||||
|
LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_38230' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_38230.'
|
||||||
|
/usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccigCBeu.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 --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_38230 /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_38230' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_38230.'
|
||||||
|
gmake[1]: Leaving directory '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Parsed CXX implicit include dir info from above output: rv=done
|
||||||
|
found start of include info
|
||||||
|
found start of implicit include info
|
||||||
|
add: [/usr/include/c++/11]
|
||||||
|
add: [/usr/include/aarch64-linux-gnu/c++/11]
|
||||||
|
add: [/usr/include/c++/11/backward]
|
||||||
|
add: [/usr/lib/gcc/aarch64-linux-gnu/11/include]
|
||||||
|
add: [/usr/local/include]
|
||||||
|
add: [/usr/include/aarch64-linux-gnu]
|
||||||
|
add: [/usr/include]
|
||||||
|
end of search list found
|
||||||
|
collapse include dir [/usr/include/c++/11] ==> [/usr/include/c++/11]
|
||||||
|
collapse include dir [/usr/include/aarch64-linux-gnu/c++/11] ==> [/usr/include/aarch64-linux-gnu/c++/11]
|
||||||
|
collapse include dir [/usr/include/c++/11/backward] ==> [/usr/include/c++/11/backward]
|
||||||
|
collapse include dir [/usr/lib/gcc/aarch64-linux-gnu/11/include] ==> [/usr/lib/gcc/aarch64-linux-gnu/11/include]
|
||||||
|
collapse include dir [/usr/local/include] ==> [/usr/local/include]
|
||||||
|
collapse include dir [/usr/include/aarch64-linux-gnu] ==> [/usr/include/aarch64-linux-gnu]
|
||||||
|
collapse include dir [/usr/include] ==> [/usr/include]
|
||||||
|
implicit include dirs: [/usr/include/c++/11;/usr/include/aarch64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include]
|
||||||
|
|
||||||
|
|
||||||
|
Parsed CXX implicit link information from above output:
|
||||||
|
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||||
|
ignore line: [Change Dir: /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_38230/fast && /usr/bin/gmake -f CMakeFiles/cmTC_38230.dir/build.make CMakeFiles/cmTC_38230.dir/build]
|
||||||
|
ignore line: [gmake[1]: Entering directory '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp']
|
||||||
|
ignore line: [Building CXX object CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o]
|
||||||
|
ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=/usr/bin/c++]
|
||||||
|
ignore line: [Target: aarch64-linux-gnu]
|
||||||
|
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.3.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 11.3.0 (Ubuntu 11.3.0-1ubuntu1~22.04) ]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_38230.dir/']
|
||||||
|
ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_38230.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cc9ydPcn.s]
|
||||||
|
ignore line: [GNU C++17 (Ubuntu 11.3.0-1ubuntu1~22.04) version 11.3.0 (aarch64-linux-gnu)]
|
||||||
|
ignore line: [ compiled by GNU C version 11.3.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
|
ignore line: [ignoring duplicate directory "/usr/include/aarch64-linux-gnu/c++/11"]
|
||||||
|
ignore line: [ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"]
|
||||||
|
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed"]
|
||||||
|
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include"]
|
||||||
|
ignore line: [#include "..." search starts here:]
|
||||||
|
ignore line: [#include <...> search starts here:]
|
||||||
|
ignore line: [ /usr/include/c++/11]
|
||||||
|
ignore line: [ /usr/include/aarch64-linux-gnu/c++/11]
|
||||||
|
ignore line: [ /usr/include/c++/11/backward]
|
||||||
|
ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/include]
|
||||||
|
ignore line: [ /usr/local/include]
|
||||||
|
ignore line: [ /usr/include/aarch64-linux-gnu]
|
||||||
|
ignore line: [ /usr/include]
|
||||||
|
ignore line: [End of search list.]
|
||||||
|
ignore line: [GNU C++17 (Ubuntu 11.3.0-1ubuntu1~22.04) version 11.3.0 (aarch64-linux-gnu)]
|
||||||
|
ignore line: [ compiled by GNU C version 11.3.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
|
ignore line: [Compiler executable checksum: e47c5262693bacf48cf5a6899df204a1]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_38230.dir/']
|
||||||
|
ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc9ydPcn.s]
|
||||||
|
ignore line: [GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38]
|
||||||
|
ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/]
|
||||||
|
ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.']
|
||||||
|
ignore line: [Linking CXX executable cmTC_38230]
|
||||||
|
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_38230.dir/link.txt --verbose=1]
|
||||||
|
ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_38230 ]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=/usr/bin/c++]
|
||||||
|
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper]
|
||||||
|
ignore line: [Target: aarch64-linux-gnu]
|
||||||
|
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.3.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 11.3.0 (Ubuntu 11.3.0-1ubuntu1~22.04) ]
|
||||||
|
ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/]
|
||||||
|
ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_38230' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_38230.']
|
||||||
|
link line: [ /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccigCBeu.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 --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_38230 /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o]
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/collect2] ==> ignore
|
||||||
|
arg [-plugin] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so] ==> ignore
|
||||||
|
arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] ==> ignore
|
||||||
|
arg [-plugin-opt=-fresolution=/tmp/ccigCBeu.res] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [--build-id] ==> ignore
|
||||||
|
arg [--eh-frame-hdr] ==> ignore
|
||||||
|
arg [--hash-style=gnu] ==> ignore
|
||||||
|
arg [--as-needed] ==> ignore
|
||||||
|
arg [-dynamic-linker] ==> ignore
|
||||||
|
arg [/lib/ld-linux-aarch64.so.1] ==> ignore
|
||||||
|
arg [-X] ==> ignore
|
||||||
|
arg [-EL] ==> ignore
|
||||||
|
arg [-maarch64linux] ==> ignore
|
||||||
|
arg [--fix-cortex-a53-843419] ==> ignore
|
||||||
|
arg [-pie] ==> ignore
|
||||||
|
arg [-znow] ==> ignore
|
||||||
|
arg [-zrelro] ==> ignore
|
||||||
|
arg [-o] ==> ignore
|
||||||
|
arg [cmTC_38230] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o]
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o]
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o]
|
||||||
|
arg [-L/usr/lib/gcc/aarch64-linux-gnu/11] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11]
|
||||||
|
arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu]
|
||||||
|
arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib]
|
||||||
|
arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu]
|
||||||
|
arg [-L/lib/../lib] ==> dir [/lib/../lib]
|
||||||
|
arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu]
|
||||||
|
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
||||||
|
arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..]
|
||||||
|
arg [CMakeFiles/cmTC_38230.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
|
||||||
|
arg [-lstdc++] ==> lib [stdc++]
|
||||||
|
arg [-lm] ==> lib [m]
|
||||||
|
arg [-lgcc_s] ==> lib [gcc_s]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lgcc_s] ==> lib [gcc_s]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o]
|
||||||
|
arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o]
|
||||||
|
collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> [/usr/lib/aarch64-linux-gnu/Scrt1.o]
|
||||||
|
collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> [/usr/lib/aarch64-linux-gnu/crti.o]
|
||||||
|
collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> [/usr/lib/aarch64-linux-gnu/crtn.o]
|
||||||
|
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11] ==> [/usr/lib/gcc/aarch64-linux-gnu/11]
|
||||||
|
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu]
|
||||||
|
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> [/usr/lib]
|
||||||
|
collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu]
|
||||||
|
collapse library dir [/lib/../lib] ==> [/lib]
|
||||||
|
collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu]
|
||||||
|
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
|
||||||
|
collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> [/usr/lib]
|
||||||
|
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
|
||||||
|
implicit objs: [/usr/lib/aarch64-linux-gnu/Scrt1.o;/usr/lib/aarch64-linux-gnu/crti.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o;/usr/lib/aarch64-linux-gnu/crtn.o]
|
||||||
|
implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib]
|
||||||
|
implicit fwks: []
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the include file pthread.h exists passed with the following output:
|
||||||
|
Change Dir: /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_17013/fast && /usr/bin/gmake -f CMakeFiles/cmTC_17013.dir/build.make CMakeFiles/cmTC_17013.dir/build
|
||||||
|
gmake[1]: Entering directory '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_17013.dir/CheckIncludeFile.c.o
|
||||||
|
/usr/bin/cc -o CMakeFiles/cmTC_17013.dir/CheckIncludeFile.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
|
||||||
|
Linking C executable cmTC_17013
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_17013.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc CMakeFiles/cmTC_17013.dir/CheckIncludeFile.c.o -o cmTC_17013
|
||||||
|
gmake[1]: Leaving directory '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD succeeded with the following output:
|
||||||
|
Change Dir: /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_0289d/fast && /usr/bin/gmake -f CMakeFiles/cmTC_0289d.dir/build.make CMakeFiles/cmTC_0289d.dir/build
|
||||||
|
gmake[1]: Entering directory '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_0289d.dir/src.c.o
|
||||||
|
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_0289d.dir/src.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp/src.c
|
||||||
|
Linking C executable cmTC_0289d
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0289d.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc CMakeFiles/cmTC_0289d.dir/src.c.o -o cmTC_0289d
|
||||||
|
gmake[1]: Leaving directory '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
Source file was:
|
||||||
|
#include <pthread.h>
|
||||||
|
|
||||||
|
static void* test_func(void* data)
|
||||||
|
{
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
pthread_t thread;
|
||||||
|
pthread_create(&thread, NULL, test_func, NULL);
|
||||||
|
pthread_detach(thread);
|
||||||
|
pthread_cancel(thread);
|
||||||
|
pthread_join(thread, NULL);
|
||||||
|
pthread_atfork(NULL, NULL, NULL);
|
||||||
|
pthread_exit(NULL);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
#----------------------------------------------------------------
|
||||||
|
# Generated CMake target import file.
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
|
||||||
|
# Commands may need to know the format version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION 1)
|
||||||
|
|
||||||
|
# Import target "darknet_vendor::darknet" for configuration ""
|
||||||
|
set_property(TARGET darknet_vendor::darknet APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG)
|
||||||
|
set_target_properties(darknet_vendor::darknet PROPERTIES
|
||||||
|
IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libdarknet.so"
|
||||||
|
IMPORTED_SONAME_NOCONFIG "libdarknet.so"
|
||||||
|
)
|
||||||
|
|
||||||
|
list(APPEND _IMPORT_CHECK_TARGETS darknet_vendor::darknet )
|
||||||
|
list(APPEND _IMPORT_CHECK_FILES_FOR_darknet_vendor::darknet "${_IMPORT_PREFIX}/lib/libdarknet.so" )
|
||||||
|
|
||||||
|
# Commands beyond this point should not need to know the version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION)
|
||||||
@ -0,0 +1,107 @@
|
|||||||
|
# Generated by CMake
|
||||||
|
|
||||||
|
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.6)
|
||||||
|
message(FATAL_ERROR "CMake >= 2.6.0 required")
|
||||||
|
endif()
|
||||||
|
cmake_policy(PUSH)
|
||||||
|
cmake_policy(VERSION 2.6...3.20)
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
# Generated CMake target import file.
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
|
||||||
|
# Commands may need to know the format version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION 1)
|
||||||
|
|
||||||
|
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
|
||||||
|
set(_targetsDefined)
|
||||||
|
set(_targetsNotDefined)
|
||||||
|
set(_expectedTargets)
|
||||||
|
foreach(_expectedTarget darknet_vendor::darknet darknet_vendor::darknet_vendor)
|
||||||
|
list(APPEND _expectedTargets ${_expectedTarget})
|
||||||
|
if(NOT TARGET ${_expectedTarget})
|
||||||
|
list(APPEND _targetsNotDefined ${_expectedTarget})
|
||||||
|
endif()
|
||||||
|
if(TARGET ${_expectedTarget})
|
||||||
|
list(APPEND _targetsDefined ${_expectedTarget})
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
if("${_targetsDefined}" STREQUAL "${_expectedTargets}")
|
||||||
|
unset(_targetsDefined)
|
||||||
|
unset(_targetsNotDefined)
|
||||||
|
unset(_expectedTargets)
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION)
|
||||||
|
cmake_policy(POP)
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
if(NOT "${_targetsDefined}" STREQUAL "")
|
||||||
|
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_targetsDefined}\nTargets not yet defined: ${_targetsNotDefined}\n")
|
||||||
|
endif()
|
||||||
|
unset(_targetsDefined)
|
||||||
|
unset(_targetsNotDefined)
|
||||||
|
unset(_expectedTargets)
|
||||||
|
|
||||||
|
|
||||||
|
# Compute the installation prefix relative to this file.
|
||||||
|
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||||
|
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||||
|
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||||
|
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||||
|
if(_IMPORT_PREFIX STREQUAL "/")
|
||||||
|
set(_IMPORT_PREFIX "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Create imported target darknet_vendor::darknet
|
||||||
|
add_library(darknet_vendor::darknet SHARED IMPORTED)
|
||||||
|
|
||||||
|
set_target_properties(darknet_vendor::darknet PROPERTIES
|
||||||
|
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
||||||
|
INTERFACE_LINK_LIBRARIES "Threads::Threads;m"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Create imported target darknet_vendor::darknet_vendor
|
||||||
|
add_library(darknet_vendor::darknet_vendor INTERFACE IMPORTED)
|
||||||
|
|
||||||
|
set_target_properties(darknet_vendor::darknet_vendor PROPERTIES
|
||||||
|
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
||||||
|
INTERFACE_LINK_LIBRARIES "darknet_vendor::darknet"
|
||||||
|
)
|
||||||
|
|
||||||
|
if(CMAKE_VERSION VERSION_LESS 3.0.0)
|
||||||
|
message(FATAL_ERROR "This file relies on consumers using CMake 3.0.0 or greater.")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Load information for each installed configuration.
|
||||||
|
get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||||
|
file(GLOB CONFIG_FILES "${_DIR}/darknet_vendor-targets-*.cmake")
|
||||||
|
foreach(f ${CONFIG_FILES})
|
||||||
|
include(${f})
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
# Cleanup temporary variables.
|
||||||
|
set(_IMPORT_PREFIX)
|
||||||
|
|
||||||
|
# Loop over all imported files and verify that they actually exist
|
||||||
|
foreach(target ${_IMPORT_CHECK_TARGETS} )
|
||||||
|
foreach(file ${_IMPORT_CHECK_FILES_FOR_${target}} )
|
||||||
|
if(NOT EXISTS "${file}" )
|
||||||
|
message(FATAL_ERROR "The imported target \"${target}\" references the file
|
||||||
|
\"${file}\"
|
||||||
|
but this file does not exist. Possible reasons include:
|
||||||
|
* The file was deleted, renamed, or moved to another location.
|
||||||
|
* An install or uninstall procedure did not complete successfully.
|
||||||
|
* The installation package was faulty and contained
|
||||||
|
\"${CMAKE_CURRENT_LIST_FILE}\"
|
||||||
|
but not all the files it references.
|
||||||
|
")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
unset(_IMPORT_CHECK_FILES_FOR_${target})
|
||||||
|
endforeach()
|
||||||
|
unset(_IMPORT_CHECK_TARGETS)
|
||||||
|
|
||||||
|
# This file does not depend on other imported targets which have
|
||||||
|
# been exported from the same project but in a separate export set.
|
||||||
|
|
||||||
|
# Commands beyond this point should not need to know the version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION)
|
||||||
|
cmake_policy(POP)
|
||||||
143
ros2_ws/src/darknet_vendor/build/CMakeFiles/Makefile.cmake
Normal file
143
ros2_ws/src/darknet_vendor/build/CMakeFiles/Makefile.cmake
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||||
|
|
||||||
|
# The generator used is:
|
||||||
|
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
|
||||||
|
|
||||||
|
# The top level Makefile was generated from the following files:
|
||||||
|
set(CMAKE_MAKEFILE_DEPENDS
|
||||||
|
"CMakeCache.txt"
|
||||||
|
"../CMakeLists.txt"
|
||||||
|
"CMakeFiles/3.22.1/CMakeCCompiler.cmake"
|
||||||
|
"CMakeFiles/3.22.1/CMakeCXXCompiler.cmake"
|
||||||
|
"CMakeFiles/3.22.1/CMakeSystem.cmake"
|
||||||
|
"../cmake/darknet_vendor-config.cmake.in"
|
||||||
|
"../include/darknet_vendor/version.h.in"
|
||||||
|
"/usr/share/cmake-3.22/Modules/BasicConfigVersion-SameMajorVersion.cmake.in"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeCInformation.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeCXXInformation.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeGenericSystem.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakePackageConfigHelpers.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeSystem.cmake.in"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeUnixFindMake.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CheckCSourceCompiles.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CheckIncludeFile.c.in"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CheckIncludeFile.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CheckLibraryExists.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/GNU-C.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/GNU-CXX.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/GNU-FindBinUtils.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/GNU.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/FetchContent.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/FetchContent/CMakeLists.cmake.in"
|
||||||
|
"/usr/share/cmake-3.22/Modules/FindGit.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/FindPackageMessage.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/FindThreads.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Internal/CheckSourceCompiles.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Platform/Linux-Determine-CXX.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Platform/Linux-GNU-C.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Platform/Linux-GNU-CXX.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Platform/Linux-GNU.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Platform/Linux.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Platform/UnixPaths.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/WriteBasicConfigVersionFile.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# The corresponding makefile is:
|
||||||
|
set(CMAKE_MAKEFILE_OUTPUTS
|
||||||
|
"Makefile"
|
||||||
|
"CMakeFiles/cmake.check_cache"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Byproducts of CMake generate step:
|
||||||
|
set(CMAKE_MAKEFILE_PRODUCTS
|
||||||
|
"CMakeFiles/3.22.1/CMakeSystem.cmake"
|
||||||
|
"CMakeFiles/3.22.1/CMakeCCompiler.cmake"
|
||||||
|
"CMakeFiles/3.22.1/CMakeCXXCompiler.cmake"
|
||||||
|
"CMakeFiles/3.22.1/CMakeCCompiler.cmake"
|
||||||
|
"CMakeFiles/3.22.1/CMakeCXXCompiler.cmake"
|
||||||
|
"_deps/darknet-download-subbuild/CMakeLists.txt"
|
||||||
|
"version.h"
|
||||||
|
"darknet_vendor-config.cmake"
|
||||||
|
"darknet_vendor-version.cmake"
|
||||||
|
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Dependency information for all targets:
|
||||||
|
set(CMAKE_DEPEND_INFO_FILES
|
||||||
|
"CMakeFiles/darknet.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/darknet_exec.dir/DependInfo.cmake"
|
||||||
|
)
|
||||||
140
ros2_ws/src/darknet_vendor/build/CMakeFiles/Makefile2
Normal file
140
ros2_ws/src/darknet_vendor/build/CMakeFiles/Makefile2
Normal file
@ -0,0 +1,140 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||||
|
|
||||||
|
# Default target executed when no arguments are given to make.
|
||||||
|
default_target: all
|
||||||
|
.PHONY : default_target
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : %,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : SCCS/s.%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : s.%
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
# Command-line flag to silence nested $(MAKE).
|
||||||
|
$(VERBOSE)MAKESILENT = -s
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Directory level rules for the build root directory
|
||||||
|
|
||||||
|
# The main recursive "all" target.
|
||||||
|
all: CMakeFiles/darknet.dir/all
|
||||||
|
all: CMakeFiles/darknet_exec.dir/all
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# The main recursive "preinstall" target.
|
||||||
|
preinstall:
|
||||||
|
.PHONY : preinstall
|
||||||
|
|
||||||
|
# The main recursive "clean" target.
|
||||||
|
clean: CMakeFiles/darknet.dir/clean
|
||||||
|
clean: CMakeFiles/darknet_exec.dir/clean
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/darknet.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/darknet.dir/all:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/darknet.dir/build.make CMakeFiles/darknet.dir/depend
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/darknet.dir/build.make CMakeFiles/darknet.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47 "Built target darknet"
|
||||||
|
.PHONY : CMakeFiles/darknet.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/darknet.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles 47
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/darknet.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/darknet.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
darknet: CMakeFiles/darknet.dir/rule
|
||||||
|
.PHONY : darknet
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/darknet.dir/clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/darknet.dir/build.make CMakeFiles/darknet.dir/clean
|
||||||
|
.PHONY : CMakeFiles/darknet.dir/clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/darknet_exec.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/darknet_exec.dir/all: CMakeFiles/darknet.dir/all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/darknet_exec.dir/build.make CMakeFiles/darknet_exec.dir/depend
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/darknet_exec.dir/build.make CMakeFiles/darknet_exec.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65 "Built target darknet_exec"
|
||||||
|
.PHONY : CMakeFiles/darknet_exec.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/darknet_exec.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles 65
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/darknet_exec.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/darknet_exec.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
darknet_exec: CMakeFiles/darknet_exec.dir/rule
|
||||||
|
.PHONY : darknet_exec
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/darknet_exec.dir/clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/darknet_exec.dir/build.make CMakeFiles/darknet_exec.dir/clean
|
||||||
|
.PHONY : CMakeFiles/darknet_exec.dir/clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets to cleanup operation of make.
|
||||||
|
|
||||||
|
# Special rule to run CMake to check the build system integrity.
|
||||||
|
# No rule that depends on this can have commands that come from listfiles
|
||||||
|
# because they might be regenerated.
|
||||||
|
cmake_check_build_system:
|
||||||
|
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||||
|
.PHONY : cmake_check_build_system
|
||||||
|
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/darknet.dir
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/darknet_exec.dir
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/edit_cache.dir
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/rebuild_cache.dir
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/list_install_components.dir
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/install.dir
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/install/local.dir
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/install/strip.dir
|
||||||
@ -0,0 +1 @@
|
|||||||
|
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||||
@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
# Consider dependencies only in project.
|
||||||
|
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||||
|
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
)
|
||||||
|
|
||||||
|
# The set of dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/activation_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/activations.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/avgpool_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/batchnorm_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/blas.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/box.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/col2im.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/connected_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/convolutional_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/cost_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/crnn_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/crop_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/cuda.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/data.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/deconvolutional_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/demo.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/detection_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/dropout_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/gemm.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/gru_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/im2col.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/image.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/iseg_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/l2norm_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/list.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/local_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/logistic_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/lstm_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/matrix.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/maxpool_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/network.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/normalization_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/option_list.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/parser.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/region_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/reorg_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/rnn_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/route_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/shortcut_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/softmax_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/tree.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/upsample_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/utils.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/yolo_layer.c" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/image_opencv.cpp" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o" "gcc" "CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o.d"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
@ -0,0 +1,830 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : %,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : SCCS/s.%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : s.%
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
# Command-line flag to silence nested $(MAKE).
|
||||||
|
$(VERBOSE)MAKESILENT = -s
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include CMakeFiles/darknet.dir/depend.make
|
||||||
|
# Include any dependencies generated by the compiler for this target.
|
||||||
|
include CMakeFiles/darknet.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/darknet.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include CMakeFiles/darknet.dir/flags.make
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o: _deps/darknet-download-src/src/activation_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/activation_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/activation_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/activation_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o: _deps/darknet-download-src/src/activations.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/activations.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/activations.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/activations.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o: _deps/darknet-download-src/src/avgpool_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/avgpool_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/avgpool_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/avgpool_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o: _deps/darknet-download-src/src/batchnorm_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/batchnorm_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/batchnorm_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/batchnorm_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o: _deps/darknet-download-src/src/blas.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/blas.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/blas.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/blas.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o: _deps/darknet-download-src/src/box.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/box.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/box.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/box.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o: _deps/darknet-download-src/src/col2im.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/col2im.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/col2im.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/col2im.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o: _deps/darknet-download-src/src/connected_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/connected_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/connected_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/connected_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o: _deps/darknet-download-src/src/convolutional_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/convolutional_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/convolutional_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/convolutional_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o: _deps/darknet-download-src/src/cost_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/cost_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/cost_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/cost_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o: _deps/darknet-download-src/src/crnn_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/crnn_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/crnn_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/crnn_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o: _deps/darknet-download-src/src/crop_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/crop_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/crop_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/crop_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o: _deps/darknet-download-src/src/cuda.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/cuda.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/cuda.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/cuda.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o: _deps/darknet-download-src/src/data.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/data.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/data.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/data.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o: _deps/darknet-download-src/src/deconvolutional_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/deconvolutional_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/deconvolutional_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/deconvolutional_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o: _deps/darknet-download-src/src/demo.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/demo.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/demo.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/demo.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o: _deps/darknet-download-src/src/detection_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/detection_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/detection_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/detection_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o: _deps/darknet-download-src/src/dropout_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/dropout_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/dropout_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/dropout_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o: _deps/darknet-download-src/src/gemm.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/gemm.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/gemm.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/gemm.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o: _deps/darknet-download-src/src/gru_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/gru_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/gru_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/gru_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o: _deps/darknet-download-src/src/im2col.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/im2col.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/im2col.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/im2col.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o: _deps/darknet-download-src/src/image.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/image.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/image.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/image.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o: _deps/darknet-download-src/src/iseg_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/iseg_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/iseg_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/iseg_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o: _deps/darknet-download-src/src/l2norm_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/l2norm_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/l2norm_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/l2norm_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o: _deps/darknet-download-src/src/layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o: _deps/darknet-download-src/src/list.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/list.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/list.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/list.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o: _deps/darknet-download-src/src/local_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/local_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/local_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/local_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o: _deps/darknet-download-src/src/logistic_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/logistic_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/logistic_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/logistic_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o: _deps/darknet-download-src/src/lstm_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/lstm_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/lstm_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/lstm_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o: _deps/darknet-download-src/src/matrix.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/matrix.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/matrix.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/matrix.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o: _deps/darknet-download-src/src/maxpool_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/maxpool_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/maxpool_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/maxpool_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o: _deps/darknet-download-src/src/network.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/network.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/network.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/network.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o: _deps/darknet-download-src/src/normalization_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/normalization_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/normalization_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/normalization_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o: _deps/darknet-download-src/src/option_list.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/option_list.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/option_list.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/option_list.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o: _deps/darknet-download-src/src/parser.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/parser.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/parser.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/parser.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o: _deps/darknet-download-src/src/region_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_36) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/region_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/region_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/region_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o: _deps/darknet-download-src/src/reorg_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_37) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/reorg_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/reorg_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/reorg_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o: _deps/darknet-download-src/src/rnn_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_38) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/rnn_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/rnn_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/rnn_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o: _deps/darknet-download-src/src/route_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_39) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/route_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/route_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/route_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o: _deps/darknet-download-src/src/shortcut_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_40) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/shortcut_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/shortcut_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/shortcut_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o: _deps/darknet-download-src/src/softmax_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_41) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/softmax_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/softmax_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/softmax_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o: _deps/darknet-download-src/src/tree.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_42) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/tree.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/tree.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/tree.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o: _deps/darknet-download-src/src/upsample_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_43) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/upsample_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/upsample_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/upsample_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o: _deps/darknet-download-src/src/utils.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_44) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/utils.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/utils.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/utils.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o: _deps/darknet-download-src/src/yolo_layer.c
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_45) "Building C object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/yolo_layer.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/yolo_layer.c > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/yolo_layer.c -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o: CMakeFiles/darknet.dir/flags.make
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o: _deps/darknet-download-src/src/image_opencv.cpp
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o: CMakeFiles/darknet.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_46) "Building CXX object CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o -MF CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o.d -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/image_opencv.cpp
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/image_opencv.cpp > CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src/image_opencv.cpp -o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.s
|
||||||
|
|
||||||
|
# Object files for target darknet
|
||||||
|
darknet_OBJECTS = \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o" \
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o"
|
||||||
|
|
||||||
|
# External object files for target darknet
|
||||||
|
darknet_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/build.make
|
||||||
|
libdarknet.so: CMakeFiles/darknet.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_47) "Linking C shared library libdarknet.so"
|
||||||
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/darknet.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/darknet.dir/build: libdarknet.so
|
||||||
|
.PHONY : CMakeFiles/darknet.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/darknet.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/darknet.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/darknet.dir/depend:
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/darknet.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/darknet.dir/depend
|
||||||
|
|
||||||
@ -0,0 +1,101 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o.d"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o"
|
||||||
|
"CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o.d"
|
||||||
|
"libdarknet.pdb"
|
||||||
|
"libdarknet.so"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang C CXX)
|
||||||
|
include(CMakeFiles/darknet.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty compiler generated dependencies file for darknet.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for compiler generated dependencies management for darknet.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty dependencies file for darknet.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,17 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||||
|
|
||||||
|
# compile C with /usr/bin/cc
|
||||||
|
# compile CXX with /usr/bin/c++
|
||||||
|
C_DEFINES = -Ddarknet_EXPORTS
|
||||||
|
|
||||||
|
C_INCLUDES = -I/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/include -I/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src
|
||||||
|
|
||||||
|
C_FLAGS = -fPIC
|
||||||
|
|
||||||
|
CXX_DEFINES = -Ddarknet_EXPORTS
|
||||||
|
|
||||||
|
CXX_INCLUDES = -I/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/include -I/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src
|
||||||
|
|
||||||
|
CXX_FLAGS = -fPIC
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/cc -fPIC -shared -Wl,-soname,libdarknet.so -o libdarknet.so CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activation_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/activations.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/avgpool_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/batchnorm_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/blas.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/box.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/col2im.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/connected_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/convolutional_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cost_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crnn_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/crop_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/cuda.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/data.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/deconvolutional_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/demo.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/detection_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/dropout_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gemm.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/gru_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/im2col.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/iseg_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/l2norm_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/list.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/local_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/logistic_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/lstm_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/matrix.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/maxpool_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/network.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/normalization_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/option_list.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/parser.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/region_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/reorg_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/rnn_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/route_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/shortcut_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/softmax_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/tree.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/upsample_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/utils.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/yolo_layer.c.o CMakeFiles/darknet.dir/_deps/darknet-download-src/src/image_opencv.cpp.o -lm -lstdc++ -lm
|
||||||
@ -0,0 +1,48 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 1
|
||||||
|
CMAKE_PROGRESS_2 = 2
|
||||||
|
CMAKE_PROGRESS_3 = 3
|
||||||
|
CMAKE_PROGRESS_4 = 4
|
||||||
|
CMAKE_PROGRESS_5 = 5
|
||||||
|
CMAKE_PROGRESS_6 = 6
|
||||||
|
CMAKE_PROGRESS_7 = 7
|
||||||
|
CMAKE_PROGRESS_8 = 8
|
||||||
|
CMAKE_PROGRESS_9 = 9
|
||||||
|
CMAKE_PROGRESS_10 = 10
|
||||||
|
CMAKE_PROGRESS_11 = 11
|
||||||
|
CMAKE_PROGRESS_12 = 12
|
||||||
|
CMAKE_PROGRESS_13 = 13
|
||||||
|
CMAKE_PROGRESS_14 = 14
|
||||||
|
CMAKE_PROGRESS_15 = 15
|
||||||
|
CMAKE_PROGRESS_16 = 16
|
||||||
|
CMAKE_PROGRESS_17 = 17
|
||||||
|
CMAKE_PROGRESS_18 = 18
|
||||||
|
CMAKE_PROGRESS_19 = 19
|
||||||
|
CMAKE_PROGRESS_20 = 20
|
||||||
|
CMAKE_PROGRESS_21 = 21
|
||||||
|
CMAKE_PROGRESS_22 = 22
|
||||||
|
CMAKE_PROGRESS_23 = 23
|
||||||
|
CMAKE_PROGRESS_24 = 24
|
||||||
|
CMAKE_PROGRESS_25 = 25
|
||||||
|
CMAKE_PROGRESS_26 = 26
|
||||||
|
CMAKE_PROGRESS_27 = 27
|
||||||
|
CMAKE_PROGRESS_28 = 28
|
||||||
|
CMAKE_PROGRESS_29 = 29
|
||||||
|
CMAKE_PROGRESS_30 = 30
|
||||||
|
CMAKE_PROGRESS_31 = 31
|
||||||
|
CMAKE_PROGRESS_32 = 32
|
||||||
|
CMAKE_PROGRESS_33 = 33
|
||||||
|
CMAKE_PROGRESS_34 = 34
|
||||||
|
CMAKE_PROGRESS_35 = 35
|
||||||
|
CMAKE_PROGRESS_36 = 36
|
||||||
|
CMAKE_PROGRESS_37 = 37
|
||||||
|
CMAKE_PROGRESS_38 = 38
|
||||||
|
CMAKE_PROGRESS_39 = 39
|
||||||
|
CMAKE_PROGRESS_40 = 40
|
||||||
|
CMAKE_PROGRESS_41 = 41
|
||||||
|
CMAKE_PROGRESS_42 = 42
|
||||||
|
CMAKE_PROGRESS_43 = 43
|
||||||
|
CMAKE_PROGRESS_44 = 44
|
||||||
|
CMAKE_PROGRESS_45 = 45
|
||||||
|
CMAKE_PROGRESS_46 = 46
|
||||||
|
CMAKE_PROGRESS_47 = 47
|
||||||
|
|
||||||
@ -0,0 +1,36 @@
|
|||||||
|
|
||||||
|
# Consider dependencies only in project.
|
||||||
|
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||||
|
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
)
|
||||||
|
|
||||||
|
# The set of dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/art.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/captcha.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/cifar.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/classifier.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/coco.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/darknet.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/detector.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/go.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/instance-segmenter.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/lsd.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/nightmare.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/regressor.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/rnn.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/segmenter.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/super.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/tag.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o.d"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/yolo.c" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o" "gcc" "CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o.d"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/darknet.dir/DependInfo.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
@ -0,0 +1,367 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : %,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : SCCS/s.%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : s.%
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
# Command-line flag to silence nested $(MAKE).
|
||||||
|
$(VERBOSE)MAKESILENT = -s
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include CMakeFiles/darknet_exec.dir/depend.make
|
||||||
|
# Include any dependencies generated by the compiler for this target.
|
||||||
|
include CMakeFiles/darknet_exec.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/darknet_exec.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o: _deps/darknet-download-src/examples/art.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/art.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/art.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/art.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o: _deps/darknet-download-src/examples/captcha.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/captcha.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/captcha.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/captcha.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o: _deps/darknet-download-src/examples/cifar.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/cifar.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/cifar.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/cifar.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o: _deps/darknet-download-src/examples/classifier.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/classifier.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/classifier.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/classifier.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o: _deps/darknet-download-src/examples/coco.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/coco.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/coco.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/coco.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o: _deps/darknet-download-src/examples/darknet.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/darknet.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/darknet.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/darknet.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o: _deps/darknet-download-src/examples/detector.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/detector.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/detector.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/detector.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o: _deps/darknet-download-src/examples/go.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/go.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/go.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/go.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o: _deps/darknet-download-src/examples/instance-segmenter.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/instance-segmenter.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/instance-segmenter.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/instance-segmenter.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o: _deps/darknet-download-src/examples/lsd.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/lsd.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/lsd.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/lsd.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o: _deps/darknet-download-src/examples/nightmare.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/nightmare.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/nightmare.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/nightmare.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o: _deps/darknet-download-src/examples/super.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/super.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/super.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/super.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o: _deps/darknet-download-src/examples/rnn.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/rnn.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/rnn.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/rnn.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o: _deps/darknet-download-src/examples/regressor.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/regressor.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/regressor.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/regressor.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o: _deps/darknet-download-src/examples/segmenter.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/segmenter.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/segmenter.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/segmenter.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o: _deps/darknet-download-src/examples/tag.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/tag.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/tag.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/tag.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.s
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o: CMakeFiles/darknet_exec.dir/flags.make
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o: _deps/darknet-download-src/examples/yolo.c
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o: CMakeFiles/darknet_exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o -MF CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o.d -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o -c /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/yolo.c
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/yolo.c > CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.i
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/examples/yolo.c -o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.s
|
||||||
|
|
||||||
|
# Object files for target darknet_exec
|
||||||
|
darknet_exec_OBJECTS = \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o" \
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o"
|
||||||
|
|
||||||
|
# External object files for target darknet_exec
|
||||||
|
darknet_exec_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/build.make
|
||||||
|
darknet: libdarknet.so
|
||||||
|
darknet: CMakeFiles/darknet_exec.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Linking C executable darknet"
|
||||||
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/darknet_exec.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/darknet_exec.dir/build: darknet
|
||||||
|
.PHONY : CMakeFiles/darknet_exec.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/darknet_exec.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/darknet_exec.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/darknet_exec.dir/depend:
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/CMakeFiles/darknet_exec.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/darknet_exec.dir/depend
|
||||||
|
|
||||||
@ -0,0 +1,43 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o.d"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o"
|
||||||
|
"CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o.d"
|
||||||
|
"darknet"
|
||||||
|
"darknet.pdb"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang C)
|
||||||
|
include(CMakeFiles/darknet_exec.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty compiler generated dependencies file for darknet_exec.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for compiler generated dependencies management for darknet_exec.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty dependencies file for darknet_exec.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||||
|
|
||||||
|
# compile C with /usr/bin/cc
|
||||||
|
C_DEFINES =
|
||||||
|
|
||||||
|
C_INCLUDES = -I/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/include -I/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src/src
|
||||||
|
|
||||||
|
C_FLAGS =
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/cc CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/art.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/captcha.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/cifar.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/classifier.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/coco.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/darknet.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/detector.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/go.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/instance-segmenter.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/lsd.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/nightmare.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/super.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/rnn.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/regressor.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/segmenter.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/tag.c.o CMakeFiles/darknet_exec.dir/_deps/darknet-download-src/examples/yolo.c.o -o darknet -Wl,-rpath,/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build: libdarknet.so -lm
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 48
|
||||||
|
CMAKE_PROGRESS_2 = 49
|
||||||
|
CMAKE_PROGRESS_3 = 50
|
||||||
|
CMAKE_PROGRESS_4 = 51
|
||||||
|
CMAKE_PROGRESS_5 = 52
|
||||||
|
CMAKE_PROGRESS_6 = 53
|
||||||
|
CMAKE_PROGRESS_7 = 54
|
||||||
|
CMAKE_PROGRESS_8 = 55
|
||||||
|
CMAKE_PROGRESS_9 = 56
|
||||||
|
CMAKE_PROGRESS_10 = 57
|
||||||
|
CMAKE_PROGRESS_11 = 58
|
||||||
|
CMAKE_PROGRESS_12 = 59
|
||||||
|
CMAKE_PROGRESS_13 = 60
|
||||||
|
CMAKE_PROGRESS_14 = 61
|
||||||
|
CMAKE_PROGRESS_15 = 62
|
||||||
|
CMAKE_PROGRESS_16 = 63
|
||||||
|
CMAKE_PROGRESS_17 = 64
|
||||||
|
CMAKE_PROGRESS_18 = 65
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
65
|
||||||
0
ros2_ws/src/darknet_vendor/build/COLCON_IGNORE
Normal file
0
ros2_ws/src/darknet_vendor/build/COLCON_IGNORE
Normal file
1918
ros2_ws/src/darknet_vendor/build/Makefile
Normal file
1918
ros2_ws/src/darknet_vendor/build/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 61c9d02ec461e30d55762ec7669d6a1d3c356fb2
|
||||||
@ -0,0 +1,112 @@
|
|||||||
|
# This is the CMakeCache file.
|
||||||
|
# For build in directory: /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild
|
||||||
|
# It was generated by CMake: /usr/bin/cmake
|
||||||
|
# You can edit this file to change values found and used by cmake.
|
||||||
|
# If you do not want to change any of the values, simply exit the editor.
|
||||||
|
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||||
|
# The syntax for the file is as follows:
|
||||||
|
# KEY:TYPE=VALUE
|
||||||
|
# KEY is the name of a variable in the cache.
|
||||||
|
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||||
|
# VALUE is the current value for the KEY.
|
||||||
|
|
||||||
|
########################
|
||||||
|
# EXTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//Enable/Disable color output during build.
|
||||||
|
CMAKE_COLOR_MAKEFILE:BOOL=ON
|
||||||
|
|
||||||
|
//Enable/Disable output of compile commands during generation.
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||||
|
|
||||||
|
//Install path prefix, prepended onto install directories.
|
||||||
|
CMAKE_INSTALL_PREFIX:PATH=/usr/local
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_NAME:STATIC=darknet-download-populate
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when installing shared libraries,
|
||||||
|
// but are added when building.
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when using shared libraries.
|
||||||
|
CMAKE_SKIP_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//If this value is on, makefiles will be generated without the
|
||||||
|
// .SILENT directive, and all commands will be echoed to the console
|
||||||
|
// during the make. This is useful for debugging only. With Visual
|
||||||
|
// Studio IDE projects all commands are done without /nologo.
|
||||||
|
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
darknet-download-populate_BINARY_DIR:STATIC=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
darknet-download-populate_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
darknet-download-populate_SOURCE_DIR:STATIC=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# INTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//This is the directory where this CMakeCache.txt was created
|
||||||
|
CMAKE_CACHEFILE_DIR:INTERNAL=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild
|
||||||
|
//Major version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||||
|
//Minor version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MINOR_VERSION:INTERNAL=22
|
||||||
|
//Patch version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_PATCH_VERSION:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
|
||||||
|
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake executable.
|
||||||
|
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
|
||||||
|
//Path to cpack program executable.
|
||||||
|
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
|
||||||
|
//Path to ctest program executable.
|
||||||
|
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
|
||||||
|
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||||
|
//Name of external makefile project generator.
|
||||||
|
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||||
|
//Name of generator.
|
||||||
|
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
|
||||||
|
//Generator instance identifier.
|
||||||
|
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||||
|
//Name of generator platform.
|
||||||
|
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||||
|
//Name of generator toolset.
|
||||||
|
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||||
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
|
// project
|
||||||
|
CMAKE_HOME_DIRECTORY:INTERNAL=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild
|
||||||
|
//Install .so files without execute permission.
|
||||||
|
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
|
||||||
|
//number of local generators
|
||||||
|
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
|
||||||
|
//Platform information initialized
|
||||||
|
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||||
|
//Path to CMake installation.
|
||||||
|
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.22
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||||
|
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//uname command
|
||||||
|
CMAKE_UNAME:INTERNAL=/usr/bin/uname
|
||||||
|
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||||
|
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
|
||||||
@ -0,0 +1,15 @@
|
|||||||
|
set(CMAKE_HOST_SYSTEM "Linux-5.15.0-67-generic")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "5.15.0-67-generic")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "aarch64")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM "Linux-5.15.0-67-generic")
|
||||||
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_SYSTEM_VERSION "5.15.0-67-generic")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "aarch64")
|
||||||
|
|
||||||
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM_LOADED 1)
|
||||||
@ -0,0 +1,16 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||||
|
|
||||||
|
# Relative path conversion top directories.
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild")
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild")
|
||||||
|
|
||||||
|
# Force unix paths in dependencies.
|
||||||
|
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||||
|
|
||||||
|
|
||||||
|
# The C and CXX include file regular expressions for this directory.
|
||||||
|
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||||
|
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||||
|
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||||
|
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
||||||
@ -0,0 +1 @@
|
|||||||
|
The system is: Linux - 5.15.0-67-generic - aarch64
|
||||||
@ -0,0 +1,11 @@
|
|||||||
|
# Hashes of file build rules.
|
||||||
|
20f30e4fbe14e1cdd5928a6679b09380 CMakeFiles/darknet-download-populate
|
||||||
|
c5616be804c9b225a3d67e905c87e49a CMakeFiles/darknet-download-populate-complete
|
||||||
|
72a56f81b6d58a98024a7e17c763e9f9 darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-build
|
||||||
|
5bf1ae354fff1d5ba4a90c6674252f8c darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-configure
|
||||||
|
75dc865bfe071971a73bf90626ea83be darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-download
|
||||||
|
fb363f21588c7b9c6694f77c0d8781ff darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-install
|
||||||
|
b717b291bed18eb671d02cc7ca6bafa7 darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-mkdir
|
||||||
|
5a4341b9de05b6f2005996b58edca051 darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-patch
|
||||||
|
7b7e0b9eea24a4fcab0d02f9913b2c21 darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-test
|
||||||
|
0ad477c37f1c1990b37efd27eedfd4cd darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-update
|
||||||
@ -0,0 +1,44 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||||
|
|
||||||
|
# The generator used is:
|
||||||
|
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
|
||||||
|
|
||||||
|
# The top level Makefile was generated from the following files:
|
||||||
|
set(CMAKE_MAKEFILE_DEPENDS
|
||||||
|
"CMakeCache.txt"
|
||||||
|
"CMakeFiles/3.22.1/CMakeSystem.cmake"
|
||||||
|
"CMakeLists.txt"
|
||||||
|
"darknet-download-populate-prefix/tmp/darknet-download-populate-cfgcmd.txt.in"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeGenericSystem.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeSystem.cmake.in"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/ExternalProject-gitupdate.cmake.in"
|
||||||
|
"/usr/share/cmake-3.22/Modules/ExternalProject.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Platform/Linux.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/Platform/UnixPaths.cmake"
|
||||||
|
"/usr/share/cmake-3.22/Modules/RepositoryInfo.txt.in"
|
||||||
|
)
|
||||||
|
|
||||||
|
# The corresponding makefile is:
|
||||||
|
set(CMAKE_MAKEFILE_OUTPUTS
|
||||||
|
"Makefile"
|
||||||
|
"CMakeFiles/cmake.check_cache"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Byproducts of CMake generate step:
|
||||||
|
set(CMAKE_MAKEFILE_PRODUCTS
|
||||||
|
"CMakeFiles/3.22.1/CMakeSystem.cmake"
|
||||||
|
"darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-gitinfo.txt"
|
||||||
|
"darknet-download-populate-prefix/tmp/darknet-download-populate-gitupdate.cmake"
|
||||||
|
"darknet-download-populate-prefix/tmp/darknet-download-populate-cfgcmd.txt"
|
||||||
|
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Dependency information for all targets:
|
||||||
|
set(CMAKE_DEPEND_INFO_FILES
|
||||||
|
"CMakeFiles/darknet-download-populate.dir/DependInfo.cmake"
|
||||||
|
)
|
||||||
@ -0,0 +1,112 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||||
|
|
||||||
|
# Default target executed when no arguments are given to make.
|
||||||
|
default_target: all
|
||||||
|
.PHONY : default_target
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : %,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : SCCS/s.%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : s.%
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
# Command-line flag to silence nested $(MAKE).
|
||||||
|
$(VERBOSE)MAKESILENT = -s
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Directory level rules for the build root directory
|
||||||
|
|
||||||
|
# The main recursive "all" target.
|
||||||
|
all: CMakeFiles/darknet-download-populate.dir/all
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# The main recursive "preinstall" target.
|
||||||
|
preinstall:
|
||||||
|
.PHONY : preinstall
|
||||||
|
|
||||||
|
# The main recursive "clean" target.
|
||||||
|
clean: CMakeFiles/darknet-download-populate.dir/clean
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/darknet-download-populate.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/darknet-download-populate.dir/all:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/darknet-download-populate.dir/build.make CMakeFiles/darknet-download-populate.dir/depend
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/darknet-download-populate.dir/build.make CMakeFiles/darknet-download-populate.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Built target darknet-download-populate"
|
||||||
|
.PHONY : CMakeFiles/darknet-download-populate.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/darknet-download-populate.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles 9
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/darknet-download-populate.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/darknet-download-populate.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
darknet-download-populate: CMakeFiles/darknet-download-populate.dir/rule
|
||||||
|
.PHONY : darknet-download-populate
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/darknet-download-populate.dir/clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/darknet-download-populate.dir/build.make CMakeFiles/darknet-download-populate.dir/clean
|
||||||
|
.PHONY : CMakeFiles/darknet-download-populate.dir/clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets to cleanup operation of make.
|
||||||
|
|
||||||
|
# Special rule to run CMake to check the build system integrity.
|
||||||
|
# No rule that depends on this can have commands that come from listfiles
|
||||||
|
# because they might be regenerated.
|
||||||
|
cmake_check_build_system:
|
||||||
|
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||||
|
.PHONY : cmake_check_build_system
|
||||||
|
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles/darknet-download-populate.dir
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles/edit_cache.dir
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles/rebuild_cache.dir
|
||||||
@ -0,0 +1 @@
|
|||||||
|
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
|
||||||
|
# Consider dependencies only in project.
|
||||||
|
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||||
|
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
)
|
||||||
|
|
||||||
|
# The set of dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
@ -0,0 +1,46 @@
|
|||||||
|
{
|
||||||
|
"sources" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"file" : "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles/darknet-download-populate"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles/darknet-download-populate.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles/darknet-download-populate-complete.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-build.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-configure.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-download.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-install.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-mkdir.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-patch.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-test.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-update.rule"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"target" :
|
||||||
|
{
|
||||||
|
"labels" :
|
||||||
|
[
|
||||||
|
"darknet-download-populate"
|
||||||
|
],
|
||||||
|
"name" : "darknet-download-populate"
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,14 @@
|
|||||||
|
# Target labels
|
||||||
|
darknet-download-populate
|
||||||
|
# Source files and their labels
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles/darknet-download-populate
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles/darknet-download-populate.rule
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles/darknet-download-populate-complete.rule
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-build.rule
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-configure.rule
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-download.rule
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-install.rule
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-mkdir.rule
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-patch.rule
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-test.rule
|
||||||
|
/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-update.rule
|
||||||
@ -0,0 +1,162 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : %,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : SCCS/s.%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : s.%
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
# Command-line flag to silence nested $(MAKE).
|
||||||
|
$(VERBOSE)MAKESILENT = -s
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild
|
||||||
|
|
||||||
|
# Utility rule file for darknet-download-populate.
|
||||||
|
|
||||||
|
# Include any custom commands dependencies for this target.
|
||||||
|
include CMakeFiles/darknet-download-populate.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/darknet-download-populate.dir/progress.make
|
||||||
|
|
||||||
|
CMakeFiles/darknet-download-populate: CMakeFiles/darknet-download-populate-complete
|
||||||
|
|
||||||
|
CMakeFiles/darknet-download-populate-complete: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-install
|
||||||
|
CMakeFiles/darknet-download-populate-complete: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-mkdir
|
||||||
|
CMakeFiles/darknet-download-populate-complete: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-download
|
||||||
|
CMakeFiles/darknet-download-populate-complete: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-update
|
||||||
|
CMakeFiles/darknet-download-populate-complete: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-patch
|
||||||
|
CMakeFiles/darknet-download-populate-complete: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-configure
|
||||||
|
CMakeFiles/darknet-download-populate-complete: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-build
|
||||||
|
CMakeFiles/darknet-download-populate-complete: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-install
|
||||||
|
CMakeFiles/darknet-download-populate-complete: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-test
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'darknet-download-populate'"
|
||||||
|
/usr/bin/cmake -E make_directory /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles
|
||||||
|
/usr/bin/cmake -E touch /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles/darknet-download-populate-complete
|
||||||
|
/usr/bin/cmake -E touch /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-done
|
||||||
|
|
||||||
|
darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-update:
|
||||||
|
.PHONY : darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-update
|
||||||
|
|
||||||
|
darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-build: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-configure
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "No build step for 'darknet-download-populate'"
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-build && /usr/bin/cmake -E echo_append
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-build && /usr/bin/cmake -E touch /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-build
|
||||||
|
|
||||||
|
darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-configure: darknet-download-populate-prefix/tmp/darknet-download-populate-cfgcmd.txt
|
||||||
|
darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-configure: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-patch
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "No configure step for 'darknet-download-populate'"
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-build && /usr/bin/cmake -E echo_append
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-build && /usr/bin/cmake -E touch /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-configure
|
||||||
|
|
||||||
|
darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-download: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-gitinfo.txt
|
||||||
|
darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-download: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-mkdir
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Performing download step (git clone) for 'darknet-download-populate'"
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps && /usr/bin/cmake -P /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/tmp/darknet-download-populate-gitclone.cmake
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps && /usr/bin/cmake -E touch /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-download
|
||||||
|
|
||||||
|
darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-install: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "No install step for 'darknet-download-populate'"
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-build && /usr/bin/cmake -E echo_append
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-build && /usr/bin/cmake -E touch /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-install
|
||||||
|
|
||||||
|
darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-mkdir:
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'darknet-download-populate'"
|
||||||
|
/usr/bin/cmake -E make_directory /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src
|
||||||
|
/usr/bin/cmake -E make_directory /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-build
|
||||||
|
/usr/bin/cmake -E make_directory /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix
|
||||||
|
/usr/bin/cmake -E make_directory /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/tmp
|
||||||
|
/usr/bin/cmake -E make_directory /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp
|
||||||
|
/usr/bin/cmake -E make_directory /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src
|
||||||
|
/usr/bin/cmake -E make_directory /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp
|
||||||
|
/usr/bin/cmake -E touch /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-mkdir
|
||||||
|
|
||||||
|
darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-patch: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-update
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'darknet-download-populate'"
|
||||||
|
/usr/bin/cmake -E echo_append
|
||||||
|
/usr/bin/cmake -E touch /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-patch
|
||||||
|
|
||||||
|
darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-update:
|
||||||
|
.PHONY : darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-update
|
||||||
|
|
||||||
|
darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-test: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-install
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No test step for 'darknet-download-populate'"
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-build && /usr/bin/cmake -E echo_append
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-build && /usr/bin/cmake -E touch /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-test
|
||||||
|
|
||||||
|
darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-update: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-download
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Performing update step for 'darknet-download-populate'"
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src && /usr/bin/cmake -P /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/tmp/darknet-download-populate-gitupdate.cmake
|
||||||
|
|
||||||
|
darknet-download-populate: CMakeFiles/darknet-download-populate
|
||||||
|
darknet-download-populate: CMakeFiles/darknet-download-populate-complete
|
||||||
|
darknet-download-populate: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-build
|
||||||
|
darknet-download-populate: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-configure
|
||||||
|
darknet-download-populate: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-download
|
||||||
|
darknet-download-populate: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-install
|
||||||
|
darknet-download-populate: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-mkdir
|
||||||
|
darknet-download-populate: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-patch
|
||||||
|
darknet-download-populate: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-test
|
||||||
|
darknet-download-populate: darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-update
|
||||||
|
darknet-download-populate: CMakeFiles/darknet-download-populate.dir/build.make
|
||||||
|
.PHONY : darknet-download-populate
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/darknet-download-populate.dir/build: darknet-download-populate
|
||||||
|
.PHONY : CMakeFiles/darknet-download-populate.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/darknet-download-populate.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/darknet-download-populate.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/darknet-download-populate.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/darknet-download-populate.dir/depend:
|
||||||
|
cd /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles/darknet-download-populate.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/darknet-download-populate.dir/depend
|
||||||
|
|
||||||
@ -0,0 +1,17 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/darknet-download-populate"
|
||||||
|
"CMakeFiles/darknet-download-populate-complete"
|
||||||
|
"darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-build"
|
||||||
|
"darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-configure"
|
||||||
|
"darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-download"
|
||||||
|
"darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-install"
|
||||||
|
"darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-mkdir"
|
||||||
|
"darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-patch"
|
||||||
|
"darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-test"
|
||||||
|
"darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-update"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang )
|
||||||
|
include(CMakeFiles/darknet-download-populate.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty custom commands generated dependencies file for darknet-download-populate.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for custom commands dependencies management for darknet-download-populate.
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 1
|
||||||
|
CMAKE_PROGRESS_2 = 2
|
||||||
|
CMAKE_PROGRESS_3 = 3
|
||||||
|
CMAKE_PROGRESS_4 = 4
|
||||||
|
CMAKE_PROGRESS_5 = 5
|
||||||
|
CMAKE_PROGRESS_6 = 6
|
||||||
|
CMAKE_PROGRESS_7 = 7
|
||||||
|
CMAKE_PROGRESS_8 = 8
|
||||||
|
CMAKE_PROGRESS_9 = 9
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
9
|
||||||
@ -0,0 +1,35 @@
|
|||||||
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||||
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||||
|
|
||||||
|
cmake_minimum_required(VERSION 3.22.1)
|
||||||
|
|
||||||
|
# We name the project and the target for the ExternalProject_Add() call
|
||||||
|
# to something that will highlight to the user what we are working on if
|
||||||
|
# something goes wrong and an error message is produced.
|
||||||
|
|
||||||
|
project(darknet-download-populate NONE)
|
||||||
|
|
||||||
|
|
||||||
|
# Pass through things we've already detected in the main project to avoid
|
||||||
|
# paying the cost of redetecting them again in ExternalProject_Add()
|
||||||
|
set(GIT_EXECUTABLE [==[/usr/bin/git]==])
|
||||||
|
set(GIT_VERSION_STRING [==[2.34.1]==])
|
||||||
|
set_property(GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION
|
||||||
|
[==[/usr/bin/git;2.34.1]==]
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
include(ExternalProject)
|
||||||
|
ExternalProject_Add(darknet-download-populate
|
||||||
|
"UPDATE_DISCONNECTED" "False" "GIT_REPOSITORY" "https://github.com/pjreddie/darknet.git" "GIT_TAG" "61c9d02ec461e30d55762ec7669d6a1d3c356fb2"
|
||||||
|
SOURCE_DIR "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
BINARY_DIR "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-build"
|
||||||
|
CONFIGURE_COMMAND ""
|
||||||
|
BUILD_COMMAND ""
|
||||||
|
INSTALL_COMMAND ""
|
||||||
|
TEST_COMMAND ""
|
||||||
|
USES_TERMINAL_DOWNLOAD YES
|
||||||
|
USES_TERMINAL_UPDATE YES
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -0,0 +1,154 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||||
|
|
||||||
|
# Default target executed when no arguments are given to make.
|
||||||
|
default_target: all
|
||||||
|
.PHONY : default_target
|
||||||
|
|
||||||
|
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||||
|
.NOTPARALLEL:
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : %,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : SCCS/s.%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : s.%
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
# Command-line flag to silence nested $(MAKE).
|
||||||
|
$(VERBOSE)MAKESILENT = -s
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Targets provided globally by CMake.
|
||||||
|
|
||||||
|
# Special rule for the target edit_cache
|
||||||
|
edit_cache:
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
|
||||||
|
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
||||||
|
.PHONY : edit_cache
|
||||||
|
|
||||||
|
# Special rule for the target edit_cache
|
||||||
|
edit_cache/fast: edit_cache
|
||||||
|
.PHONY : edit_cache/fast
|
||||||
|
|
||||||
|
# Special rule for the target rebuild_cache
|
||||||
|
rebuild_cache:
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
|
||||||
|
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||||
|
.PHONY : rebuild_cache
|
||||||
|
|
||||||
|
# Special rule for the target rebuild_cache
|
||||||
|
rebuild_cache/fast: rebuild_cache
|
||||||
|
.PHONY : rebuild_cache/fast
|
||||||
|
|
||||||
|
# The main all target
|
||||||
|
all: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild//CMakeFiles/progress.marks
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/CMakeFiles 0
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# The main clean target
|
||||||
|
clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
# The main clean target
|
||||||
|
clean/fast: clean
|
||||||
|
.PHONY : clean/fast
|
||||||
|
|
||||||
|
# Prepare targets for installation.
|
||||||
|
preinstall: all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||||
|
.PHONY : preinstall
|
||||||
|
|
||||||
|
# Prepare targets for installation.
|
||||||
|
preinstall/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||||
|
.PHONY : preinstall/fast
|
||||||
|
|
||||||
|
# clear depends
|
||||||
|
depend:
|
||||||
|
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||||
|
.PHONY : depend
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named darknet-download-populate
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
darknet-download-populate: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 darknet-download-populate
|
||||||
|
.PHONY : darknet-download-populate
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
darknet-download-populate/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/darknet-download-populate.dir/build.make CMakeFiles/darknet-download-populate.dir/build
|
||||||
|
.PHONY : darknet-download-populate/fast
|
||||||
|
|
||||||
|
# Help Target
|
||||||
|
help:
|
||||||
|
@echo "The following are some of the valid targets for this Makefile:"
|
||||||
|
@echo "... all (the default if no target is provided)"
|
||||||
|
@echo "... clean"
|
||||||
|
@echo "... depend"
|
||||||
|
@echo "... edit_cache"
|
||||||
|
@echo "... rebuild_cache"
|
||||||
|
@echo "... darknet-download-populate"
|
||||||
|
.PHONY : help
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets to cleanup operation of make.
|
||||||
|
|
||||||
|
# Special rule to run CMake to check the build system integrity.
|
||||||
|
# No rule that depends on this can have commands that come from listfiles
|
||||||
|
# because they might be regenerated.
|
||||||
|
cmake_check_build_system:
|
||||||
|
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||||
|
.PHONY : cmake_check_build_system
|
||||||
|
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
# Install script for directory: /media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild
|
||||||
|
|
||||||
|
# Set the install prefix
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
|
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||||
|
endif()
|
||||||
|
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||||
|
|
||||||
|
# Set the install configuration name.
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||||
|
if(BUILD_TYPE)
|
||||||
|
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||||
|
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||||
|
endif()
|
||||||
|
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set the component getting installed.
|
||||||
|
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(COMPONENT)
|
||||||
|
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||||
|
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_COMPONENT)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Install shared libraries without execute permission?
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||||
|
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Is this installation the result of a crosscompile?
|
||||||
|
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||||
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT)
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||||
|
file(WRITE "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/${CMAKE_INSTALL_MANIFEST}"
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
repository='https://github.com/pjreddie/darknet.git'
|
||||||
|
module=''
|
||||||
|
tag='origin'
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
repository='https://github.com/pjreddie/darknet.git'
|
||||||
|
module=''
|
||||||
|
tag='origin'
|
||||||
@ -0,0 +1 @@
|
|||||||
|
cmd=''
|
||||||
@ -0,0 +1 @@
|
|||||||
|
cmd='@cmd@'
|
||||||
@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
if(NOT "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-gitinfo.txt" IS_NEWER_THAN "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-gitclone-lastrun.txt")
|
||||||
|
message(STATUS "Avoiding repeated git clone, stamp file is up to date: '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-gitclone-lastrun.txt'")
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
execute_process(
|
||||||
|
COMMAND ${CMAKE_COMMAND} -E rm -rf "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
)
|
||||||
|
if(error_code)
|
||||||
|
message(FATAL_ERROR "Failed to remove directory: '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src'")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# try the clone 3 times in case there is an odd git clone issue
|
||||||
|
set(error_code 1)
|
||||||
|
set(number_of_tries 0)
|
||||||
|
while(error_code AND number_of_tries LESS 3)
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" clone --no-checkout --config "advice.detachedHead=false" "https://github.com/pjreddie/darknet.git" "darknet-download-src"
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
)
|
||||||
|
math(EXPR number_of_tries "${number_of_tries} + 1")
|
||||||
|
endwhile()
|
||||||
|
if(number_of_tries GREATER 1)
|
||||||
|
message(STATUS "Had to git clone more than once:
|
||||||
|
${number_of_tries} times.")
|
||||||
|
endif()
|
||||||
|
if(error_code)
|
||||||
|
message(FATAL_ERROR "Failed to clone repository: 'https://github.com/pjreddie/darknet.git'")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" checkout 61c9d02ec461e30d55762ec7669d6a1d3c356fb2 --
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
)
|
||||||
|
if(error_code)
|
||||||
|
message(FATAL_ERROR "Failed to checkout tag: '61c9d02ec461e30d55762ec7669d6a1d3c356fb2'")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(init_submodules TRUE)
|
||||||
|
if(init_submodules)
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" submodule update --recursive --init
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
if(error_code)
|
||||||
|
message(FATAL_ERROR "Failed to update submodules in: '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src'")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Complete success, update the script-last-run stamp file:
|
||||||
|
#
|
||||||
|
execute_process(
|
||||||
|
COMMAND ${CMAKE_COMMAND} -E copy
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-gitinfo.txt"
|
||||||
|
"/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-gitclone-lastrun.txt"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
)
|
||||||
|
if(error_code)
|
||||||
|
message(FATAL_ERROR "Failed to copy script-last-run stamp file: '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-subbuild/darknet-download-populate-prefix/src/darknet-download-populate-stamp/darknet-download-populate-gitclone-lastrun.txt'")
|
||||||
|
endif()
|
||||||
|
|
||||||
@ -0,0 +1,277 @@
|
|||||||
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||||
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||||
|
|
||||||
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
|
function(get_hash_for_ref ref out_var err_var)
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" rev-parse "${ref}^0"
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
OUTPUT_VARIABLE ref_hash
|
||||||
|
ERROR_VARIABLE error_msg
|
||||||
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||||
|
)
|
||||||
|
if(error_code)
|
||||||
|
set(${out_var} "" PARENT_SCOPE)
|
||||||
|
else()
|
||||||
|
set(${out_var} "${ref_hash}" PARENT_SCOPE)
|
||||||
|
endif()
|
||||||
|
set(${err_var} "${error_msg}" PARENT_SCOPE)
|
||||||
|
endfunction()
|
||||||
|
|
||||||
|
get_hash_for_ref(HEAD head_sha error_msg)
|
||||||
|
if(head_sha STREQUAL "")
|
||||||
|
message(FATAL_ERROR "Failed to get the hash for HEAD:\n${error_msg}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" show-ref "61c9d02ec461e30d55762ec7669d6a1d3c356fb2"
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
OUTPUT_VARIABLE show_ref_output
|
||||||
|
)
|
||||||
|
if(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/remotes/")
|
||||||
|
# Given a full remote/branch-name and we know about it already. Since
|
||||||
|
# branches can move around, we always have to fetch.
|
||||||
|
set(fetch_required YES)
|
||||||
|
set(checkout_name "61c9d02ec461e30d55762ec7669d6a1d3c356fb2")
|
||||||
|
|
||||||
|
elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/tags/")
|
||||||
|
# Given a tag name that we already know about. We don't know if the tag we
|
||||||
|
# have matches the remote though (tags can move), so we should fetch.
|
||||||
|
set(fetch_required YES)
|
||||||
|
set(checkout_name "61c9d02ec461e30d55762ec7669d6a1d3c356fb2")
|
||||||
|
|
||||||
|
# Special case to preserve backward compatibility: if we are already at the
|
||||||
|
# same commit as the tag we hold locally, don't do a fetch and assume the tag
|
||||||
|
# hasn't moved on the remote.
|
||||||
|
# FIXME: We should provide an option to always fetch for this case
|
||||||
|
get_hash_for_ref("61c9d02ec461e30d55762ec7669d6a1d3c356fb2" tag_sha error_msg)
|
||||||
|
if(tag_sha STREQUAL head_sha)
|
||||||
|
message(VERBOSE "Already at requested tag: ${tag_sha}")
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/heads/")
|
||||||
|
# Given a branch name without any remote and we already have a branch by that
|
||||||
|
# name. We might already have that branch checked out or it might be a
|
||||||
|
# different branch. It isn't safe to use a bare branch name without the
|
||||||
|
# remote, so do a fetch and replace the ref with one that includes the remote.
|
||||||
|
set(fetch_required YES)
|
||||||
|
set(checkout_name "origin/61c9d02ec461e30d55762ec7669d6a1d3c356fb2")
|
||||||
|
|
||||||
|
else()
|
||||||
|
get_hash_for_ref("61c9d02ec461e30d55762ec7669d6a1d3c356fb2" tag_sha error_msg)
|
||||||
|
if(tag_sha STREQUAL head_sha)
|
||||||
|
# Have the right commit checked out already
|
||||||
|
message(VERBOSE "Already at requested ref: ${tag_sha}")
|
||||||
|
return()
|
||||||
|
|
||||||
|
elseif(tag_sha STREQUAL "")
|
||||||
|
# We don't know about this ref yet, so we have no choice but to fetch.
|
||||||
|
# We deliberately swallow any error message at the default log level
|
||||||
|
# because it can be confusing for users to see a failed git command.
|
||||||
|
# That failure is being handled here, so it isn't an error.
|
||||||
|
set(fetch_required YES)
|
||||||
|
set(checkout_name "61c9d02ec461e30d55762ec7669d6a1d3c356fb2")
|
||||||
|
if(NOT error_msg STREQUAL "")
|
||||||
|
message(VERBOSE "${error_msg}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
else()
|
||||||
|
# We have the commit, so we know we were asked to find a commit hash
|
||||||
|
# (otherwise it would have been handled further above), but we don't
|
||||||
|
# have that commit checked out yet
|
||||||
|
set(fetch_required NO)
|
||||||
|
set(checkout_name "61c9d02ec461e30d55762ec7669d6a1d3c356fb2")
|
||||||
|
if(NOT error_msg STREQUAL "")
|
||||||
|
message(WARNING "${error_msg}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(fetch_required)
|
||||||
|
message(VERBOSE "Fetching latest from the remote origin")
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" fetch --tags --force "origin"
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
COMMAND_ERROR_IS_FATAL ANY
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(git_update_strategy "REBASE")
|
||||||
|
if(git_update_strategy STREQUAL "")
|
||||||
|
# Backward compatibility requires REBASE as the default behavior
|
||||||
|
set(git_update_strategy REBASE)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(git_update_strategy MATCHES "^REBASE(_CHECKOUT)?$")
|
||||||
|
# Asked to potentially try to rebase first, maybe with fallback to checkout.
|
||||||
|
# We can't if we aren't already on a branch and we shouldn't if that local
|
||||||
|
# branch isn't tracking the one we want to checkout.
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" symbolic-ref -q HEAD
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
OUTPUT_VARIABLE current_branch
|
||||||
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||||
|
# Don't test for an error. If this isn't a branch, we get a non-zero error
|
||||||
|
# code but empty output.
|
||||||
|
)
|
||||||
|
|
||||||
|
if(current_branch STREQUAL "")
|
||||||
|
# Not on a branch, checkout is the only sensible option since any rebase
|
||||||
|
# would always fail (and backward compatibility requires us to checkout in
|
||||||
|
# this situation)
|
||||||
|
set(git_update_strategy CHECKOUT)
|
||||||
|
|
||||||
|
else()
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" for-each-ref "--format='%(upstream:short)'" "${current_branch}"
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
OUTPUT_VARIABLE upstream_branch
|
||||||
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||||
|
COMMAND_ERROR_IS_FATAL ANY # There is no error if no upstream is set
|
||||||
|
)
|
||||||
|
if(NOT upstream_branch STREQUAL checkout_name)
|
||||||
|
# Not safe to rebase when asked to checkout a different branch to the one
|
||||||
|
# we are tracking. If we did rebase, we could end up with arbitrary
|
||||||
|
# commits added to the ref we were asked to checkout if the current local
|
||||||
|
# branch happens to be able to rebase onto the target branch. There would
|
||||||
|
# be no error message and the user wouldn't know this was occurring.
|
||||||
|
set(git_update_strategy CHECKOUT)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
endif()
|
||||||
|
elseif(NOT git_update_strategy STREQUAL "CHECKOUT")
|
||||||
|
message(FATAL_ERROR "Unsupported git update strategy: ${git_update_strategy}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
# Check if stash is needed
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" status --porcelain
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
OUTPUT_VARIABLE repo_status
|
||||||
|
)
|
||||||
|
if(error_code)
|
||||||
|
message(FATAL_ERROR "Failed to get the status")
|
||||||
|
endif()
|
||||||
|
string(LENGTH "${repo_status}" need_stash)
|
||||||
|
|
||||||
|
# If not in clean state, stash changes in order to be able to perform a
|
||||||
|
# rebase or checkout without losing those changes permanently
|
||||||
|
if(need_stash)
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" stash save --quiet;--include-untracked
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
COMMAND_ERROR_IS_FATAL ANY
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(git_update_strategy STREQUAL "CHECKOUT")
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" checkout "${checkout_name}"
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
COMMAND_ERROR_IS_FATAL ANY
|
||||||
|
)
|
||||||
|
else()
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" rebase "${checkout_name}"
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
OUTPUT_VARIABLE rebase_output
|
||||||
|
ERROR_VARIABLE rebase_output
|
||||||
|
)
|
||||||
|
if(error_code)
|
||||||
|
# Rebase failed, undo the rebase attempt before continuing
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" rebase --abort
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
)
|
||||||
|
|
||||||
|
if(NOT git_update_strategy STREQUAL "REBASE_CHECKOUT")
|
||||||
|
# Not allowed to do a checkout as a fallback, so cannot proceed
|
||||||
|
if(need_stash)
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" stash pop --index --quiet
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
message(FATAL_ERROR "\nFailed to rebase in: '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src'."
|
||||||
|
"\nOutput from the attempted rebase follows:"
|
||||||
|
"\n${rebase_output}"
|
||||||
|
"\n\nYou will have to resolve the conflicts manually")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Fall back to checkout. We create an annotated tag so that the user
|
||||||
|
# can manually inspect the situation and revert if required.
|
||||||
|
# We can't log the failed rebase output because MSVC sees it and
|
||||||
|
# intervenes, causing the build to fail even though it completes.
|
||||||
|
# Write it to a file instead.
|
||||||
|
string(TIMESTAMP tag_timestamp "%Y%m%dT%H%M%S" UTC)
|
||||||
|
set(tag_name _cmake_ExternalProject_moved_from_here_${tag_timestamp}Z)
|
||||||
|
set(error_log_file ${CMAKE_CURRENT_LIST_DIR}/rebase_error_${tag_timestamp}Z.log)
|
||||||
|
file(WRITE ${error_log_file} "${rebase_output}")
|
||||||
|
message(WARNING "Rebase failed, output has been saved to ${error_log_file}"
|
||||||
|
"\nFalling back to checkout, previous commit tagged as ${tag_name}")
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" tag -a
|
||||||
|
-m "ExternalProject attempting to move from here to ${checkout_name}"
|
||||||
|
${tag_name}
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
COMMAND_ERROR_IS_FATAL ANY
|
||||||
|
)
|
||||||
|
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" checkout "${checkout_name}"
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
COMMAND_ERROR_IS_FATAL ANY
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(need_stash)
|
||||||
|
# Put back the stashed changes
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" stash pop --index --quiet
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
)
|
||||||
|
if(error_code)
|
||||||
|
# Stash pop --index failed: Try again dropping the index
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" reset --hard --quiet
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
)
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" stash pop --quiet
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
RESULT_VARIABLE error_code
|
||||||
|
)
|
||||||
|
if(error_code)
|
||||||
|
# Stash pop failed: Restore previous state.
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" reset --hard --quiet ${head_sha}
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
)
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" stash pop --index --quiet
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
)
|
||||||
|
message(FATAL_ERROR "\nFailed to unstash changes in: '/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src'."
|
||||||
|
"\nYou will have to resolve the conflicts manually")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(init_submodules "TRUE")
|
||||||
|
if(init_submodules)
|
||||||
|
execute_process(
|
||||||
|
COMMAND "/usr/bin/git" submodule update --recursive --init
|
||||||
|
WORKING_DIRECTORY "/media/psf/freelancing/greenhouse/ros2_ws/src/darknet_vendor/build/_deps/darknet-download-src"
|
||||||
|
COMMAND_ERROR_IS_FATAL ANY
|
||||||
|
)
|
||||||
|
endif()
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user