-
Notifications
You must be signed in to change notification settings - Fork 10
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
Release exported headers to include/aiebu #76
Changes from all commits
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (C) 2025, Advanced Micro Devices, Inc. All rights reserved. | ||
#pragma message("please replace src/cpp/aiebu/src/include/aiebu.h with src/cpp/include/aiebu/aiebu.h") | ||
#pragma message("Please replace inclusion of include/aiebu.h with include/aiebu/aiebu.h") | ||
#include "../../../include/aiebu/aiebu.h" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (C) 2025, Advanced Micro Devices, Inc. All rights reserved. | ||
#pragma message("please replace src/cpp/aiebu/src/include/aiebu_assembler.h with src/cpp/include/aiebu/aiebu_assembler.h") | ||
#pragma message("Please replace inclusion of include/aiebu_assembler.h with include/aiebu/aiebu_assembler.h") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: Please replace inclusion of include/aiebu_assembler.h with include/aiebu/aiebu_assembler.h [clang-diagnostic-#pragma-messages] #pragma message("Please replace inclusion of include/aiebu_assembler.h with include/aiebu/aiebu_assembler.h")
^ |
||
#include "../../../include/aiebu/aiebu_assembler.h" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (C) 2025, Advanced Micro Devices, Inc. All rights reserved. | ||
#pragma message("please replace src/cpp/aiebu/src/include/aiebu_error.h with src/cpp/include/aiebu/aiebu_error.h") | ||
#pragma message("Please replace inclusion of include/aiebu_error.h with include/aiebu/aiebu_error.h") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: Please replace inclusion of include/aiebu_error.h with include/aiebu/aiebu_error.h [clang-diagnostic-#pragma-messages] #pragma message("Please replace inclusion of include/aiebu_error.h with include/aiebu/aiebu_error.h")
^ |
||
#include "../../../include/aiebu/aiebu_error.h" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (C) 2025, Advanced Micro Devices, Inc. All rights reserved. | ||
#ifndef AIEBU_DETAIL_CONFIG_H | ||
#define AIEBU_DETAIL_CONFIG_H | ||
|
||
//------------------Enable dynamic linking on windows-------------------------// | ||
|
||
#ifdef _WIN32 | ||
# ifndef AIEBU_STATIC_BUILD | ||
# ifdef AIEBU_API_SOURCE | ||
# define AIEBU_API_EXPORT __declspec(dllexport) | ||
# else | ||
# define AIEBU_API_EXPORT __declspec(dllimport) | ||
# endif | ||
# endif | ||
#endif | ||
#ifdef __linux__ | ||
# ifdef AIEBU_API_SOURCE | ||
# define AIEBU_API_EXPORT __attribute__ ((visibility("default"))) | ||
# else | ||
# define AIEBU_API_EXPORT | ||
# endif | ||
#endif | ||
|
||
#ifndef AIEBU_API_EXPORT | ||
# define AIEBU_API_EXPORT | ||
#endif | ||
|
||
#endif |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (C) 2025, Advanced Micro Devices, Inc. All rights reserved. | ||
#pragma message("Please replace inclusion of aiebu.h with aiebu/aiebu.h") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: Please replace inclusion of aiebu.h with aiebu/aiebu.h [clang-diagnostic-#pragma-messages] #pragma message("Please replace inclusion of aiebu.h with aiebu/aiebu.h")
^ |
||
#include "aiebu/aiebu.h" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (C) 2025, Advanced Micro Devices, Inc. All rights reserved. | ||
#pragma message("Please replace inclusion of aiebu_assembler.h with aiebu/aiebu_assembler.h") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: Please replace inclusion of aiebu_assembler.h with aiebu/aiebu_assembler.h [clang-diagnostic-#pragma-messages] #pragma message("Please replace inclusion of aiebu_assembler.h with aiebu/aiebu_assembler.h")
^ |
||
#include "aiebu/aiebu_assembler.h" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (C) 2025, Advanced Micro Devices, Inc. All rights reserved. | ||
#pragma message("Please replace inclusion of aiebu_error.h with aiebu/aiebu_error.h") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: Please replace inclusion of aiebu_error.h with aiebu/aiebu_error.h [clang-diagnostic-#pragma-messages] #pragma message("Please replace inclusion of aiebu_error.h with aiebu/aiebu_error.h")
^ |
||
#include "aiebu/aiebu_error.h" |
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.
warning: Please replace inclusion of include/aiebu.h with include/aiebu/aiebu.h [clang-diagnostic-#pragma-messages]
#pragma message("Please replace inclusion of include/aiebu.h with include/aiebu/aiebu.h") ^