Displaying 5 results from an estimated 5 matches for "pluginmain".
2010 Mar 31
1
[LLVMdev] Getting started with LLVM on Win32 from non-C/C++ language
...serves well for investigation (e.g. no distribution in the GPL sense).
> I think Cygwin cannot create .DLL files
It can.
> or if it can,
> the build scripts are not set up to do it from Cygwin.
I was able to build a DLL by roughly:
cd Release/lib
for f in *.a; ar x $f; done
rm PluginMain.o
g++ -shared --export-all-symbols -o LLVM.dll *.o
(Credit to Óscar Fuentes in an old message.)
It doesn't link with Cygwin disabled (-mno-cygwin) because the libraries
have all been compiled without that switch used, of course.
I have yet to try and use the C API directly, however.
>...
2015 Aug 13
2
Clunky Xorg with latest 6.7 upgrade?
Is it just me or does Xorg/Gnome seem slow and clunky to any other
desktop users once the 6.7 upgrade is done?
$ uname -a
Linux CentOS501.homegroannetwork 2.6.32-573.1.1.el6.x86_64 #1 SMP
Sat Jul 25 17:05:50 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
$ cat /etc/centos-release
CentOS release 6.7 (Final)
Top shows
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
32160 root
2015 Aug 14
2
Clunky Xorg with latest 6.7 upgrade?
...88 -D__applet_launched=121669388124
-Xbootclasspath/a:/usr/java/jre1.8.0_51/lib/deploy.jar:
/usr/java/jre1.8.0_51/lib/javaws.jar:
/usr/java/jre1.8.0_51/lib/plugin.jar
-Djava.class.path=/usr/java/jre1.8.0_51/classes -Dsun.awt.warmup=true
-Djava.security.manager sun.plugin2.main.client.PluginMain
write_pipe_name=/tmp/jpi-200753075568327304565826
501 23675 20075 9 Aug13 ? 01:19:43 /usr/java/jre1.8.0_51/bin/java
-D__jvm_launched=122798004959 -D__applet_launched=122798001805
-Xbootclasspath/a:/usr/java/jre1.8.0_51/lib/deploy.jar:
/usr/java/jre1.8.0_51/lib/javaws.jar:/usr/java/jre1...
2010 Mar 31
0
[LLVMdev] Getting started with LLVM on Win32 from non-C/C++ language
Hello Barry,
Are you still using Cygwin? Why not try using MinGW instead. I think Cygwin cannot create .DLL files or if it can, the build scripts are not set up to do it from Cygwin. IIRC, Cygwin support is being dropped from later versions of LLVM so you'll have to either use Visual C++ to compile it or MinGW. See http://www.mingw.org for downloads.
--Sam
----- Original Message ----
2010 Mar 31
3
[LLVMdev] Getting started with LLVM on Win32 from non-C/C++ language
I'm looking to get started with LLVM as the back end for a compiler that
ultimately should self-host.
>From an ease of use perspective, the optimum on Windows would be a DLL
along with C header files that I can translate into the front end's
language.
I read in the FAQ:
http://llvm.org/docs/FAQ.html#langs
that "the C bindings in include/llvm-c should help a lot". However,