We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
(Releated to: #124)
Consider the following code:
#include <Poco\RegularExpression.h> #include <iostream> int main() { std::cout << Poco::RegularExpression::match("\\d+", "12"); }
Run this code will report the following message: The program can’t start because pcre.dll is missing from your computer. Release build is good.
I checked the poco built process, found that poco debug built linked to the release pcre lib, I think that caused the problem.
The text was updated successfully, but these errors were encountered:
Fix poco-pcre debug link issue
f3cb182
Should fix: microsoft#302
Fix github action (microsoft#302)
d7ce6f5
Successfully merging a pull request may close this issue.
(Releated to: #124)
Consider the following code:
Run this code will report the following message:
The program can’t start because pcre.dll is missing from your computer.
Release build is good.
I checked the poco built process, found that poco debug built linked to the release pcre lib, I think that caused the problem.
The text was updated successfully, but these errors were encountered: