If you hadn't squelched command line echoing from your makefiles (by
putting the 'at' signs in front of the commands) you might have discovered
the problem faster.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Fri, Oct 7, 2016 at 5:30 PM, Gillian Sharer
wrote:
>
> It’s solved! Changing ‘ar’
It’s solved! Changing ‘ar’ to ‘$(AR)’ in the Makefile along with adding
AR="$(AR)" to @(cd libmseed && $(MAKE) static CC="$(CC)" CFLAGS="$(CFLAGS)") in
the Makevars.win fixed the problem.
Thank you!
Gillian Sharer
> On Oct 7, 2016, at 3:50 PM, William Dunlap wrote:
>
> Do you have a Makefile
Do you have a Makefile in the directory yourPackage/src/libmseed?
If so, how does it call 'ar' or '$(AR)'?
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Fri, Oct 7, 2016 at 3:44 PM, Gillian Sharer
wrote:
> Thank you for your response. I apologize for asking basic questions, but
> I’m new to t
Thank you for your response. I apologize for asking basic questions, but I’m
new to this. On my local machine (mac osx) the $R_HOME/etc/Makeconf AR=ar and
$BINPREF is not set. I have ar in my path.
I’m uploading the package to http://win-builder.r-project.org/ using
devtools::build_win. Am I ri
On 07/10/2016 3:06 PM, Gillian Sharer wrote:
Hi,
I tried to submit a package to win-builder with C code and it won’t compile. I
get this result:
ar -crs libmseed.a fileutils.o genutils.o gswap.o lmplatform.o lookup.o
msrutils.o pack.o packdata.o traceutils.otracelist.o parseutils.o unp
Hi,
I tried to submit a package to win-builder with C code and it won’t compile. I
get this result:
ar -crs libmseed.a fileutils.o genutils.o gswap.o lmplatform.o lookup.o
msrutils.o pack.o packdata.o traceutils.otracelist.o parseutils.o unpack.o
unpackdata.o selection.o logging.o
make
In my CRAN package metap I implement a number of techniques which have
multiple names. So, for instance, what I call sumz is also called sum of
normals, and Stouffer's method. I decided it would be kinder if they
were documented under all the names I know. Looking at the trusty manual
I see tha