Re: [Rd] How to change name of .so/.dll

2012-06-13 Thread Matthew Dowle
> On 12-06-13 4:45 AM, Matthew Dowle wrote: >> Matthew Dowle mdowle.plus.com> writes: >> >>> >>> On Tue, 2012-06-12 at 20:38 -0400, Simon Urbanek wrote: Something like all: $(SHLIB) mv $(SHLIB) datatable$(SHLIB_EXT) should do the trick (resist the temptation

Re: [Rd] How to change name of .so/.dll

2012-06-13 Thread Duncan Murdoch
On 12-06-13 4:45 AM, Matthew Dowle wrote: Matthew Dowle mdowle.plus.com> writes: On Tue, 2012-06-12 at 20:38 -0400, Simon Urbanek wrote: Something like all: $(SHLIB) mv $(SHLIB) datatable$(SHLIB_EXT) should do the trick (resist the temptation to create a datatable$(SHLIB_EXT) ta

Re: [Rd] How to change name of .so/.dll

2012-06-13 Thread Matthew Dowle
Matthew Dowle mdowle.plus.com> writes: > > On Tue, 2012-06-12 at 20:38 -0400, Simon Urbanek wrote: > > Something like > > > > all: $(SHLIB) > > mv $(SHLIB) datatable$(SHLIB_EXT) > > > > should do the trick (resist the temptation to create a datatable$(SHLIB_EXT) target - it doesn't wo

Re: [Rd] How to change name of .so/.dll

2012-06-13 Thread Matthew Dowle
On Tue, 2012-06-12 at 20:38 -0400, Simon Urbanek wrote: > Something like > > all: $(SHLIB) > mv $(SHLIB) datatable$(SHLIB_EXT) > > should do the trick (resist the temptation to create a datatable$(SHLIB_EXT) > target - it doesn't work due to the makefile loading sequence, > unfortunatel

Re: [Rd] How to change name of .so/.dll

2012-06-12 Thread Simon Urbanek
On Jun 12, 2012, at 6:39 PM, Matthew Dowle wrote: > Matthew Dowle wrote : >> Hi, >> >> I've added R_init_data_table to the "data.table" package (which has a dot >> in its name). This works well in R 2.15.0, because of this from the >> Writing R Extensions manual : >> >> " Note that there are so

Re: [Rd] How to change name of .so/.dll

2012-06-12 Thread Matthew Dowle
Matthew Dowle wrote : > Hi, > > I've added R_init_data_table to the "data.table" package (which has a dot > in its name). This works well in R 2.15.0, because of this from the > Writing R Extensions manual : > > " Note that there are some implicit restrictions on this mechanism as the > basename of

Re: [Rd] How to change name of .so/.dll

2012-06-12 Thread Matthew Dowle
Matthew Dowle wrote : > Hi, > > I've added R_init_data_table to the "data.table" package (which has a dot > in its name). This works well in R 2.15.0, because of this from the > Writing R Extensions manual : > > " Note that there are some implicit restrictions on this mechanism as the > basename of