Displaying 14 results from an estimated 14 matches for "hermet".
Did you mean:
hermes
2020 Aug 06
2
[RFC] Introduce Dump Accumulator
...u, in the distributed build, is that you
> rely on the linker to do the concatenation, and for that you change
> the compiler and the ELF files you produce.
>
At a high level, you are right, the 2 alternatives are similar, but the
devil is in the details. The build system (basel-based) is hermetic, and
needs to be aware of all such extra files, and have a separate rule to copy
and concatenate them. This solution turned out to be much cleaner.
>From Hal's earlier message, it seems we already have something along the
lines of what we need in the "-remarks-section"
(llvm/lib...
2018 Apr 08
0
[cfe-dev] [RFC] Open sourcing and contributing TAPI back to the LLVM community
...red library) ABI of Illumos is the stable
interface rather than the syscall ABI like Linux, so ensuring linkers
see *only* see the export list at build time prevents the abstraction
from leaking and unintended incompatibilities being utilized.
Beyond my general esteem for using export lists for hermetic builds, I'm
working on automated native and cross builds for Darwin, and it would be
a lot more convenient if this was part of LLVM.
So what happened to this? I searched TAPI on differential and didn't see
anything. Given the general need for something like a standardized
export lis...
2017 Sep 08
3
[cfe-dev] [RFC] Open sourcing and contributing TAPI back to the LLVM community
Hi Paul,
My experience has shown the same when it comes to header files and I am not
claiming this is going to work out of the box for all library projects. It
usually requires some cleanup first and that is why the tool comes with a
verification mode to make sure the headers are the truth. Also keep in mind
that you don't have to parse all the headers, but only the small set that
get
2004 Aug 06
0
Liveice or Muse
...gvorbis streaming will be supported; GTK GUI is being revamped as
well.
there is allready something you can test in cvs on
savannah.gnu.org/projects/muse, but has still bugs in.
happy new year
<p>- --
jaromil - http://korova.dyne.org - GnuPG key ID: 5B6E6D97
dyne.org resident hacker, hermetic codepoet and bitnik
[dyne:bolic] http://dynebolic.org | dyne.org productions
FARAH http://farah.dyne.org | fugbachgasse 12 / 18
FreeJ v0.4 http://freej.dyne.org | 1020 Vienna, AUSTRIA
TUBOCATODICO http://tubo.dyne.org | tel: +43 1 92 56 318
<p>-----BEGIN PGP SIGNATURE--...
2014 Apr 17
3
[LLVMdev] Building sanitizers for Android
> Does %run support ssh-based testing?
Yes, %run is configured by the user. I configure it to call a shell
script that calls qemu-arm. It could just as easily ssh or "adb push
&& adb shell".
-Greg
On Wed, Apr 16, 2014 at 11:44 PM, Yury Gribov <y.gribov at samsung.com> wrote:
> Greg,
>
>
>> Clever, but I hope we can try to avoid the symlink hackery.
2012 Jun 20
2
[LLVMdev] RFC: How can AddressSanitizer, ThreadSanitizer, and similar runtime libraries leverage shared library code?
...e that would be
the installed runtime library. The only functions not processed in this
manner are a white list of "exported" functions from the runtime (C-library
routines provided by the runtime, and runtime entry points, et.).
The result should be a runtime library that is essentially hermetic, and
should have no clashes with binaries it links against. It would be free to
use standard libraries, LLVM libraries, whatever it needs. That said, there
are some clear disadvantages:
- Bizarre name mangling, especially for C++
- Potentially incompatible with C++ EH, libunwind, or other tools (...
2004 Aug 06
2
Liveice or Muse
Pardo Juan Fernando wrote:
> Somebody can answer me wich stream is better...Liveice or Muse ?
>
> --- >8 ----
> List archives: http://www.xiph.org/archives/
> icecast project homepage: http://www.icecast.org/
> To unsubscribe from this list, send a message to 'icecast-request@xiph.org'
> containing only the word 'unsubscribe' in the body. No subject is
2012 Jun 20
0
[LLVMdev] RFC: How can AddressSanitizer, ThreadSanitizer, and similar runtime libraries leverage shared library code?
...installed runtime library. The only functions not processed in this
> manner are a white list of "exported" functions from the runtime (C-library
> routines provided by the runtime, and runtime entry points, et.).
>
> The result should be a runtime library that is essentially hermetic, and
> should have no clashes with binaries it links against. It would be free to
> use standard libraries, LLVM libraries, whatever it needs. That said, there
> are some clear disadvantages:
> - Bizarre name mangling, especially for C++
> - Potentially incompatible with C++ EH, li...
2012 Jun 20
2
[LLVMdev] RFC: How can AddressSanitizer, ThreadSanitizer, and similar runtime libraries leverage shared library code?
...me library. The only functions not processed in this
>> manner are a white list of "exported" functions from the runtime (C-library
>> routines provided by the runtime, and runtime entry points, et.).
>>
>> The result should be a runtime library that is essentially hermetic, and
>> should have no clashes with binaries it links against. It would be free to
>> use standard libraries, LLVM libraries, whatever it needs. That said, there
>> are some clear disadvantages:
>> - Bizarre name mangling, especially for C++
>> - Potentially incompat...
2012 Jun 20
0
[LLVMdev] RFC: How can AddressSanitizer, ThreadSanitizer, and similar runtime libraries leverage shared library code?
...only functions not processed in this
>>> manner are a white list of "exported" functions from the runtime (C-library
>>> routines provided by the runtime, and runtime entry points, et.).
>>>
>>> The result should be a runtime library that is essentially hermetic, and
>>> should have no clashes with binaries it links against. It would be free to
>>> use standard libraries, LLVM libraries, whatever it needs. That said, there
>>> are some clear disadvantages:
>>> - Bizarre name mangling, especially for C++
>>> -...
2020 Aug 05
3
[RFC] Introduce Dump Accumulator
On Wed, Aug 5, 2020 at 3:51 PM Eli Friedman <efriedma at quicinc.com> wrote:
> I’m not a fan of keeping important data outside the IR in an analysis. If
> we’re planning to emit it, it should be represented directly in the IR. Is
> there some reason we can’t just stick the data in a global variable?
>
The analysis in the scenarios here is external to LLVM - ML training, for
2007 Feb 21
1
Confindence interval for Levenberg-Marquardt fit
Dear all,
I would like to use the Levenberg-Marquardt algorithm for non-linear
least-squares regression using function nls.lm. Can anybody help me to
find a a way to compute confidence intervals on the fitted
parameters as it is possible for nls (using confint.nls, which does not
work for nls.lm)?
Thank you for your help
Michael
2012 Jun 20
2
[LLVMdev] RFC: How can AddressSanitizer, ThreadSanitizer, and similar runtime libraries leverage shared library code?
...ot processed in this
>>>> manner are a white list of "exported" functions from the runtime (C-library
>>>> routines provided by the runtime, and runtime entry points, et.).
>>>>
>>>> The result should be a runtime library that is essentially hermetic,
>>>> and should have no clashes with binaries it links against. It would be free
>>>> to use standard libraries, LLVM libraries, whatever it needs. That said,
>>>> there are some clear disadvantages:
>>>> - Bizarre name mangling, especially for C++...
2015 Oct 12
48
[Bug 92438] New: Segfault in pushbuf_kref when running the android emulator (qemu) on nv50
https://bugs.freedesktop.org/show_bug.cgi?id=92438
Bug ID: 92438
Summary: Segfault in pushbuf_kref when running the android
emulator (qemu) on nv50
Product: Mesa
Version: unspecified
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: normal
Priority: medium