-
Notifications
You must be signed in to change notification settings - Fork 374
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(otel): add Makefile #13177
feat(otel): add Makefile #13177
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #13177 +/- ##
==========================================
- Coverage 92.99% 92.99% -0.01%
==========================================
Files 2138 2138
Lines 185971 185971
==========================================
- Hits 172952 172949 -3
- Misses 13019 13022 +3 ☔ View full report in Codecov by Sentry. |
6f83e7f
to
6dadba8
Compare
|
||
# Configuration variables to compile and link against the Google Cloud | ||
# OpenTelemetry Exporter library and the Google Cloud Storage client. | ||
CLIENT_MODULE := google_cloud_cpp_opentelemetry google_cloud_cpp_storage |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/CLIENT_MODULE/EXAMPLE_MODULES/ ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure.
Fixes #10795
Add a Makefile to the OpenTelemetry exporter library quickstart, to show how to build with
make(1)
.Also, now that
opentelemetry-cpp
installs its ownopentelemetry_*.pc
modules with proper compiler definitions, we no longer need to defineHAVE_ABSEIL
for them in our code. Yay.This change is