search for: byproduct

Displaying 20 results from an estimated 116 matches for "byproduct".

2015 Jul 21
3
[LLVMdev] How to not zeroinitialize array
...n8:16:32-S32" target triple = "i686-pc-windows-gnu" @_ZN3Foo11ZeroAndZeroE = global [2 x i32] zeroinitializer, align 4 !llvm.ident = !{!0} !0 = !{!"clang version 3.6.0 (tags/RELEASE_360/final)"} My question is where is this transform happening - it looks like it's a byproduct of parsing the ll file which was super surprising to me. And second is there a know what to circumvent this? For my app I just want the zero'd space in the section so I can copy it into memory. Thanks, -R -------------- next part -------------- An HTML attachment was scrubbed... URL: <ht...
2012 Jul 03
0
[LLVMdev] tablegen multiple inheritance question
Seems to just be a byproduct of TGParser::AddSubClass() begin called twice. This means that TGParser::AddValue() is being called once for the "i" of each class, and the "last one wins". Not sure if it is intended, but this behavior seems to more-or-less "make sense". --Sean Silva On Mon, Jul 2,...
2012 Jul 02
2
[LLVMdev] tablegen multiple inheritance question
class one { int i = 0; } class two { int i = 1; } class multiple: one, two; This causes the first i to be ignored and the second i to replace it. This is a useful property if you want to specialize classes. But I don't know if it was intended to work that way or not. For example, if you have an instruction class with no patterns, you can merge it with one that defines the pattern
1997 Aug 25
1
R-alpha: R documentation problems
Last week I spent some time going through the Blue Book to figure out what we are missing and where we are different. (Results will come in subsequent emails.) As a byproduct, here is a list of the documentation problems I found. As soon as time and my knowledge of CVS allow, I'll try to fix some of these ... -k *********************************************************************** * The following man pages are completely missing: do.call .First .Last menu...
2002 Jul 18
3
Boring but useful VP3/QT patches
I think I'll start with the simple stuff, just to be safe. :-) Here are some cvsignore updates, and a fix for the inter-project dependencies in the MSVC *.dsw file. Cheers, Eric -------------- next part -------------- A non-text attachment was scrubbed... Name: vp32-cvs-ignore-patch.diff Type: application/octet-stream Size: 1524 bytes Desc: vp32-cvs-ignore-patch.diff Url :
2023 Apr 25
1
xyTable(x,y) versus table(x,y) with NAs
...: num [1:6] 1 1 2 2 NA 3 $ y : num [1:6] 1 2 1 3 NA 3 $ number: int [1:6] 1 1 1 NA NA 1 How many (2,3)s do we have? At least one, the third entry, but the fourth entry, (2,NA), is possibly a (2,3) so we don't know and make the count NA. I suspect this is not the intended logic, but a byproduct of finding value changes in a sorted vector with the idiom x[-1]!=x[-length(x). Also the following does follow that logic: > x <- c(1, 1, 2, 2, 5, 6) > y <- c(2, 2, 2, 4, NA, 3) > str(xyTable(x,y)) List of 3 $ x : num [1:5] 1 2 2 5 6 $ y : num [1:5] 2 2 4 NA 3 $ number:...
2016 Jun 29
3
The clang for centos6 are need GLIBC_2.14, but we only have GLIB 2.12 by default.
...uld eliminate it > if you could find a CentOS release that has libstdc++4.7 and glibc2.12. But > ultimately you're still stuck with a runtime dependency on libstdc++ shared > objects that expect newer GLIBCXX_* symbols. > > The newer gcc release is only needed at build-time. Its byproduct/side > effect of bringing with it a newer libstdc++ is what creates a runtime > dependency. > > It's my position that a CentOS 6.0-6.x release binary for clang newer than > 3.4.2 is not possible unless CentOS team backports libstdc++4.7 release to > that CentOS release. I'...
2022 Jun 23
2
NUT on Windows revival
Hello all, After a hectic month in private life, as a byproduct I've got a viable merger of last released NUT 2.6.5 based Windows-ready codebase (thanks to the giants active a dozen years ago, on whose shoulders I stood today) and modern 2.8.x/master, fixing the merge conflicts and build warnings. Some details were tracked in discussion of https://github.co...
2022 Jun 23
2
NUT on Windows revival
Hello all, After a hectic month in private life, as a byproduct I've got a viable merger of last released NUT 2.6.5 based Windows-ready codebase (thanks to the giants active a dozen years ago, on whose shoulders I stood today) and modern 2.8.x/master, fixing the merge conflicts and build warnings. Some details were tracked in discussion of https://github.co...
2020 Mar 23
2
Inconsistant result for normalizePath on Windows
Hi all, I saw a quite surprising result in the devel R when using the function *normalizePath*. If the input is a path to a folder, the function returns an absolute path with/without a slash at the end depending on the existence of the folder. I know both results are valid on Windows but this behavior is different than R3.6, I do not know if the change in the devel version is made on purpose.
2016 May 24
5
The state of IRPGO (3 remaining work items)
...les the filename into the counter name. This causes us to get instrprof_error::unknown_function when the pgo-use build is done in a different build directory from the training build (which is a reasonable thing to support). In this situation, PGO data is useless for all `static` functions (and as a byproduct results in a huge volume of warnings). 2. In different TU's, pre-instr inlining might make different inlining decisions (for example, different functions may be available for inlining), causing hash mismatch errors (instrprof_error::hash_mismatch). In building a large game, we only saw 8 insta...
2004 Feb 06
2
Samba limitation/configuration questions
...racter of the file name, the Windows display works properly and shows the long name. Why would an ending dot produce this behavior? 2. Possibly related to the dot name, in the same folder I have dozens of empty folders. No names, no sizes, no content. Just folders. I suspect that they're a byproduct of the dot problem but I've not tested to be sure. So far, only one folder has these empties in it, and that one has the dot file names. 3. Windows Explorer and file pick events in other apps that use Explorer (such as UltraEdit) only report the first 400-500 files, not all files in the direct...
2016 Jun 28
0
The clang for centos6 are need GLIBC_2.14, but we only have GLIB 2.12 by default.
...c++4.7 or newer. You could eliminate it if you could find a CentOS release that has libstdc++4.7 and glibc2.12. But ultimately you're still stuck with a runtime dependency on libstdc++ shared objects that expect newer GLIBCXX_* symbols. The newer gcc release is only needed at build-time. Its byproduct/side effect of bringing with it a newer libstdc++ is what creates a runtime dependency. It's my position that a CentOS 6.0-6.x release binary for clang newer than 3.4.2 is not possible unless CentOS team backports libstdc++4.7 release to that CentOS release. I'd be happy to learn I'm...
2016 Jun 29
0
The clang for centos6 are need GLIBC_2.14, but we only have GLIB 2.12 by default.
...;> if you could find a CentOS release that has libstdc++4.7 and glibc2.12. But >> ultimately you're still stuck with a runtime dependency on libstdc++ shared >> objects that expect newer GLIBCXX_* symbols. >> >> The newer gcc release is only needed at build-time. Its byproduct/side >> effect of bringing with it a newer libstdc++ is what creates a runtime >> dependency. >> >> It's my position that a CentOS 6.0-6.x release binary for clang newer >> than 3.4.2 is not possible unless CentOS team backports libstdc++4.7 >> release to tha...
2003 Apr 17
2
fontconfig-2.1.93 considered more harmful
...y so many ports fail ? Are they all harmed by similar loops ? So I tried to lookup ports dependency tree(s). Voila ! Found a few circular dependencies. Since I'm not using ports-all, and also the tool I relied on (tsort) is not the tool to primarily detect cycles (it detects cycles only as its byproduct), this list is not exhaustive. Most of the cycles I found so far contain XFree86-4-libraries -> fontconfig dependency. Other circles are small : gtkhtml (it depends on itself) and gtkhtml -> gnomecore. Also, note that {XFree86-4-libraries} and {fontconfig} are the only minimal cutsets that r...
2016 May 25
3
The state of IRPGO (3 remaining work items)
...me. This causes us to get >> instrprof_error::unknown_function when the pgo-use build is done in a >> different build directory from the training build (which is a reasonable >> thing to support). In this situation, PGO data is useless for all `static` >> functions (and as a byproduct results in a huge volume of warnings). >> > > > Rong, I was just looking at implementing a fix for this, but noticed > something. Can we get rid of the "InLTO" argument to getPGOFuncName if we > unconditionally apply the funcname metadata to all functions? > Are y...
2016 May 25
0
The state of IRPGO (3 remaining work items)
...o the counter name. This causes us to get > instrprof_error::unknown_function when the pgo-use build is done in a > different build directory from the training build (which is a reasonable > thing to support). In this situation, PGO data is useless for all `static` > functions (and as a byproduct results in a huge volume of warnings). > Rong, I was just looking at implementing a fix for this, but noticed something. Can we get rid of the "InLTO" argument to getPGOFuncName if we unconditionally apply the funcname metadata to all functions? -- Sean Silva > > 2. In diffe...
2006 Jun 07
9
lighttpd/fastcgi - where does stdout go?
i''m using lighty and fastcgi in my rails production environment. standard output appears to get swallowed up somewhere... it''s clearly not coming out of the development log. don''t know where to look for it. is this a byproduct of running in production mode? is there a way to turn this off? thanks, paul
2016 Jun 28
2
The clang for centos6 are need GLIBC_2.14, but we only have GLIB 2.12 by default.
Hell, Brian, I found a way to install Gcc 5.3 on CentOS 6 without the need to building it from source. You may try it on CentOS 6.0 That's makes clang/llvm won't depends on the newer version of glibc 2.14 The instruction: vim /etc/yum.repos.d/llvm.repo The content: ``` [sclo] name=SCLO baseurl=http://mirror.centos.org/centos/6/sclo/x86_64/rh/ gpgcheck=0 enabled=1 ``` Installation step:
2022 Jul 13
2
NUT on Windows revival
...ity help is welcome :) I probably forgot or missed some caveats - so feel free to post issues for this project if you think of some more... Jim On Thu, Jun 23, 2022, 23:52 Jim Klimov <jimklimov+nut at gmail.com> wrote: > Hello all, > > After a hectic month in private life, as a byproduct I've got a viable > merger of last released NUT 2.6.5 based Windows-ready codebase (thanks to > the giants active a dozen years ago, on whose shoulders I stood today) and > modern 2.8.x/master, fixing the merge conflicts and build warnings. Some > details were tracked in discussion...