search for: fextra

Displaying 6 results from an estimated 6 matches for "fextra".

Did you mean: extra
2005 May 19
1
Gnumeric
Hi, I am trying to install Gnumeric in CentOS 4 and I can't. It complains about quite a few dependencies failing. It suggested installing some postgresql librairies, openldap librairies... I did that, now I still get: dependencies failed: libmdb/libmdbsq/libsqlite/libxbase/libtds. Is there a yum repository that has them or a yum repository for gnumeric? I have tried Dag, he does not, he
2005 May 14
3
gnucash in a yum repo somewhere?
I'm attempting to install a gnucash rpm I've come across but the dependency list is long. I've searched high and low and can't find a nice yum repo with it and all of it's dependencies. Does anyone know if it lives in a yum repo anywhere? I'm getting lazy in my old age(just turned 30) and I just wanna "yum install" it rather than tracking it all down like I
2016 Mar 16
3
the as-if rule / perf vs. security
...vector load and mask out the element that's getting set to zero: movups (%rdi), %xmm0 ; load 128-bits instead of three 32-bit elements andps LCPI0_0(%rip), %xmm0 ; put zero bits into the 3rd element of the vector Should that optimization be disabled by a hypothetical -fextra-secure flag? On Wed, Mar 16, 2016 at 7:59 AM, Craig, Ben <ben.craig at codeaurora.org> wrote: > Regarding accessing extra data, there are at least some limits as to what > can be accessed. You can't generate extra loads or stores to volatiles. > You can't generate extra...
2002 Jul 02
2
[PATCH] Compressed output files
Attached is a patch that implements compressing output files as they're written to disk, uzing zlib. Thus far I've only used it with synchronizing directories on a single machine. What seems to work / what's done: - Synchronizing directories with all files in the target directory gzip'd. Files seem to contain the correct data. Use the option "--gzip-dest". -
2016 Mar 16
3
the as-if rule / perf vs. security
...ent that's > getting set to zero: > movups (%rdi), %xmm0 ; load 128-bits instead of three > 32-bit elements > andps LCPI0_0(%rip), %xmm0 ; put zero bits into the 3rd element of > the vector > > Should that optimization be disabled by a hypothetical -fextra-secure flag? > > > > On Wed, Mar 16, 2016 at 7:59 AM, Craig, Ben <ben.craig at codeaurora.org> > wrote: > >> Regarding accessing extra data, there are at least some limits as to what >> can be accessed. You can't generate extra loads or stores to volatiles....
2016 Mar 15
3
the as-if rule / perf vs. security
[cc'ing cfe-dev because this may require some interpretation of language law] My understanding is that the compiler has the freedom to access extra data in C/C++ (not sure about other languages); AFAIK, the LLVM LangRef is silent about this. In C/C++, this is based on the "as-if rule": http://en.cppreference.com/w/cpp/language/as_if So the question is: where should the optimizer