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
when i first time use tpl,it build errors like:undefined reference to `_imp__tpl_pack',and then i found
and then i change the ifdef with ifndef,then the probrom solve,i do'n know why or that is true?
The text was updated successfully, but these errors were encountered:
I know why,if i use tpl in windows just need change tpl.h line45 : #ifdef _WIN32 to #ifndef _WIN32
Sorry, something went wrong.
No branches or pull requests
when i first time use tpl,it build errors like:undefined reference to `_imp__tpl_pack',and then i found
ifdef _WIN32
#ifdef TPL_EXPORTS //(1)here is the probrom
define TPL_API __declspec(dllexport)
else /* */
ifdef TPL_NOLIB //(2)and here
define TPL_API
else
define TPL_API __declspec(dllimport)
endif /* TPL_NOLIB */
endif /* TPL_EXPORTS*/
else
define TPL_API
endif
and then i change the ifdef with ifndef,then the probrom solve,i do'n know why or that is true?
The text was updated successfully, but these errors were encountered: