libc++协程的suspend_always::await_suspend应该是"exported"到c++experimental.lib?
Is libc++ coroutine's suspend_always::await_suspend supposed to be "exported" to c++experimental.lib?
针对我构建的 libc++ 编译协程时出现此错误
"C:\Program Files\LLVM\bin\lld-link" ... c++.lib c++experimental.lib ...
lld-link: error: undefined symbol: __declspec(dllimport) public: void __cdecl std::experimental::coroutines_v1::suspend_always::await_suspend(class std::experimental::coroutines_v1::coroutine_handle<void>) const
在此之前,我使用 -DLIBCXX_ENABLE_SHARED=YES
-DLIBCXX_ENABLE_STATIC=NO
-DLIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=YES
构建了 libc++
set LIB=C:\Program Files (x86)\Microsoft Visual Studio19\BuildTools\VC\Tools\MSVC.20.27508\lib\x64;C:\Program Files (x86)\Windows Kits\Lib.0.17763.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\Lib.0.17763.0\um\x64
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_MAKE_PROGRAM="C:/Program Files (x86)/Ninja/ninja.exe" -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_C_COMPILER="C:/Program Files/LLVM/bin/clang-cl.exe" -DCMAKE_C_FLAGS="-fms-compatibility-version=19.20.27508 --target=x86_64-pc-windows-msvc19.20.27508" -DCMAKE_CXX_COMPILER="C:/Program Files/LLVM/bin/clang-cl.exe" -DCMAKE_CXX_FLAGS="-fms-compatibility-version=19.20.27508 --target=x86_64-pc-windows-msvc19.20.27508" -DCMAKE_C_LINK_EXECUTABLE="C:/Program Files/LLVM/bin/lld-link.exe" -DCMAKE_CXX_LINK_EXECUTABLE="C:/Program Files/LLVM/bin/lld-link.exe" -DLLVM_PATH="C:/Program Files/LLVM" -DLIBCXX_ENABLE_SHARED=YES -DLIBCXX_ENABLE_STATIC=NO -DLIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=YES "C:/libcxx-master"
ninja -j 2
所以我尝试了 nm c++.lib
和 nm c++experimental.lib
。我没有找到 suspend_always
.
的踪迹
dll 中似乎缺少 suspend_always::await_suspend
。所以我研究了一些 C++ 宏。
在C:/libcxx-master/CMakeLists.txt
中定义了_LIBCPP_BUILDING_LIBRARY
。
add_definitions(-D_LIBCPP_BUILDING_LIBRARY)
在C:/libcxx-master/include/__config
中,我们有
#if defined(__ELF__)
# define _LIBCPP_OBJECT_FORMAT_ELF 1
#elif defined(__MACH__)
# define _LIBCPP_OBJECT_FORMAT_MACHO 1
#elif defined(_WIN32)
# define _LIBCPP_OBJECT_FORMAT_COFF 1
#elif defined(__wasm__)
# define _LIBCPP_OBJECT_FORMAT_WASM 1
#else
# error Unknown object file format
#endif
我在 _WIN32
所以我们有 _LIBCPP_OBJECT_FORMAT_COFF
好 defined
.
再往下,我们有
#if defined(_LIBCPP_OBJECT_FORMAT_COFF)
#ifdef _DLL
# define _LIBCPP_CRT_FUNC __declspec(dllimport)
#else
# define _LIBCPP_CRT_FUNC
#endif
#if defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
# define _LIBCPP_DLL_VIS
# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS
# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
# define _LIBCPP_OVERRIDABLE_FUNC_VIS
# define _LIBCPP_EXPORTED_FROM_ABI
#elif defined(_LIBCPP_BUILDING_LIBRARY)
# define _LIBCPP_DLL_VIS __declspec(dllexport)
# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS
# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS _LIBCPP_DLL_VIS
# define _LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_DLL_VIS
# define _LIBCPP_EXPORTED_FROM_ABI __declspec(dllexport)
#else
# define _LIBCPP_DLL_VIS __declspec(dllimport)
# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS _LIBCPP_DLL_VIS
# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
# define _LIBCPP_OVERRIDABLE_FUNC_VIS
# define _LIBCPP_EXPORTED_FROM_ABI __declspec(dllimport)
#endif
#define _LIBCPP_TYPE_VIS _LIBCPP_DLL_VIS
#define _LIBCPP_FUNC_VIS _LIBCPP_DLL_VIS
#define _LIBCPP_EXCEPTION_ABI _LIBCPP_DLL_VIS
#define _LIBCPP_HIDDEN
#define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
#define _LIBCPP_TEMPLATE_VIS
#define _LIBCPP_ENUM_VIS
#endif // defined(_LIBCPP_OBJECT_FORMAT_COFF)
这意味着当我们构建 libc++ 时,_LIBCPP_TYPE_VIS
变成了 __declspec(dllexport)
。所以我们可以将具体类型导出到 DLL
当我们编译代码时,_LIBCPP_TYPE_VIS
变成了__declspec(dllimport)
。所以我们可以从 DLL
导入具体类型
并且 experimental/coroutine
文件包含 experimental/__config
,其中包含 __config
并包含此 struct suspend_always
定义
struct _LIBCPP_TYPE_VIS suspend_always {
_LIBCPP_INLINE_VISIBILITY
bool await_ready() const _NOEXCEPT { return false; }
_LIBCPP_INLINE_VISIBILITY
void await_suspend(coroutine_handle<>) const _NOEXCEPT {}
_LIBCPP_INLINE_VISIBILITY
void await_resume() const _NOEXCEPT {}
};
所以当我们构建 libc++ 时,我们有 struct __declspec(dllexport) suspend_always
。当我们编译时,我们有 struct __declspec(dllimport) suspend_always
我什至在构建libc++
时尝试硬编码struct __declspec(dllexport) suspend_always
,结果还是一样。
然后我想到了一个主意。我创建了 libcxx-master/src/experimental/coroutine
并使其成为 #include <experimental/coroutine>
。重建 libc++.dll
结果这次工作正常。
我的问题是 struct suspend_always
(和 suspend_never
)是否 真的 应该导出到 c++experimental.lib
?
我在哪里可以将此报告给实施者?
似乎是一个错误。它应该在 r358551 中修复。
针对我构建的 libc++ 编译协程时出现此错误
"C:\Program Files\LLVM\bin\lld-link" ... c++.lib c++experimental.lib ...
lld-link: error: undefined symbol: __declspec(dllimport) public: void __cdecl std::experimental::coroutines_v1::suspend_always::await_suspend(class std::experimental::coroutines_v1::coroutine_handle<void>) const
在此之前,我使用 -DLIBCXX_ENABLE_SHARED=YES
-DLIBCXX_ENABLE_STATIC=NO
-DLIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=YES
set LIB=C:\Program Files (x86)\Microsoft Visual Studio19\BuildTools\VC\Tools\MSVC.20.27508\lib\x64;C:\Program Files (x86)\Windows Kits\Lib.0.17763.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\Lib.0.17763.0\um\x64
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_MAKE_PROGRAM="C:/Program Files (x86)/Ninja/ninja.exe" -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_C_COMPILER="C:/Program Files/LLVM/bin/clang-cl.exe" -DCMAKE_C_FLAGS="-fms-compatibility-version=19.20.27508 --target=x86_64-pc-windows-msvc19.20.27508" -DCMAKE_CXX_COMPILER="C:/Program Files/LLVM/bin/clang-cl.exe" -DCMAKE_CXX_FLAGS="-fms-compatibility-version=19.20.27508 --target=x86_64-pc-windows-msvc19.20.27508" -DCMAKE_C_LINK_EXECUTABLE="C:/Program Files/LLVM/bin/lld-link.exe" -DCMAKE_CXX_LINK_EXECUTABLE="C:/Program Files/LLVM/bin/lld-link.exe" -DLLVM_PATH="C:/Program Files/LLVM" -DLIBCXX_ENABLE_SHARED=YES -DLIBCXX_ENABLE_STATIC=NO -DLIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=YES "C:/libcxx-master"
ninja -j 2
所以我尝试了 nm c++.lib
和 nm c++experimental.lib
。我没有找到 suspend_always
.
dll 中似乎缺少 suspend_always::await_suspend
。所以我研究了一些 C++ 宏。
在C:/libcxx-master/CMakeLists.txt
中定义了_LIBCPP_BUILDING_LIBRARY
。
add_definitions(-D_LIBCPP_BUILDING_LIBRARY)
在C:/libcxx-master/include/__config
中,我们有
#if defined(__ELF__)
# define _LIBCPP_OBJECT_FORMAT_ELF 1
#elif defined(__MACH__)
# define _LIBCPP_OBJECT_FORMAT_MACHO 1
#elif defined(_WIN32)
# define _LIBCPP_OBJECT_FORMAT_COFF 1
#elif defined(__wasm__)
# define _LIBCPP_OBJECT_FORMAT_WASM 1
#else
# error Unknown object file format
#endif
我在 _WIN32
所以我们有 _LIBCPP_OBJECT_FORMAT_COFF
好 defined
.
再往下,我们有
#if defined(_LIBCPP_OBJECT_FORMAT_COFF)
#ifdef _DLL
# define _LIBCPP_CRT_FUNC __declspec(dllimport)
#else
# define _LIBCPP_CRT_FUNC
#endif
#if defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
# define _LIBCPP_DLL_VIS
# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS
# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
# define _LIBCPP_OVERRIDABLE_FUNC_VIS
# define _LIBCPP_EXPORTED_FROM_ABI
#elif defined(_LIBCPP_BUILDING_LIBRARY)
# define _LIBCPP_DLL_VIS __declspec(dllexport)
# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS
# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS _LIBCPP_DLL_VIS
# define _LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_DLL_VIS
# define _LIBCPP_EXPORTED_FROM_ABI __declspec(dllexport)
#else
# define _LIBCPP_DLL_VIS __declspec(dllimport)
# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS _LIBCPP_DLL_VIS
# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
# define _LIBCPP_OVERRIDABLE_FUNC_VIS
# define _LIBCPP_EXPORTED_FROM_ABI __declspec(dllimport)
#endif
#define _LIBCPP_TYPE_VIS _LIBCPP_DLL_VIS
#define _LIBCPP_FUNC_VIS _LIBCPP_DLL_VIS
#define _LIBCPP_EXCEPTION_ABI _LIBCPP_DLL_VIS
#define _LIBCPP_HIDDEN
#define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
#define _LIBCPP_TEMPLATE_VIS
#define _LIBCPP_ENUM_VIS
#endif // defined(_LIBCPP_OBJECT_FORMAT_COFF)
这意味着当我们构建 libc++ 时,_LIBCPP_TYPE_VIS
变成了 __declspec(dllexport)
。所以我们可以将具体类型导出到 DLL
当我们编译代码时,_LIBCPP_TYPE_VIS
变成了__declspec(dllimport)
。所以我们可以从 DLL
并且 experimental/coroutine
文件包含 experimental/__config
,其中包含 __config
并包含此 struct suspend_always
定义
struct _LIBCPP_TYPE_VIS suspend_always {
_LIBCPP_INLINE_VISIBILITY
bool await_ready() const _NOEXCEPT { return false; }
_LIBCPP_INLINE_VISIBILITY
void await_suspend(coroutine_handle<>) const _NOEXCEPT {}
_LIBCPP_INLINE_VISIBILITY
void await_resume() const _NOEXCEPT {}
};
所以当我们构建 libc++ 时,我们有 struct __declspec(dllexport) suspend_always
。当我们编译时,我们有 struct __declspec(dllimport) suspend_always
我什至在构建libc++
时尝试硬编码struct __declspec(dllexport) suspend_always
,结果还是一样。
然后我想到了一个主意。我创建了 libcxx-master/src/experimental/coroutine
并使其成为 #include <experimental/coroutine>
。重建 libc++.dll
结果这次工作正常。
我的问题是 struct suspend_always
(和 suspend_never
)是否 真的 应该导出到 c++experimental.lib
?
我在哪里可以将此报告给实施者?
似乎是一个错误。它应该在 r358551 中修复。