Displaying 2 results from an estimated 2 matches for "lsymbols".
Did you mean:
symbols
2009 Sep 14
2
symbols(x,y, circles=sqrt(N)) with lattice xyplot
...anel function. That is, it draws
another rectangle in addition to the desired circles, and it writes
its own axis labels.
I didn't find "symbols" in the index of Deepayan's book. And I don't
think the xyplot help file deals with this either? I don't think there
is a "lsymbols" or "panel.symbols" function?
(Bill Cleveland points out that the human eye does not interpret area
accurately, so that making the area of a circle proportional to sample
size may be a flawed approach. Thus I'd also be interested in any
comments on how one might best graphically...
2016 Apr 29
3
(Orc)JIT and weak symbol resolution
...def __CLING__
int Symbols() {
# else
int main()
# endif
{ return compareAddr(&StaticStuff<int>::s_data);}
#endif // ! BUILD_SHARED
$ clang++ -shared -fPIC -DBUILD_SHARED symbols.cxx -o libSymbols.so
$ clang++ -cc1 -emit-llvm symbols.cxx -o - | lli -load ./libSymbols.so -
or
$ clang++ -lSymbols symbols.cxx && ./a.out
Compiled it's happy: the weak symbol used in main gets resolved to be
the one in the binary for both references. That's the behavior I'd expect.
The JIT OTOH is deciding that it shall use the local version of the
symbol; RuntimeDyld::getSymbol() doesn...