Skip to content

Commit

Permalink
Regenerate artifacts.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmienk committed Nov 21, 2022
1 parent 34d4ec1 commit 19bfef5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@
</ProjectConfiguration>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup>
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="PropertySheets">
<Import Project="$(ProjectDir)..\..\properties\$(Configuration).props" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) != -1">DynamicLibrary</ConfigurationType>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup>
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="PropertySheets">
<Import Project="$(ProjectDir)..\..\properties\$(Configuration).props" />
Expand Down
4 changes: 2 additions & 2 deletions install-cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ set_os_specific_compiler_settings()

link_to_standard_library()
{
if [[ ($OS == Linux && $CC == "clang") || ($OS == OpenBSD) ]]; then
if [[ ($OS == Linux && $CC == clang*) || ($OS == OpenBSD) ]]; then
export LDLIBS="-l$STDLIB $LDLIBS"
export CXXFLAGS="-stdlib=lib$STDLIB $CXXFLAGS"
fi
Expand Down Expand Up @@ -728,7 +728,7 @@ initialize_boost_configuration()
BOOST_TOOLSET="toolset=$CC"
fi

if [[ ($OS == Linux && $CC == "clang") || ($OS == OpenBSD) ]]; then
if [[ ($OS == Linux && $CC == clang*) || ($OS == OpenBSD) ]]; then
STDLIB_FLAG="-stdlib=lib$STDLIB"
BOOST_CXXFLAGS="cxxflags=$STDLIB_FLAG"
BOOST_LINKFLAGS="linkflags=$STDLIB_FLAG"
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ set_os_specific_compiler_settings()

link_to_standard_library()
{
if [[ ($OS == Linux && $CC == "clang") || ($OS == OpenBSD) ]]; then
if [[ ($OS == Linux && $CC == clang*) || ($OS == OpenBSD) ]]; then
export LDLIBS="-l$STDLIB $LDLIBS"
export CXXFLAGS="-stdlib=lib$STDLIB $CXXFLAGS"
fi
Expand Down Expand Up @@ -608,7 +608,7 @@ initialize_boost_configuration()
BOOST_TOOLSET="toolset=$CC"
fi

if [[ ($OS == Linux && $CC == "clang") || ($OS == OpenBSD) ]]; then
if [[ ($OS == Linux && $CC == clang*) || ($OS == OpenBSD) ]]; then
STDLIB_FLAG="-stdlib=lib$STDLIB"
BOOST_CXXFLAGS="cxxflags=$STDLIB_FLAG"
BOOST_LINKFLAGS="linkflags=$STDLIB_FLAG"
Expand Down

0 comments on commit 19bfef5

Please sign in to comment.