Hi, I'm trying to build R on windows and i'm getting the following error when i run the "make all recommended" command: C:/Rtools/mingw_64/bin/windres -F pe-x86-64 -i dllversion.rc -o dllversion.o comm: file 1 is not in sorted order make[4]: *** [Rgraphapp.def] Error 1 make[3]: *** [rlibs] Error 1 make[2]: *** [../../bin/x64/R.dll] Error 2 make[1]: *** [rbuild] Error 2 make: *** [all] Error 2 Can someone please help me figure out this error. I've tried researching on my own but i'm out of options. Thanks in advance. Michael Morrison
File 1 is not in sorted order Error
3 messages · Michael Morrison, Jeff Newmiller, Duncan Murdoch
This question belongs on R-devel.
Sent from my phone. Please excuse my brevity. On April 2, 2016 7:40:36 PM PDT, Michael Morrison <mwmorrison93 at gmail.com> wrote: >Hi, I'm trying to build R on windows and i'm getting the following >error >when i run the "make all recommended" command: > >C:/Rtools/mingw_64/bin/windres -F pe-x86-64 -i dllversion.rc -o >dllversion.o >comm: file 1 is not in sorted order >make[4]: *** [Rgraphapp.def] Error 1 >make[3]: *** [rlibs] Error 1 >make[2]: *** [../../bin/x64/R.dll] Error 2 >make[1]: *** [rbuild] Error 2 >make: *** [all] Error 2 > > >Can someone please help me figure out this error. I've tried >researching on >my own but i'm out of options. Thanks in advance. > >Michael Morrison > > [[alternative HTML version deleted]] > >______________________________________________ >R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see >https://stat.ethz.ch/mailman/listinfo/r-help >PLEASE do read the posting guide >http://www.R-project.org/posting-guide.html >and provide commented, minimal, self-contained, reproducible code. [[alternative HTML version deleted]]
2 days later
On 02/04/2016 10:40 PM, Michael Morrison wrote:
Hi, I'm trying to build R on windows and i'm getting the following error when i run the "make all recommended" command: C:/Rtools/mingw_64/bin/windres -F pe-x86-64 -i dllversion.rc -o dllversion.o comm: file 1 is not in sorted order make[4]: *** [Rgraphapp.def] Error 1 make[3]: *** [rlibs] Error 1 make[2]: *** [../../bin/x64/R.dll] Error 2 make[1]: *** [rbuild] Error 2 make: *** [all] Error 2 Can someone please help me figure out this error. I've tried researching on my own but i'm out of options. Thanks in advance.
Set the environment variable LC_COLLATE equal to C. Some parts of the R build system do this, and some parts use your locale's collation sequence. You need to make sure they're all consistent. Duncan Murdoch