Displaying 20 results from an estimated 2000 matches similar to: "Compilation of my own sources"
2008 May 08
2
LaTeX in system()
Dear list,
I want to run latex from an R script:
system("latex mysource.tex")
or:
texi2dvi("mysource.tex", pdf = TRUE, clean = FALSE, quiet = TRUE,
texi2dvi = latex)
but latex does not seem to be on the search path:
/bin/sh: line 1: latex: command not found.
Although 'printenv PATH' tells me that the usr/texbin is looked for
executables:
2016 Oct 03
3
On implementing zero-overhead code reuse
On Mon, Oct 3, 2016 at 10:18 AM, <frederik at ofb.net> wrote:
> Hi Kynn,
>
> Thanks for expanding.
>
> I wrote a function like yours when I first started using R. It's
> basically the same up to your "new.env()" line, I don't do anything
> with environmentns. I just called my function "mysource" and it's
> essentially a "source
2010 Jul 13
2
[LLVMdev] Debugging docs wrong?
http://llvm.org/docs/SourceLevelDebugging.html#ccxx_compile_units
!1 = metadata !{
i32 524329, ;; Tag
metadata !"MySource.cpp",
metadata !"/Users/mine/sources",
metadata !3 ;; Compile unit
}
!2 is the Compile Unit, right? !3 is also wrong.
--
cheers,
--renato
http://systemcall.org/
Reclaim your digital rights, eliminate DRM, learn more at
2001 Jun 20
1
What makefile should we use ?
Hello,
I'm trying to write my own code for an oggplayer. Once i have my source
files, what kind of makefile should I use ? Or what commande line should i
give to the compiler ?
Thank you
ekine
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'vorbis-request@xiph.org'
2009 Dec 17
3
Problem reading binaries created with fortran
Is it possible to read fortran binaries with R? I tried unsucessfully and my
understanding is that fortran write binaries with leading and trailing
bytes. I get numbers but not the right ones.
Thanks
ps: the binary I'm interested in reading is a MODFLOW output with a mix of
character, double and integers.
[[alternative HTML version deleted]]
2004 Sep 10
3
rpm building
i've tried to make rpm package of flac 0.10, but compilation
fails near start, 'cause compilator couldn't find .h files
in libFLAC directory, when it tries to build this library.
generated makefile in this directory contains "-I.$(srcdir)"
in compilator options, though it should be "-I.$(includedir)"
strange, but ./configure; make; make install
running from
2009 Feb 20
3
3D or 4D plot
I have data on a regular grid in the format: x y z data. I would like to
be able to plot them in 3d kind of like a volume or a mesh with colors. Is
that possible in R and how?
Thanks
[[alternative HTML version deleted]]
2008 Mar 03
0
3.0.1 Test Success MacOS X 10.4.11
I have also been eager to test bbouncer
The latest source passes with flying colours!
but make check finds some problems with xattrs if not run by sudo
I have xattr in /usr/local/bin/ from the source found at:
http://dev.bignerdranch.com/public/bnr/eXttra.zip
What I did:
cd /usr/local/Source
rsync -av --exclude=.git/ rsync://rsync.samba.org/ftp/unpacked/rsync .
rsync -av --exclude=.git/
2012 May 03
2
Help with readBin
I'm trying to read a binary file created by a fortran code using readBin
and readChar. Everything reads fine (integers and strings) except for
double precision numbers, they are read as huge or very small number
(1E-250,...). I tried various endianness, swap, But nothing has worked so
far.
I also tried on R 64 bit for linux and windows (R 2.14) and R 2.11 on
windows XP 32 bit.
Any help would
2016 Oct 03
4
On implementing zero-overhead code reuse
Hi Frederick,
I described what I meant in the post I sent to R-help
(https://stat.ethz.ch/pipermail/r-help/2016-September/442174.html),
but in brief, by "zero overhead" I mean that the only thing needed for
library code to be accessible to client code is for it to be located
in designed directory. No additional meta-files, packaging/compiling,
etc. are required.
Best,
G.
On Sun, Oct
2009 Dec 17
1
Problem reading binaries created with fortran (More infos)
The structure of the file is clear (see below) the first line is made of
integers and doubles with the fifth being a text string followed by arrays
of double precision number.:
int1 int2 double1 double2 text int3 int4 int5
(array of double)
here is an example of file:
1 1 1.0 1.0 "HEAD" 160 224 3
23.4 34.5 ......
I tried to read the first line with readBin (results are copied below):
2016 Oct 03
0
On implementing zero-overhead code reuse
Hi Kynn,
Thanks for expanding.
I wrote a function like yours when I first started using R. It's
basically the same up to your "new.env()" line, I don't do anything
with environmentns. I just called my function "mysource" and it's
essentially a "source with path". That allows me to find code I reuse
in standard locations.
I don't know why R does not
2004 Sep 10
6
libFLAC docs
> > For those of you using CVS, I have added a libFLAC section to the
> > documentation page. I'm not sure how detailed to make it but I
> > think it's a good start. Let me know if there's anything else
> > you'd like to have in there.
> >
> >
>
2008 Mar 02
1
3.0.0 test failure MacOS X 10.4.11
Hello all,
I was eager to test the fresh release with MacOS X using "bbouncer"
This is how I compiled and run the tests:
patch -p1 <patches/osx-create-time.diff
patch -p1 <patches/fileflags.diff
./prepare-source
patch -p1 <patches/backup-dir-dels.diff
./configure
make
make test
sudo make install
Then compiling and running "bbouncer" from
2011 Mar 24
2
Problem with Snowball & RWeka
Dear Forum,
when I try to use SnowballStemmer() I get the following error message:
"Could not initialize the GenericPropertiesCreator. This exception was
produced: java.lang.NullPointerException"
It seems to have something to do with either Snowball or RWeka, however I
can't figure out, what to do myself. If you could spend 5 minutes of your
valuable time, to help me or give me a
2016 Oct 03
0
On implementing zero-overhead code reuse
Thank you all for your comments and suggestions.
@Frederik, my reason for mucking with environments is that I want to
minimize the number of names that import adds to my current
environment. For instance, if module foo defines a function bar, I
want my client code to look like this:
import("foo")
foo$bar(1,2,3)
rather than
import("foo")
bar(1,2,3)
(Just a personal
2004 Sep 10
1
plugin_xmms/Makefile.am incorrectly references .libs directory
When linking against a libtool library, you should simply specify it on the
libtool command line as you would a library or an object file. Nothing should
ever reference the .libs directory directly.
diff -u -r1.1.1.1 Makefile.am
--- Makefile.am 2001/01/29 18:13:29 1.1.1.1
+++ Makefile.am 2001/06/14 20:13:20
@@ -9,5 +9,6 @@
xmmsinputplugin_LTLIBRARIES = libxmms-flac.la
2004 Sep 10
1
Binary compatibility (was Re: Sound Font FLAC)
On Thu, Jun 14, 2001 at 07:27:50PM -0700, Josh Green wrote:
> Right. Seems like going one step further and keeping the structure private
> and just having access functions might be even better?
Yes, I agree. See the pthreads API for a good example of how this can be done.
I saw something go by on this list about constructors and destructors for
libFLAC; that is probably a step in the
2004 Sep 10
1
FLAC plugin available
Hi FLAC hackers,
I just thought you might want to know that we are making FLAC decode and
encode plugins for GStreamer. (http://www.gstreamer.net).
The decoder plugin is already in CVS and the encoder plugin is underway,
the plugins are made by one of our lead developers Wim Taymans.
FLAC decoder CVS entry:
(http://www.geocrawler.com/lists/3/SourceForge/1535/0/5982915/)
Thanks for the great
2007 Oct 08
3
tcltk scrollbar
The following code should give me (at least that's what I think) two list
boxes with their individual scrollbars. But instead both scrollbars stick to
the same listbox even though they work as they should (scroll individual
listboxes). When I remove all the widgets on top everything works perfectly.
Any help would be highly apprecciated.
ps: all subsequent listboxes and scrollbars work