mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 11:21:38 +08:00
8ad33ead90
* Revert "incorporate changes from microsoft:master" * Revert "Revert "incorporate changes from microsoft:master"" * WIP: update to tensorflow 2.6 * update patch * update more patches * fix patch again * fix new Windows compile/linkage errors * fix patch * fix patch again * temporarily revert Windows build option fix to test whether upstream fix doesn't work * check if constexpr is sufficient (is_same_v requires C++17) * try patch for build parameters * remove fastbuild patch and improve constexpr patch (no C++17 requirement) (fastbuild patch didn't work because bazel overrides it with /DEBUG:FULL) * x-add-version * add C++17 preprocessor switch for "if constexpr" * x-add-version * remove pre-processor switch (doesn't work without) * x-add-version * work-around toolchain issues on macOS * x-add-version * fix Windows build options (must be string, not list) * x-add-version * temporarily add code to debug CI * temporarily add more debug output as build doesn't even start on macOS CI * remove debug code, add switch for linker parameters on macOS and re-introduce old behaviour (some platforms still use old behaviour) * x-add-version * fix broken string termination * x-add-version * fix function name * x-add-version Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
319 lines
8.8 KiB
Diff
319 lines
8.8 KiB
Diff
diff --git a/tensorflow/core/platform/macros.h b/tensorflow/core/platform/macros.h
|
|
--- a/tensorflow/core/platform/macros.h
|
|
+++ b/tensorflow/core/platform/macros.h
|
|
@@ -57,16 +57,7 @@
|
|
#define TF_SCANF_ATTRIBUTE(string_index, first_to_check)
|
|
#endif
|
|
|
|
-// Control visibility outside .so
|
|
-#if defined(_WIN32)
|
|
-#ifdef TF_COMPILE_LIBRARY
|
|
-#define TF_EXPORT __declspec(dllexport)
|
|
-#else
|
|
-#define TF_EXPORT __declspec(dllimport)
|
|
-#endif // TF_COMPILE_LIBRARY
|
|
-#else
|
|
-#define TF_EXPORT __attribute__((visibility("default")))
|
|
-#endif // _WIN32
|
|
+#define TF_EXPORT
|
|
|
|
#ifdef __has_builtin
|
|
#define TF_HAS_BUILTIN(x) __has_builtin(x)
|
|
|
|
diff --git a/tensorflow/c/c_api.h b/tensorflow/c/c_api.h
|
|
--- a/tensorflow/c/c_api.h
|
|
+++ b/tensorflow/c/c_api.h
|
|
@@ -71,24 +71,7 @@
|
|
// and the API just provides high level controls over the number of
|
|
// devices of each type.
|
|
|
|
-// Macro to control visibility of exported symbols in the shared library (.so,
|
|
-// .dylib, .dll).
|
|
-// This duplicates the TF_EXPORT macro definition in
|
|
-// tensorflow/core/platform/macros.h in order to keep this .h file independent
|
|
-// of any other includes.
|
|
-#ifdef SWIG
|
|
#define TF_CAPI_EXPORT
|
|
-#else
|
|
-#if defined(_WIN32)
|
|
-#ifdef TF_COMPILE_LIBRARY
|
|
-#define TF_CAPI_EXPORT __declspec(dllexport)
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __declspec(dllimport)
|
|
-#endif // TF_COMPILE_LIBRARY
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __attribute__((visibility("default")))
|
|
-#endif // _WIN32
|
|
-#endif // SWIG
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
|
|
diff --git a/tensorflow/c/c_api_experimental.h b/tensorflow/c/c_api_experimental.h
|
|
--- a/tensorflow/c/c_api_experimental.h
|
|
+++ b/tensorflow/c/c_api_experimental.h
|
|
@@ -28,24 +28,7 @@
|
|
// The API here is subject to changes in the future.
|
|
// --------------------------------------------------------------------------
|
|
|
|
-// Macro to control visibility of exported symbols in the shared library (.so,
|
|
-// .dylib, .dll).
|
|
-// This duplicates the TF_EXPORT macro definition in
|
|
-// tensorflow/core/platform/macros.h in order to keep this .h file independent
|
|
-// of any other includes.$a
|
|
-#ifdef SWIG
|
|
#define TF_CAPI_EXPORT
|
|
-#else
|
|
-#if defined(_WIN32)
|
|
-#ifdef TF_COMPILE_LIBRARY
|
|
-#define TF_CAPI_EXPORT __declspec(dllexport)
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __declspec(dllimport)
|
|
-#endif // TF_COMPILE_LIBRARY
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __attribute__((visibility("default")))
|
|
-#endif // _WIN32
|
|
-#endif // SWIG
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
|
|
diff --git a/tensorflow/c/c_api_macros.h b/tensorflow/c/c_api_macros.h
|
|
--- a/tensorflow/c/c_api_macros.h
|
|
+++ b/tensorflow/c/c_api_macros.h
|
|
@@ -16,17 +16,5 @@
|
|
#ifndef TENSORFLOW_C_C_API_MACROS_H_
|
|
#define TENSORFLOW_C_C_API_MACROS_H_
|
|
|
|
-#ifdef SWIG
|
|
#define TF_CAPI_EXPORT
|
|
-#else
|
|
-#if defined(_WIN32)
|
|
-#ifdef TF_COMPILE_LIBRARY
|
|
-#define TF_CAPI_EXPORT __declspec(dllexport)
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __declspec(dllimport)
|
|
-#endif // TF_COMPILE_LIBRARY
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __attribute__((visibility("default")))
|
|
-#endif // _WIN32
|
|
-#endif // SWIG
|
|
|
|
|
|
diff --git a/tensorflow/c/kernels.h b/tensorflow/c/kernels.h
|
|
--- a/tensorflow/c/kernels.h
|
|
+++ b/tensorflow/c/kernels.h
|
|
@@ -24,24 +24,7 @@
|
|
#include "tensorflow/c/tf_status.h"
|
|
#include "tensorflow/c/tf_tensor.h"
|
|
|
|
-// Macro to control visibility of exported symbols in the shared library (.so,
|
|
-// .dylib, .dll).
|
|
-// This duplicates the TF_EXPORT macro definition in
|
|
-// tensorflow/core/platform/macros.h in order to keep this .h file independent
|
|
-// of any other includes.
|
|
-#ifdef SWIG
|
|
#define TF_CAPI_EXPORT
|
|
-#else
|
|
-#if defined(_WIN32)
|
|
-#ifdef TF_COMPILE_LIBRARY
|
|
-#define TF_CAPI_EXPORT __declspec(dllexport)
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __declspec(dllimport)
|
|
-#endif // TF_COMPILE_LIBRARY
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __attribute__((visibility("default")))
|
|
-#endif // _WIN32
|
|
-#endif // SWIG
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
|
|
diff --git a/tensorflow/c/kernels_experimental.h b/tensorflow/c/kernels_experimental.h
|
|
--- a/tensorflow/c/kernels_experimental.h
|
|
+++ b/tensorflow/c/kernels_experimental.h
|
|
@@ -25,24 +25,7 @@
|
|
// The API here is subject to changes in the future.
|
|
// --------------------------------------------------------------------------
|
|
|
|
-// Macro to control visibility of exported symbols in the shared library (.so,
|
|
-// .dylib, .dll).
|
|
-// This duplicates the TF_EXPORT macro definition in
|
|
-// tensorflow/core/platform/macros.h in order to keep this .h file independent
|
|
-// of any other includes.
|
|
-#ifdef SWIG
|
|
#define TF_CAPI_EXPORT
|
|
-#else
|
|
-#if defined(_WIN32)
|
|
-#ifdef TF_COMPILE_LIBRARY
|
|
-#define TF_CAPI_EXPORT __declspec(dllexport)
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __declspec(dllimport)
|
|
-#endif // TF_COMPILE_LIBRARY
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __attribute__((visibility("default")))
|
|
-#endif // _WIN32
|
|
-#endif // SWIG
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
|
|
diff --git a/tensorflow/c/ops.h b/tensorflow/c/ops.h
|
|
--- a/tensorflow/c/ops.h
|
|
+++ b/tensorflow/c/ops.h
|
|
@@ -76,19 +76,7 @@
|
|
#include "tensorflow/c/tf_datatype.h"
|
|
#include "tensorflow/c/tf_status.h"
|
|
|
|
-#ifdef SWIG
|
|
#define TF_CAPI_EXPORT
|
|
-#else
|
|
-#if defined(_WIN32)
|
|
-#ifdef TF_COMPILE_LIBRARY
|
|
-#define TF_CAPI_EXPORT __declspec(dllexport)
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __declspec(dllimport)
|
|
-#endif // TF_COMPILE_LIBRARY
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __attribute__((visibility("default")))
|
|
-#endif // _WIN32
|
|
-#endif // SWIG
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
|
|
diff --git a/tensorflow/c/tf_datatype.h b/tensorflow/c/tf_datatype.h
|
|
--- a/tensorflow/c/tf_datatype.h
|
|
+++ b/tensorflow/c/tf_datatype.h
|
|
@@ -18,24 +18,7 @@
|
|
|
|
#include <stddef.h>
|
|
|
|
-// Macro to control visibility of exported symbols in the shared library (.so,
|
|
-// .dylib, .dll).
|
|
-// This duplicates the TF_EXPORT macro definition in
|
|
-// tensorflow/core/platform/macros.h in order to keep this .h file independent
|
|
-// of any other includes.
|
|
-#ifdef SWIG
|
|
#define TF_CAPI_EXPORT
|
|
-#else
|
|
-#if defined(_WIN32)
|
|
-#ifdef TF_COMPILE_LIBRARY
|
|
-#define TF_CAPI_EXPORT __declspec(dllexport)
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __declspec(dllimport)
|
|
-#endif // TF_COMPILE_LIBRARY
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __attribute__((visibility("default")))
|
|
-#endif // _WIN32
|
|
-#endif // SWIG
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
|
|
diff --git a/tensorflow/c/tf_status.h b/tensorflow/c/tf_status.h
|
|
--- a/tensorflow/c/tf_status.h
|
|
+++ b/tensorflow/c/tf_status.h
|
|
@@ -16,19 +16,7 @@
|
|
#ifndef TENSORFLOW_C_TF_STATUS_H_
|
|
#define TENSORFLOW_C_TF_STATUS_H_
|
|
|
|
-#ifdef SWIG
|
|
#define TF_CAPI_EXPORT
|
|
-#else
|
|
-#if defined(_WIN32)
|
|
-#ifdef TF_COMPILE_LIBRARY
|
|
-#define TF_CAPI_EXPORT __declspec(dllexport)
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __declspec(dllimport)
|
|
-#endif // TF_COMPILE_LIBRARY
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __attribute__((visibility("default")))
|
|
-#endif // _WIN32
|
|
-#endif // SWIG
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
|
|
diff --git a/tensorflow/c/tf_tensor.h b/tensorflow/c/tf_tensor.h
|
|
--- a/tensorflow/c/tf_tensor.h
|
|
+++ b/tensorflow/c/tf_tensor.h
|
|
@@ -23,24 +23,7 @@
|
|
#include "tensorflow/c/tf_datatype.h"
|
|
#include "tensorflow/c/tf_status.h"
|
|
|
|
-// Macro to control visibility of exported symbols in the shared library (.so,
|
|
-// .dylib, .dll).
|
|
-// This duplicates the TF_EXPORT macro definition in
|
|
-// tensorflow/core/platform/macros.h in order to keep this .h file independent
|
|
-// of any other includes.
|
|
-#ifdef SWIG
|
|
#define TF_CAPI_EXPORT
|
|
-#else
|
|
-#if defined(_WIN32)
|
|
-#ifdef TF_COMPILE_LIBRARY
|
|
-#define TF_CAPI_EXPORT __declspec(dllexport)
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __declspec(dllimport)
|
|
-#endif // TF_COMPILE_LIBRARY
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __attribute__((visibility("default")))
|
|
-#endif // _WIN32
|
|
-#endif // SWIG
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
|
|
diff --git a/tensorflow/c/tf_tstring.h b/tensorflow/c/tf_tstring.h
|
|
--- a/tensorflow/c/tf_tstring.h
|
|
+++ b/tensorflow/c/tf_tstring.h
|
|
@@ -18,19 +18,7 @@
|
|
#include "tensorflow/c/tf_tensor.h"
|
|
#include "tensorflow/core/platform/ctstring.h"
|
|
|
|
-#ifdef SWIG
|
|
#define TF_CAPI_EXPORT
|
|
-#else
|
|
-#if defined(_WIN32)
|
|
-#ifdef TF_COMPILE_LIBRARY
|
|
-#define TF_CAPI_EXPORT __declspec(dllexport)
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __declspec(dllimport)
|
|
-#endif // TF_COMPILE_LIBRARY
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __attribute__((visibility("default")))
|
|
-#endif // _WIN32
|
|
-#endif // SWIG
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
|
|
diff --git a/tensorflow/c/eager/c_api.h b/tensorflow/c/eager/c_api.h
|
|
--- a/tensorflow/c/eager/c_api.h
|
|
+++ b/tensorflow/c/eager/c_api.h
|
|
@@ -22,24 +22,7 @@
|
|
|
|
#include "tensorflow/c/c_api.h"
|
|
|
|
-// Macro to control visibility of exported symbols in the shared library (.so,
|
|
-// .dylib, .dll).
|
|
-// This duplicates the TF_EXPORT macro definition in
|
|
-// tensorflow/core/platform/macros.h in order to keep this .h file independent
|
|
-// of any other includes.$a
|
|
-#ifdef SWIG
|
|
#define TF_CAPI_EXPORT
|
|
-#else
|
|
-#if defined(_WIN32)
|
|
-#ifdef TF_COMPILE_LIBRARY
|
|
-#define TF_CAPI_EXPORT __declspec(dllexport)
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __declspec(dllimport)
|
|
-#endif // TF_COMPILE_LIBRARY
|
|
-#else
|
|
-#define TF_CAPI_EXPORT __attribute__((visibility("default")))
|
|
-#endif // _WIN32
|
|
-#endif // SWIG
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|