You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I’m trying to see if I can get rclr built on R 3.5 to get around the issues this version is causing with rclr. However, the build instructions available on the site (clicking on “Read the current build instructions” here https://github.com/jmp75/rClr jumps to here: https://archive.codeplex.com/?p=r2clr instead of anything with actual build instructions). Would you be able to help me get set up with building on Windows?
I have tried using pkgbuild::build, which seems to try to build the package, however, when it gets to the MS Build portion it has trouble building, giving the following output:
Build configuration Release
Microsoft (R) Build Engine version 4.6.1586.0
[Microsoft .NET Framework, version 4.0.30319.42000]
Copyright (C) Microsoft Corporation. All rights reserved.
MSBUILD : error MSB1008: Only one project can be specified.
Switch: t:Build
As far as I can tell, this error is frequently caused by misuse of quotation marks on makefiles. Would you happen to have any insight on this error, or on newer documentation for building the package?
The text was updated successfully, but these errors were encountered:
Figured it out - when R builds a package, it moves all non dll files to a temporary folder and does the building there. For whatever reason the location of the temporary folder was causing MSBuild to fail.
To fix this, I built the dll's out in Visual Studio and put them in the location the script moves them from (libs folder I think).
First thank you @Ductomaniac for reporting in the first place. I just bumped into a similar issue. I was using the windows command prompt to do R CMD INSTALL and the like. Adding 'echo' outputs in the Makefile.win.in template file was outputing a perfectly good command line:
Hi,
I’m trying to see if I can get rclr built on R 3.5 to get around the issues this version is causing with rclr. However, the build instructions available on the site (clicking on “Read the current build instructions” here https://github.com/jmp75/rClr jumps to here: https://archive.codeplex.com/?p=r2clr instead of anything with actual build instructions). Would you be able to help me get set up with building on Windows?
I have tried using pkgbuild::build, which seems to try to build the package, however, when it gets to the MS Build portion it has trouble building, giving the following output:
Build configuration Release
Microsoft (R) Build Engine version 4.6.1586.0
[Microsoft .NET Framework, version 4.0.30319.42000]
Copyright (C) Microsoft Corporation. All rights reserved.
MSBUILD : error MSB1008: Only one project can be specified.
Switch: t:Build
As far as I can tell, this error is frequently caused by misuse of quotation marks on makefiles. Would you happen to have any insight on this error, or on newer documentation for building the package?
The text was updated successfully, but these errors were encountered: