Displaying 18 results from an estimated 18 matches for "loadlibes".
Did you mean:
loadlib
2006 Oct 17
0
[PATCH] Fixes for linking on Solaris
...HONY: all
all: xentop
diff --git a/tools/xenstore/Makefile b/tools/xenstore/Makefile
--- a/tools/xenstore/Makefile
+++ b/tools/xenstore/Makefile
@@ -41,19 +41,19 @@ testcode: xs_test xenstored_test xs_rand
testcode: xs_test xenstored_test xs_random
xenstored: $(XENSTORED_OBJS)
- $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -lxenctrl -o $@
+ $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -lxenctrl $(SOCKET_LIBS) -o $@
$(CLIENTS): xenstore-%: xenstore_%.o libxenstore.so
- $(LINK.o) $< $(LOADLIBES) $(LDLIBS) -L. -lxenstore -o $@
+ $(LINK.o) $< $(LOADLIBES) $(LDLIBS) -L. -lxenstore $(SOCKET_LIBS) -o $@
$(CLIE...
2010 Mar 26
1
cacheSweave fails when used in conjunction with rjags
Hi all,
I use the excellent packages rjags and cacheSweave, and unfortunately
seem to have found an incompatibility between them. Below are a
minimal .Rnw file and corresponding JAGS model file which illustrate
the problem:
*** JAGS model file; name=j.bug ***
model {
mu ~ dnorm(0,1.0E-5)
sigma ~ dunif(0,100)
for(i in 1:length(y)) {
y[i] ~ dnorm(mu,sigma)
}
}
***
*** .Rnw
2009 Dec 13
1
odfWeave produces output file that OO can't open
Dear R-helpers,
I'm trying to learn how to use odfSweave.
Here is my source file (in /Users/mk/myTeach/2010-1-7720/odfWeave):
****************************************
Analysis of the iris Data
Created on \Sexpr{date()}
<<loadLibs, echo = FALSE, results = hide>>=
# I usually load the libraries first so that any output produced by loading the library does not end up in the
2014 Jun 03
2
Undef symbol FAIL: luaL_checklstring in vesa.c32
"H. Peter Anvin" <hpa at zytor.com> writes:
> On 06/03/2014 02:59 AM, Ady wrote:
>
>> Testing Syslinux 6.03-pre13 in a BIOS 32-bit VM,
>> boot: vesa.c32
>> Undef symbol FAIL: luaL_checklstring
>> Failed to load COM32 file vesa.c32
>> boot:
>>
>> Is there a Lua-related issue?
>>
>> Is vesa.c32 expecting some kind of
2014 Jun 05
1
Undef symbol FAIL: luaL_checklstring in vesa.c32
Ady <ady-sf at hotmail.com> writes:
>> "H. Peter Anvin" <hpa at zytor.com> writes:
>>
>>> I didn't realize how many modules there are in Lua, and quite frankly
>>> not all of them are very well named in the sense that it is clear that
>>> they are Lua-related. vesa.c32 is one of those - it is one of several
>>> Lua
2007 Jun 25
1
eps in odfWeave
Dear Weavers,
Does someone have an example of using eps or any other vector graphics with
odfWeave? It tried the example below (and commented variants) with
simple.odt in the examples directory, and got an error.
Dieter
#---
library(odfWeave)
plotInfo <- getImageDefs()
plotInfo$type = "eps"
#plotInfo$device = "postscript"
setImageDefs(plotInfo)
2013 Oct 15
23
[PATCH 00/21] Upgrade to Lua 5.2.2, add filesystem module and get_key binding
Hi,
This series targets automatic boot menu generation, but most of it
is the Lua upgrade, because I got tired reading deprecated API docs.
It's mostly a straightforward forward port of the earlier Syslinux
specific changes to Lua 5.1, except that:
* I chose the add a stub getenv() implementation to the COM32 API
instead of #ifdefing out all the references in Lua, and
* I kept oslib
2012 Apr 22
2
Cisco AnyConnect on 6.2 32-bit?
Grr.. I'm pulling my hair out trying to get the Cisco AnyConnect client to
work under 6.2 32-bit. Seems like there is always 1 thing preventing my
from using the latest centos release as my sole workstation.
It was actually working on a new install for about half a day. I rebooted
and now it won't connect. If I boot another vm (ubuntu or oel 5.7) the same
client works.
Im using version
2008 Aug 13
0
[Bioc-devel] EBImage: Devel version on Windows not building
On Wed, Aug 13, 2008 at 6:56 AM, Laurent Gautier <lgautier@gmail.com> wrote:
> There is a chance that further changes in the handling of plotting
> devices event appear;
> I think that there is an ongoing effort to bring new features for R-2.8.
>
> What about bumping that to r-devel ? (Sorry if you already did and I missed
> it).
> The solution you came up with could be
2014 Jun 03
0
Undef symbol FAIL: luaL_checklstring in vesa.c32
> "H. Peter Anvin" <hpa at zytor.com> writes:
>
> > On 06/03/2014 02:59 AM, Ady wrote:
> >
> >> Testing Syslinux 6.03-pre13 in a BIOS 32-bit VM,
> >> boot: vesa.c32
> >> Undef symbol FAIL: luaL_checklstring
> >> Failed to load COM32 file vesa.c32
> >> boot:
> >>
> >> Is there a Lua-related issue?
2014 Jun 03
3
Undef symbol FAIL: luaL_checklstring in vesa.c32
Testing Syslinux 6.03-pre13 in a BIOS 32-bit VM,
boot: vesa.c32
Undef symbol FAIL: luaL_checklstring
Failed to load COM32 file vesa.c32
boot:
Is there a Lua-related issue?
Is vesa.c32 expecting some kind of argument?
TIA,
Ady.
2008 Oct 28
2
A question about the API mkchar()
Hi guys,
I've got a question about the API mkchar(). I have met some difficulty
in parsing utf-8 string to mkchar() in R-2.7.0.
I was intending to parse an utf-8 string str_jan (some Japanese
characters such as?, whose utf-8 code is E381B5) to R API SEXP
mkChar(const char *name) , we only need to create the SEXP using the
string that we parsed.
Unfortunately, I found when parsing the
2013 Oct 15
0
Upgrade to Lua 5.2.2, add filesystem module and get_key binding
Op 2013-10-15 om 20:03 schreef Ferenc W?gner:
> Hi,
>
> This series targets automatic boot menu generation, but most of it
> is the Lua upgrade, because I got tired reading deprecated API docs.
> It's mostly a straightforward forward port of the earlier Syslinux
> specific changes to Lua 5.1, except that:
>
> * I chose the add a stub getenv() implementation to the
2014 Mar 02
3
pull request: upgrade to Lua 5.2.3, automatic Linux boot menu and cmenu binding
Hi,
Yes, I'm back with this pet peeve of mine again. Most of the old cover
letter at https://gist.github.com/wferi/6989458 still applies; I'd like
to reiterate its last paragraph here, too:
> And an official stat() implementation would be very useful. After
> inventing mine, I noticed rosh also invented its own...
Anyway, here it is:
The following changes since commit
2005 Jun 16
9
Re: dom0 bootstrap for xenstore
...store/Makefile 2005-06-16 14:46:51.000000000 +1000
@@ -82,18 +82,22 @@ stresstest: xs_stress xenstored_test
rm -rf $(TESTDIR)/store
export $(TESTENV); PID=`./xenstored_test --output-pid`; ./xs_stress 10000; ret=$$?; kill $$PID; exit $$ret
+xs_dom0_test: xs_dom0_test.o utils.o
+ $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -lxc -o $@
+
TAGS:
etags `find . -name ''*.[ch]''`
tarball: clean
cd .. && tar -c -j -v -h -f xenstore.tar.bz2 xenstore/
-install: xenstored libxenstore.a
+install: xenstored libxenstore.a xs_dom0_test
$(INSTALL_DIR) -p $(DESTDIR)/var/run/xenstored
$...
2005 Aug 04
0
[PATCH 6/11] Xenstore watch rework
...put-pid --trace-file=/tmp/trace`; ./xs_stress 5000; ret=$$?; kill $$PID; exit $$ret
- rm -rf $(TESTDIR)/store $(TESTDIR)/transactions
- export $(TESTENV); PID=`./xenstored_test --output-pid`; ./xs_watch_stress; ret=$$?; kill $$PID; exit $$ret
xs_dom0_test: xs_dom0_test.o utils.o
$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -lxc -o $@
diff -r ba5d5bd28edf -r b0de1894df67 tools/xenstore/testsuite/07watch.sh
--- a/tools/xenstore/testsuite/07watch.sh Thu Aug 4 10:43:03 2005
+++ b/tools/xenstore/testsuite/07watch.sh Thu Aug 4 11:39:03 2005
@@ -3,20 +3,20 @@
# Watch something, write to it, check watch has fir...
2014 Jan 28
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hi Stepan,
Sorry for the delay. It's great that you are working on MergeFunctions
as well and I agree, we should definitely try to combine our efforts to
improve MergeFunctions.
Just to give you some context, the pass (with the similar function
merging patch) is already being used in a production setting. From my
point of view, it would be better if we focus on improving its
capability
2014 Jan 30
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hello Sean and Tobias,
Sean,
Thank you. Could you describe Nick's ideas in few words or give me links
to your discussion, so I could adapt my ideas to it.
Tobias,
Your patch fails on several modules in my benchmark (73 of ~1800 tests).
I have sent one as attachment.
See statistics files for more details, all the .ll files you could
simply find in test-suite object directory (after