Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2018-04-09 11:40:15 +0300
committerGitHub <noreply@github.com>2018-04-09 11:40:15 +0300
commitb0699ed719f80cee352459c9ca87e2e14a06f320 (patch)
tree73202e3f6eae923cb14608e5a8663bc1e47e1fac /src/BuildIntegration
parent7ce5d362dd49aeacf40071b1623181b2a477583a (diff)
Add gssapi_krb5 to linker args on Linux (#5663)
Selectively porting a line from #5651 to unblock an issue reported on Gitter.
Diffstat (limited to 'src/BuildIntegration')
-rw-r--r--src/BuildIntegration/Microsoft.NETCore.Native.Unix.props1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/BuildIntegration/Microsoft.NETCore.Native.Unix.props b/src/BuildIntegration/Microsoft.NETCore.Native.Unix.props
index db2912f32..a5a0b6dde 100644
--- a/src/BuildIntegration/Microsoft.NETCore.Native.Unix.props
+++ b/src/BuildIntegration/Microsoft.NETCore.Native.Unix.props
@@ -86,6 +86,7 @@ See the LICENSE file in the project root for more information.
<LinkerArg Include="-lm" />
<LinkerArg Include="-lcurl" />
<LinkerArg Include="-lz" />
+ <LinkerArg Include="-lgssapi_krb5" Condition="'$(TargetOS)' != 'OSX'" />
<LinkerArg Include="-lrt" Condition="'$(TargetOS)' != 'OSX'" />
<LinkerArg Include="-licucore" Condition="'$(TargetOS)' == 'OSX'" />
<LinkerArg Include="-dynamiclib" Condition="'$(TargetOS)' == 'OSX' and '$(NativeLib)' == 'Shared'" />