search for: javavm

Displaying 20 results from an estimated 31 matches for "javavm".

2017 Oct 27
1
javareconf issue
...me path : /Library/Java/JavaVirtualMachines/jdk-9.jdk/Contents/Home Java compiler : /usr/bin/javac Java headers gen.: /usr/bin/javah Java archive tool: /usr/bin/jar System Java on macOS *trying to compile and link a JNI program * *detected JNI cpp flags : -I/System/Library/Frameworks/JavaVM.framework/Headers* *detected JNI linker flags : -framework JavaVM* *clang -I/Library/Frameworks/R.framework/Resources/include -DNDEBUG -I/System/Library/Frameworks/JavaVM.framework/Headers -I/usr/local/include -fPIC -Wall -g -O2 -c conftest.c -o conftest.o* *conftest.c:4:5: warning: 'JN...
2017 Oct 21
2
Problem when trying to run Java in R:
Hello All, Although running Java from R used to work, for some mysterious reason, it's stopped. Today when I tried to load a basic JDBC driver (or the sample .jinit()) code, I got: - JavaVM: requested Java version ((null)) not available. Using Java at "" instead. - JavaVM: Failed to load JVM: /bundle/Libraries/libserver.dylib - JavaVM FATAL: Failed to load the jvm library. I saw postings on StackOverflow about this issue, but none of the suggested fixes helped. I'm o...
2008 May 12
4
7.0 issues fixed? upgrade timing?
1. I have a realtek network card and am using a cable modem router. Does anyone know if fixes for problems with these (see below) have been backported from HEAD to RELENG_7? 2. Is this a good time to upgrade to RELENG_7? 3. I read a post last week that advised that 7.1 is a long way off. Appreciate any advice on use of ULE 3.0 and ZFS prior to 7.1 and a comment on what is holding up 7.1. Thanks
2004 Sep 10
1
linking with libFLAC on Mac OS X
...MF) on Mac OS X. I'm having some trouble linking to libFLAC... When I first try to link to it, it tells me the libFLAC.a TOC is out of date, so run ranlib. So then I run ranlib, and it seems to be okay, except I then get undefined symbol errors: % cc -bundle -I/System/Library/Frameworks/JavaVM.framework/Headers -I./flac-1.0.2-osx-ppc/include/ -L./flac-1.0.2-osx-ppc/lib/ -lFLAC -o libflacjmf.jnilib -framework JavaVM flacdecoder.c /usr/bin/ld: Undefined symbols: _FLAC__stream_decoder_process_metadata I've tried it even without the Java-specific options, and it still fails. Has anyo...
2007 Feb 04
1
Java Bindings on a Mac
I had to make some changes (sorry no diff available) to "configure" in 0.9.9 of the bindings so that I could compile them for OS X 10.4.8. Essentially I replaced the the paths to jni.h with /System/Library/Frameworks/JavaVM.framework/Headers. It compiled without error and created both libxapian_jni.so and xapian_jni.jar in the "built" subdirectory when I ran "make install". When I ran the example code (from the "java" directory) I got the following: $ java -Djava.library.path=built -cl...
2007 May 30
5
java bindings 1.0.0 - jni.h not found
...gure". However "./configure --with-java" exits with an error. Point of failure: checking for jni.h... no checking for jni.h in /usr/lib/jvm/java-1.5.0-sun/include... no checking for jni.h in /usr/lib/jvm/java-gcj/include... no checking for jni.h in /System/Library/Frameworks/JavaVM.framework/Headers... no configure: error: jni.h not found Note that I have added JAVA_HOME to my path and if I look into the directory "/usr/lib/jvm/java-1.5.0-sun/include" there is a "jni.h" file - This directory does not appear if I don't set JAVA_HOME. Next I tried to...
2010 Aug 23
0
Problems installing JRI on Macintosh/Snowleopard
...have a problem to install JRI on a Macintosh with Snowleopard OS. <configure> runs without error message but <make> gives the following error message: $ make make -C src JRI.jar gcc -arch i386 -arch ppc -c -o Rengine.o Rengine.c -g -Iinclude -fno-common -I/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/include -I/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/include/. -I/Library/Frameworks/R.framework/Resources/include Rengine.c: In function ?Java_org_rosuda_JRI_Rengine_rniParse?: Rengine.c:89: error: too few arguments to function ?R_ParseVector? Ren...
2016 Sep 09
3
problem with bindings configure script
...rectory no checking for jni.h in /opt/java/jdk1.8.0_92/include... cat: confdefs.h: No such file or directory found, but not usable checking for jni.h in /opt/java/jdk1.8.0_92/include... cat: confdefs.h: No such file or directory found, but not usable checking for jni.h in /System/Library/Frameworks/JavaVM.framework/Headers... no configure: error: jni.h not found jni.h does in fact exist in /opt/java/jdk1.8.0_92. I tried putting a confdefs.h in the xapian-bindings directory but it gets deleted, so I'm guessing that the configure scripts is trying to build confdefs.h Anyway, I'm at a loss as...
2009 Apr 05
1
RJava question(class not found with rJava's vm, though found with alternate vm)
...e my vm), i can find the class in question (org.apache.hadoop.io.longwritable) Is there some classloader problem in rJava? ==code== void create_vm(const char *clap) { char* classpath = (char*) calloc(18+strlen(clap)+1, sizeof(char)); sprintf(classpath,"-Djava.class.path=%s",clap); JavaVMInitArgs args; JavaVMOption options[2]; args.version = JNI_VERSION_1_4; args.nOptions = 2; options[0].optionString = classpath; options[1].optionString = "-Xrs"; args.options = options; args.ignoreUnrecognized = JNI_TRUE; JavaVM *jvms[32]; jsize vms=0; int r=0; r=JNI_...
2003 May 26
1
R's DYLD_LIBRARY_PATH override problems on Mac OS X
...(bin/R) overrides default library search path with DYLD_LIBRARY_PATH and adds (among others) /usr/X11R6/lib. This causes problems when modules need (directly or indirectly) libraries from Apple's frameworks which are masked by X11. Examples for such packages are SJava and RGL. SJava needs JavaVM which in turn loads OpenGL framework. RGL needs the OpenGL framework directly. The problem is that specifying /usr/X11R6/lib in DYLD_LIBRARY_PATH forces the libGL to be loaded from the X11 directory instead of the OpenGL framework library. This crashes R due to missing symbols, since the module...
2019 Jan 04
2
Solr - complete setup (update)
...mysql database, which would make sense to avoid all the fuzz and let it transit to a non-java state, but that is another story) -> Config of dovecot.conf is as below -> The systemd unit shall specify high ulimit for files and proc (see below) -> Increase the memory available for the JavaVM (I put 12Gb as I have quite a space on my server, but you may adapt it as per your specs) : in /opt/solr/bin/solr.in.sh, set SOLR_HEAP="12288m" -> As Solr is complaining a lot, you may consider a filter for it in your syslog-ng or journald as it pollutes greatly your audit files -&...
2016 Sep 09
0
problem with bindings configure script
...k1.8.0_92/include... cat: confdefs.h: No > such > file or directory > found, but not usable > checking for jni.h in /opt/java/jdk1.8.0_92/include... cat: confdefs.h: No > such > file or directory > found, but not usable > checking for jni.h in > /System/Library/Frameworks/JavaVM.framework/Headers... no > configure: error: jni.h not found > > jni.h does in fact exist in /opt/java/jdk1.8.0_92. I tried putting a > confdefs.h in the xapian-bindings directory but it gets deleted, so I'm > guessing that the configure scripts is trying to build confdefs.h >...
2019 Jan 04
1
Solr - complete setup
...mysql database, which would make sense to avoid all the fuzz and let it transit to a non-java state, but that is another story) -> Config of dovecot.conf is as below -> The systemd unit shall specify high ulimit for files and proc (see below) -> Increase the memory available for the JavaVM (I put 12Gb as I have quite a space on my server, but you may adapt it as per your specs) : in /opt/solr/bin/solr.in.sh, set SOLR_HEAP="12288m" -> As Solr is complaining a lot, you may consider a filter for it in your syslog-ng or journald as it pollutes greatly your audit files -&...
2004 Jul 01
1
RGL on Mac OS X
Scanning various lists for R, I've noticed that a few people have raised the question of getting the "rgl" package to run in R on the Mac operating system. As far as I can tell (and I must admit to being a novice here), the problem has to do with the inclusion of the /usr/X11R6/lib in R's environment, masking one framework with another. More than one of the people commenting on
2019 Jan 14
5
Solr - complete setup (update)
...l the fuzz and let it transit to a non-java state, but that is another story) >> >> -> Config of dovecot.conf is as below >> >> -> The systemd unit shall specify high ulimit for files and proc (see below) >> >> -> Increase the memory available for the JavaVM (I put 12Gb as I have quite a space on my server, but you may adapt it as per your specs) : in /opt/solr/bin/solr.in.sh, set SOLR_HEAP="12288m" >> >> -> As Solr is complaining a lot, you may consider a filter for it in your syslog-ng or journald as it pollutes greatly your...
2019 Jan 03
4
Solr
On 12/21/2018, 11:19:42 AM, Daniel Miller via dovecot <dovecot at dovecot.org> wrote: > There is a *huge* difference between a functional Solr setup & squat Interesting. Care to elaborate?
2009 Feb 26
0
[LLVMdev] Garbage collection
...is that just having something that works "well enough" is really important and helps bootstrap a lot of projects, which can then take the "last 10% of performance" as an optimization opportunity, instead of being blocked from even starting with LLVM. I'd claim that JavaVM really isn't a good way to implement a lisp vm or something like that. However, the perf delta induced by the Java VM may just *not matter* in the big picture. At least with LLVM, a Lisp implementation could be brought up on an "OOP GC" and switched to something more custom...
2019 Jan 05
0
Solr - complete setup (update)
...nse to avoid all the fuzz and let it transit to a non-java state, > but that is another story) > > -> Config of dovecot.conf is as below > > -> The systemd unit shall specify high ulimit for files and proc (see > below) > > -> Increase the memory available for the JavaVM (I put 12Gb as I have > quite a space on my server, but you may adapt it as per your specs) : > in /opt/solr/bin/solr.in.sh, set SOLR_HEAP="12288m" > > -> As Solr is complaining a lot, you may consider a filter for it in > your syslog-ng or journald as it pollutes gre...
2016 Sep 12
2
problem with bindings configure script
...such > > file or directory > > found, but not usable > > checking for jni.h in /opt/java/jdk1.8.0_92/include... cat: confdefs.h: > No > > such > > file or directory > > found, but not usable > > checking for jni.h in > > /System/Library/Frameworks/JavaVM.framework/Headers... no > > configure: error: jni.h not found > > > > jni.h does in fact exist in /opt/java/jdk1.8.0_92. I tried putting a > > confdefs.h in the xapian-bindings directory but it gets deleted, so I'm > > guessing that the configure scripts is trying...
2007 Oct 12
0
problems with java under debian (including the R help page search engine)
...it)? (y or n) [answered Y; input not from terminal] ----------- .xsession-errors --------------------- /usr/lib/bug-buddy/<unknown>: No such file or directory. Could not read ack from child process Plugin: Java VM process has died. plugin: java process exited with status 0 Could not start JavaVM! VM did not start up properly /usr/lib/bug-buddy/<unknown>: No such file or directory. Could not read ack from child process Plugin: Java VM process has died. plugin: java process exited with status 0 Could not start JavaVM! VM did not start up properly /usr/lib/bug-buddy/<unknown>: No...