-
Notifications
You must be signed in to change notification settings - Fork 500
[BUILD] Patches for building on AIX #3127
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
Changes from 3 commits
7510860
8367bf8
662d794
e477abb
01e5bcf
ae421a9
5045713
4c908f7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,19 @@ | |
#include "opentelemetry/common/macros.h" | ||
#include "opentelemetry/version.h" | ||
|
||
/* | ||
* Special considerations for HostArchValues | ||
* | ||
* The sys/systemcfg.h header on AIX is known to define an IA64 macro, | ||
* which collides with HostArchValues::IA64. | ||
tjcw marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
*/ | ||
#ifdef _AIX | ||
# ifdef IA64 | ||
# pragma message "Removing define on IA64" | ||
# undef IA64 | ||
# endif | ||
#endif | ||
|
||
OPENTELEMETRY_BEGIN_NAMESPACE | ||
namespace sdk | ||
{ | ||
|
Uh oh!
There was an error while loading. Please reload this page.