File tree Expand file tree Collapse file tree 4 files changed +5
-10
lines changed
Expand file tree Collapse file tree 4 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -429,7 +429,7 @@ namespace
429429
430430 if (!linkAsExecutable)
431431 {
432- if (GetValueFromPlatformMap (profile.SharedLinkFile .Extension ) == nullptr )
432+ if (! HasValueFromPlatformMap (profile.SharedLinkFile .Extension ))
433433 {
434434 ssLOG_WARNING ( " profile " << profile.Name << " missing extension for " <<
435435 " shared link file" );
@@ -442,15 +442,15 @@ namespace
442442 }
443443 else
444444 {
445- if (GetValueFromPlatformMap (profile.SharedLinkFile .Extension ) == nullptr )
445+ if (! HasValueFromPlatformMap (profile.SharedLinkFile .Extension ))
446446 {
447447 ssLOG_WARNING ( " profile " << profile.Name << " missing extension for " <<
448448 " shared link file" );
449449
450450 continue ;
451451 }
452452
453- if (GetValueFromPlatformMap (profile.StaticLinkFile .Extension ) == nullptr )
453+ if (! HasValueFromPlatformMap (profile.StaticLinkFile .Extension ))
454454 {
455455 ssLOG_WARNING ( " profile " << profile.Name << " missing extension for " <<
456456 " static link file" );
Original file line number Diff line number Diff line change @@ -337,14 +337,12 @@ namespace
337337 *runcpp2::GetValueFromPlatformMap (profile.SharedLinkFile .Extension ));
338338
339339 if ( *runcpp2::GetValueFromPlatformMap (profile.SharedLinkFile .Extension ) !=
340- *runcpp2::GetValueFromPlatformMap (profile.SharedLibraryFile .Extension ) ||
341- *runcpp2::GetValueFromPlatformMap (profile.SharedLinkFile .Prefix ) !=
342- *runcpp2::GetValueFromPlatformMap (profile.SharedLibraryFile .Prefix ))
340+ *runcpp2::GetValueFromPlatformMap (profile.SharedLibraryFile .Extension ))
343341 {
344342 outExtensionsToCopy.push_back (
345343 *runcpp2::GetValueFromPlatformMap (profile.SharedLibraryFile .Extension ));
346344 }
347-
345+
348346 break ;
349347 }
350348 case runcpp2::Data::DependencyLibraryType::OBJECT:
Original file line number Diff line number Diff line change 22#include " runcpp2/StringUtil.hpp"
33#include " runcpp2/runcpp2.hpp"
44
5- // #include "TupleHash.hpp"
6-
75#include " ssLogger/ssLog.hpp"
86
97int ParseArgs ( const std::unordered_map<std::string, runcpp2::OptionInfo>& longOptionsMap,
Original file line number Diff line number Diff line change 55- Change cache to be in the config folder
66- Output compile_command.json
77- Allow script info as standalone yaml file
8- - Commandline options
98- Allow Languages to override FileExtensions in compiler profile
You can’t perform that action at this time.
0 commit comments