Subject: | check_link_perlapi doesn't work properly with Visual Studio |
Config::AutoConf->check_link_perlapi constructs default linker arguments from data in %Config:
-L$installarchlib\CORE -lperl530.lib ... etc
However this is the ld syntax. The MSVC linker takes libraries as arguments (no '-l' option) and the option to add library paths is /LIBPATH:dir
https://docs.microsoft.com/en-us/cpp/build/reference/linking?view=vs-2015
https://docs.microsoft.com/en-us/cpp/build/reference/libpath-additional-libpath?view=vs-2015