Displaying 20 results from an estimated 3000 matches similar to: "Building R in 64-bit mode"
2015 Dec 16
0
Building R in 64-bit mode
I have been looking further and need some help with:
tools:::sysdata2LazyLoadDB("/data/prj/cran/R-3.2.3/src/library/tools/R/sysdata.rda","../../../library/tools/R")
Error: Line starting 'Package: tools ...' is malformed!
Details:
root at x065:[/data/prj/cran/64/R-3.2.3/src/library/tools]export | egrep
"PATH|HOME"
HOME=/
2015 Dec 18
1
Assistance much appreciated
On 2015-12-18 02:29, Simon Urbanek wrote:
> Michael,
>
> I got access to PDP AIX so I can try to replicate your problem. Can you, please, share exactly your setup - AIX version and well as how exactly you installed the compilers (=where from)? I can then try to replicate it. AFAICS there is no official binary for gfortran nor gcc 4.7 so it must be some 3rd party - which could also be a
2015 Dec 17
5
Assistance much appreciated
I have been struggling with this error message - and think I finally
understand it's context.
Start
Line by line debugging shows me the function works:
...
> saveRDS(val, mapfile)
> val
$variables
$variables$IANA_HTTP_status_code_db
[1] 0 1256
$variables$IANA_URI_scheme_db
[1] 1256 3458
$variables$table_of_HTTP_status_codes
[1] 4714 830
$references
named list()
$compressed
2015 Dec 17
3
Assistance much appreciated
On 17/12/2015 9:06 AM, Michael Felt wrote:
> More experimenting with calling commands:
> > tools:::foobar()
> Error: Line starting 'Package: tools ...' is malformed!
> > tools::foobar()
> Error: Line starting 'Package: tools ...' is malformed!
These both do a loadNamespace("tools").
> > Tools:::foobar()
> Error in loadNamespace(name)
2016 Jan 03
4
R, AIX 64-bit builds - trying to understand root cause for message: "Error: Line starting 'Package: tools ...' is malformed!"
On 2016-01-01 23:48, peter dalgaard wrote:
> Nice catch you two!!!
>
> Happy New Year
> -pd
I am much happier with this great start!
Simon - which compiler)s) did you use: xlc and xlfortran, or gcc/gfortran?
I have made some changes to configure(.ac) so maybe my problems are
self-inflicted. But would be good to know what environment you are using.
Thanks for looking - and
2015 Dec 31
4
R, AIX 64-bit builds - trying to understand root cause for message: "Error: Line starting 'Package: tools ...' is malformed!"
On 2015-12-30 09:58, Michael Felt wrote:
> On 2015-12-29 11:02, Michael Felt wrote:
>> This seems to be a problem that goes back a long time - and I hope
>> someone who understands what tre is suppossed to be doing will look
>> at this.
>>
>> A short history of other people who have reported on this on
>> different versions of AIX. I shall only add that I
2015 Dec 29
2
R, AIX 64-bit builds - trying to understand root cause for message: "Error: Line starting 'Package: tools ...' is malformed!"
This seems to be a problem that goes back a long time - and I hope
someone who understands what tre is suppossed to be doing will look at this.
A short history of other people who have reported on this on different
versions of AIX. I shall only add that I get the same results on AIX 5.3
TL7, AIX 6.1 TL9 and AIX 7.1 TL3.
Basically, with settings that work for AIX and 32-bit - the only changes
2016 Jan 01
2
R, AIX 64-bit builds - trying to understand root cause for message: "Error: Line starting 'Package: tools ...' is malformed!"
Ok, found the problem - on platforms that support it TRE uses wint_t (from wchar.h) as its type for characters (tre_cint_t) which on AIX is *signed* int. TRE uses liberally conversions between int and tre_cint_t apparently assuming that the latter is unsigned so conversions back to int are suitable for comparisons etc. On other platforms wint_t is unsigned so it works. Manually defining tre_cint_t
2016 Jan 04
4
R, AIX 64-bit builds - trying to understand root cause for message: "Error: Line starting 'Package: tools ...' is malformed!"
I would be "pleased" if you would try packages - i.e., none of "Toolbox"
or Perzl rpm's.
The iconv I supply might not be working as is (I will need to install a
new system to check). However, this is why I have been testing with
R-3.2.3 - to side-step the system library dependencies.
re: xz - I have "installp" version - and any of my packages should work
2015 Dec 18
1
Assistance much appreciated
On 2015-12-17 21:37, peter dalgaard wrote:
> As you're dying in an else clause, a previous if () must contain the clue. Unfortunately not necessarily the matching one.
>
> My guess is that your TRE library is broken. The line should have matched the RE "regline" defined as
>
> tre_regcomp(®line, "^[^:]+:[[:blank:]]*", REG_EXTENDED);
> ...and
2015 Dec 17
3
Assistance much appreciated
On 2015-12-17 19:30, peter dalgaard wrote:
> Presumably the file in question is one of
>
> Peter-Dalgaards-MacBook-Air:BUILD pd$ grep -r "^Package: tools" *
> library/tools/DESCRIPTION:Package: tools
> src/library/tools/DESCRIPTION:Package: tools
>
> so the first thing I'd do is to have a good look at those files and see if they got somehow corrupted.
>
>
2016 Jan 07
1
R for AIX - guidance re: error messages requested
Hi all,
With the bug in tre identified I am trying to move forward - one step at
a time.
As I am getting some errors that prevent make completing with version
3.2.3, and R-devel introduces new issues (that I will face when I get to
them) I would appreciate some guidance with output of "make check" (of
3.1.3) and the final message I run into when trying to build 3.2.3.
Maybe they
2015 Dec 17
0
Assistance much appreciated
More experimenting with calling commands:
> tools:::foobar()
Error: Line starting 'Package: tools ...' is malformed!
> tools::foobar()
Error: Line starting 'Package: tools ...' is malformed!
> Tools:::foobar()
Error in loadNamespace(name) : there is no package called 'Tools'
> loadNamespace(tools)
Error in loadNamespace(tools) : object 'tools' not
2015 Dec 18
0
Assistance much appreciated
Michael,
I got access to PDP AIX so I can try to replicate your problem. Can you, please, share exactly your setup - AIX version and well as how exactly you installed the compilers (=where from)? I can then try to replicate it. AFAICS there is no official binary for gfortran nor gcc 4.7 so it must be some 3rd party - which could also be a problem.
Thanks,
Simon
On Dec 17, 2015, at 12:02 PM,
2015 Dec 17
0
Assistance much appreciated
Presumably the file in question is one of
Peter-Dalgaards-MacBook-Air:BUILD pd$ grep -r "^Package: tools" *
library/tools/DESCRIPTION:Package: tools
src/library/tools/DESCRIPTION:Package: tools
so the first thing I'd do is to have a good look at those files and see if they got somehow corrupted.
If they look sane, presumably the bit of code that checks it isn't... So that
2015 Dec 30
0
R, AIX 64-bit builds - trying to understand root cause for message: "Error: Line starting 'Package: tools ...' is malformed!"
On 2015-12-29 11:02, Michael Felt wrote:
> This seems to be a problem that goes back a long time - and I hope
> someone who understands what tre is suppossed to be doing will look at
> this.
>
> A short history of other people who have reported on this on different
> versions of AIX. I shall only add that I get the same results on AIX
> 5.3 TL7, AIX 6.1 TL9 and AIX 7.1
2016 Jan 01
0
R, AIX 64-bit builds - trying to understand root cause for message: "Error: Line starting 'Package: tools ...' is malformed!"
Michael,
thanks, I'll have a look once my PDP VMs are up again (later today). This may be a signedness issue although it's unclear why other platforms wouldn't be affected.
Cheers,
Simon
On Dec 31, 2015, at 10:14 AM, Michael Felt <aixtools at gmail.com> wrote:
> On 2015-12-30 09:58, Michael Felt wrote:
>> On 2015-12-29 11:02, Michael Felt wrote:
>>> This
2016 Jan 03
0
R, AIX 64-bit builds - trying to understand root cause for message: "Error: Line starting 'Package: tools ...' is malformed!"
On 2016-01-03 16:59, Michael Felt wrote:
> On 2016-01-01 23:48, peter dalgaard wrote:
>> Nice catch you two!!!
>>
>> Happy New Year
>> -pd
> I am much happier with this great start!
>
> Simon - which compiler)s) did you use: xlc and xlfortran, or
> gcc/gfortran?
>
> I have made some changes to configure(.ac) so maybe my problems are
>
2015 Dec 18
1
Assistance much appreciated
FWIW I was able to replicate the problem using AIX7.1 on Power8, R 3.2.3, vac/xlc 11.1, xlf 13.1 in 64-bit mode. Indeed, Peter's analysis is correct re_regexecb(®line, line..) returns REG_NOMATCH even though the string is literally "Package: tools" - no special characters anywhere.
On Dec 17, 2015, at 3:37 PM, peter dalgaard <pdalgd at gmail.com> wrote:
>
>>
2016 Jan 01
0
R, AIX 64-bit builds - trying to understand root cause for message: "Error: Line starting 'Package: tools ...' is malformed!"
Nice catch you two!!!
Happy New Year
-pd
> On 01 Jan 2016, at 22:06 , Simon Urbanek <simon.urbanek at r-project.org> wrote:
>
> Ok, found the problem - on platforms that support it TRE uses wint_t (from wchar.h) as its type for characters (tre_cint_t) which on AIX is *signed* int. TRE uses liberally conversions between int and tre_cint_t apparently assuming that the latter is