Please ensure that pre-requisites are installed for a successful build of the repo.
Build your repo by issuing the following command at repo root:
build[.cmd|.sh] clean [Debug|Release]
This will result in the following:
- Restore nuget packages required for building
- Build native and managed components of ILCompiler. The final binaries are placed to
<repo_root>\bin\Product\<OS>.<arch>.<Config>\packaging\publish1
. - Build and run tests
- Download latest CLI tools from https://github.com/dotnet/cli/ and add them to the path. The latest CLI tools include MSBuild support that the native compilation build integration depends on.
- On windows ensure you are using the 'VS2015 x64 Native Tools Command Prompt' (This is distinct from the 'Developer Command Prompt for VS2015')
You should now be able to use the dotnet
commands of the CLI tools.
- Ensure that you have done a repo build per the instructions above.
- Create a new folder and switch into it.
- Run
dotnet new --type MSBuild
on the command/shell prompt. This will add a project template. If you get an error, please ensure the pre-requisites are installed. - Add the following
NuGet.Config
to your project. The CLI MSBuild support requires packages that have not been published to nuget.org yet. This step won't be necessary after official release.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="cli-deps" value="https://dotnet.myget.org/F/cli-deps/api/v3/index.json" />
<add key="xunit" value="https://www.myget.org/F/xunit/api/v3/index.json" />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
- Run
dotnet restore
. This will download nuget packages required for compilation - Add the following line at the end of
.csproj
file that is part of your project.
<Import Project="$(IlcPath)\Microsoft.NETCore.Native.targets" />
This approach uses the same code-generator (RyuJIT), as CoreCLR, for compiling the application. Linking is done using the platform specific linker.
From the shell/command prompt, issue the following commands, from the folder containing your project, to generate the native executable
dotnet build3 /t:LinkNative /p:IlcPath=<repo_root>\bin\Product\Windows_NT.x64.Debug\packaging\publish1
Native executable will be dropped in ./bin/[configuration]/native/
folder and will have the same name as the folder in which your source file is present.
This approach uses platform specific C++ compiler and linker for compiling/linking the application.
From the shell/command prompt, issue the following commands to generate the native executable:
dotnet build3 /t:LinkNative /p:IlcPath=<repo_root>\bin\Product\Windows_NT.x64.Debug\packaging\publish1 /p:NativeCodeGen=cpp /p:AdditionalCppCompilerFlags=/MTd
Omit /p:AdditionalCppCompilerFlags=/MTd
for release CoreRT build.
If you are seeing errors such as:
LINK : fatal error LNK1104: cannot open file 'kernel32.lib'
Linking of intermediate files failed.
There are a few workarounds you might try:
- Make sure you run these commands from the 'VS2015 x64 Native Tools Command Prompt' instead of a vanilla command prompt
- Search for the missing lib files in your SDK, for example under C:\Program Files (x86)\Windows Kits\10\lib. Make sure the path to these libraries is included in the LIB environment variable. It appears VS 2015 RTM developer command prompt does not correctly set the LIB paths for the 10586 Windows SDK. VS 2015 Update 1 resolves that issue, so installing it is another alternative.
For more details see the discussion in issue #606