Skip to content
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

[yaml-cpp] warnings when using dynamic library #4205

Open
HarryDC opened this issue Aug 31, 2018 · 5 comments
Open

[yaml-cpp] warnings when using dynamic library #4205

HarryDC opened this issue Aug 31, 2018 · 5 comments
Assignees
Labels
depends:upstream-changes Waiting on a change to the upstream project

Comments

@HarryDC
Copy link

HarryDC commented Aug 31, 2018

When using yaml-cpp built as a dynamic library under visual studio there are warning issued C4251 (needs to have dll interface) and C4275 (non-dll interface used as base for dll-interface). This seems to stem from an action done in the portfile

When building yaml-cpp the portfile patches the file dll.h lines 58-64

file(READ ${CURRENT_PACKAGES_DIR}/include/yaml-cpp/dll.h DLL_H)
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
    string(REPLACE "#ifdef YAML_CPP_DLL" "#if 1" DLL_H "${DLL_H}")
else()
    string(REPLACE "#ifdef YAML_CPP_DLL" "#if 0" DLL_H "${DLL_H}")
endif()
file(WRITE ${CURRENT_PACKAGES_DIR}/include/yaml-cpp/dll.h "${DLL_H}")

This probably doesn't matter on static builds but for dynamic builds this cause the dll.h file to define

#define YAML_CPP_API __declspec(dllexport)

unconditionally, which in turn causes visual studio to issue a warning when using the yaml-cpp file. This block was introduced last year. I am assuming to fix another issue but there isn't really any explanation in the log, i'd just remove the block from the portfile, but it's hard to know what might get broken. Additionally it doesn't look like YAML_CPP_DLL gets defined in the portfile on dynamic builds. That should probably be passed to vcpkg_configure_cmake

@HarryDC HarryDC changed the title [yaml-cpp] portfile bug [yaml-cpp] warnings when using dynamic library Aug 31, 2018
@jeanga
Copy link
Contributor

jeanga commented Sep 3, 2018

It has also been reported into yaml-cpp but empty_scalar static member (in node_data.h) misses a YAML_CPP_API (to dllexport it).
It is mandatory for data members to be explicitely exported.

yaml-cpp\node\detail\node_data.h(84):
static YAML_CPP_API std::string empty_scalar;

instead of:
static std::string empty_scalar;

another, better change would be to declare this as a static member function returning a const ref to a static var:
static const std::string& empty_scalar() {
static const std::string _empty_scalar;
return _empty_scalar;
}
(and you need to change the (few) references to empty_scalar to empty_scalar()
I have tested it. It works but requires more changes.

HTH
Jean

@HarryDC
Copy link
Author

HarryDC commented Sep 4, 2018

It seems that the warnings were left in knowingly (#1621)

@NancyLi1013 NancyLi1013 added the category:port-bug The issue is with a library, which is something the port should already support label Jan 23, 2019
@JackBoosY
Copy link
Contributor

Hi @HarryDC , thanks for reporting this issue.
I didn't see any problem with built yaml-cpp, and there was no error when I used it(except Waring C4251).
So, my question is, how much does this problem affect you? If this problem is not fatal, I will close it. Otherwise, I will make a patch to solve it.
Thanks.

@jeanga
Copy link
Contributor

jeanga commented Apr 23, 2019

Problem is not fatal but I would really like to get rid of the noise to my compilation output.
(esp. when the pages of warnings intermix with actual error messages)
Sincerely, I am currently looking for altenatives to this library just because of the warnings annoyance.
(I really like yaml-cpp. it is fast and easy to use but I like a clean compiler output better)

@LilyWangL LilyWangL assigned Cheney-W and unassigned LilyWangL Nov 26, 2019
@Cheney-W Cheney-W added depends:upstream-changes Waiting on a change to the upstream project and removed category:port-bug The issue is with a library, which is something the port should already support labels Dec 2, 2019
@Cheney-W
Copy link
Contributor

Cheney-W commented Dec 2, 2019

@jeanga
If you just want to have a clean compiler output, you can use this patch locally.
0004-disable-warning.zip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
depends:upstream-changes Waiting on a change to the upstream project
Projects
None yet
Development

No branches or pull requests

6 participants