Displaying 20 results from an estimated 10000 matches similar to: "Newbie developer looking to contribute"
2003 Jun 07
3
tinc-1.0pre8 fails to compile on RH 9.0
Hi,
I had posted a similar question a few days back(but my mails started
bouncing back, when I tried to post to the newsgroup). So here is it
again.
My System: Rh 9.0 (2.4.20-13.9), openssl-0.9.7a-5, openssl-devel-0.9.7a-5
Autoconf tools: autoconf-2.57-3, automake-1.6.3-5
1. When I try to compile tinc-1.0 pre8 on my RH 9.0 system, it fails..
When I do a ./configure, it aborts saying:
2018 Jun 26
2
How to force an unused function declaration in clang
It does, when the function has a body. When it doesn't, it ignores
<https://godbolt.org/g/2BCvht>. The body might be provided later on in the
toolchain via linking a library.
Regards,
Soham Sinha
PhD Student, Department of Computer Science
Boston University
On Tue, Jun 26, 2018 at 10:25 AM Hans Wennborg <hans at chromium.org> wrote:
> It works for me:
>
>
2018 Jun 26
2
How to force an unused function declaration in clang
For the same reason GCC allowed the attribute. Even if I want to use/inline
a function later on in the pipeline.
Regards,
Soham Sinha
PhD Student, Department of Computer Science
Boston University
On Tue, Jun 26, 2018 at 8:30 AM mayuyu.io <admin at mayuyu.io> wrote:
> Out of curiosity, how does an unused declaration affect the emitted object
> file
>
> Zhang
>
> > 在
2006 Nov 26
1
problem loading package Hmisc
Hi,
I installed the package Hmisc with the command
install.packages("Hmisc") without errors. When I try to load the
library with command library(Hmisc) I get the error
> library(Hmisc)
Error in library(Hmisc) : there is no package called 'Hmisc'
> version
_
platform i386-pc-linux-gnu
arch i386
os linux-gnu
system i386,
2018 Nov 05
2
Hello World
Hello Everyone!
I'm Ameya Sinha, a student, and I wanted to contribute to the
libvirt organization. I have read through the contributing guidelines (
https://libvirt.org/contribute.html) and contributor guidelines (
https://libvirt.org/hacking.html). Can someone suggest how should I
proceed from here?
Thank You,
Ameya Sinha
2008 Dec 06
1
Kaplan-Meier function from survfit
Hi All,
Please pardon me if I am missing something obvious here. How do I get
the Kaplan-Meier estimate function that is created by survfit and
plotted by the code.
fit <- survfit(Surv(time, status) , data=aml)
plot(fit)
That is, I need a function that will give me the survival estimate at
a given time: \hat{S}(t).
Thanks in advance.
Ritwik Sinha
ritwik.sinha at gmail.com | +12033042111 |
2003 Jul 10
3
Help with R Installation on Debian 2.2.19 (old stable/potato)
Hi all,
I hope this is the correct list to post such a question.
I was trying to install the R-project on Debian and encountered significant
problems with the same.
The main problem is the installation of the libc6 package. I need this
package in order to install the R-core package. However, the libc6 is
dependent on the libdb1-compat package, which just refuses to install on my
server.
2004 Jan 26
1
Re: win32-service ideas
Park, Shashank,
It turns out I was doing something stupid with regards to Dir.chdir in
testing, which appears to be the reason it was failing.
It seems to work now. Hooray!
Shashank, I''ll take a look at your errors and see if I can nail them down.
The RPC message is one that I got from time to time, but from what I can
tell, it''s bogus or a system config/permissions
2018 Jun 25
2
How to include a opt pass in clang driver
Hi Eli,
I have tried that:
static void registerMyPass(const PassManagerBuilder &,
llvm::legacy::PassManagerBase &PM) {
PM.add(new MyPass());
}
static RegisterStandardPasses
RegisterMyPass(PassManagerBuilder::EP_OptimizerLast,
registerMyPass);
It still couldn't find my pass.
Regards,
Soham Sinha
PhD Student,
2005 Jul 29
3
Reg. page_sequence_number in the ogg header.
Hi,
I was looking at some of the vorbis-ogg music files using hexedit.
I am a bit confused about this filed "page_sequence_number" that appears
in the header for ogg. From RFC3533 the definition of this field is:
"page_sequence_number: a 4 Byte field containing the sequence
number of the page so the decoder can identify page loss. This
sequence number is increasing
2018 May 07
0
How to add assembly instructions in CodeGen
One place to look might be in the MachineOutliner target hooks in X86InstrInfo and AArch64InstrInfo. The MachineOutliner runs extremely late in the pass pipeline so it might be a good place to look for some inspiration. Of course, because this is *extremely late* it might not do *exactly* what you need. (e.g, this is post-register allocation, post frame-lowering, etc.)
- Jessica
> On May 4,
2003 Jun 02
1
Help with compilation problems
Hi,
I am trying to install tinc-1.0pre8 on my RH 9.0 (kernel 2.4.20-13.9)
system. I have already installed Openssl (v0.9.7a).
When i try to run the ./configure script, it stops at the follwing check
---SNIP--
checking openssl/pem.h presence... yes
checking for openssl/pem.h... yes
checking for SHA1_version in -lcrypto... yes
checking for RAND_pseudo_bytes... yes
checking for
2018 Jun 26
2
How to force an unused function declaration in clang
clang doesn't seem to respect __attribute__((used)) in C functions. Even if
I declare a function like the following: __attribute__((used)) void
function(), then also it doesn't declare the function in its IR file if I
don't use the function. Is there any other way to force the declaration of
"unused" function declarations with clang.
I have hacked in clang 6.0.0 in
2005 Aug 26
3
Reg. vorbis for real-time audio
Hi,
From the vorbis decoder specification, it is clear that the decoder
needs to have all the codebooks before decoding can actually begin.
I will appreciate if someone can clear the following questions:
1. I guess the codebooks are derived from the actual input data.
Probably the encoder may be making two passes through the input. The
first pass finds out the frequency of different symbols
2018 May 10
0
Assembly file compilation flow
Passing an assembly file to clang does not go through any CodeGen phases.
It operates entirely in the MC layer. No MachineFunctions will be created.
It just runs it through the MCAsmParser. Most of the setup for this is in
clang's tools/driver/cc1as_main.cpp in the function ExecuteAssembler
~Craig
On Thu, May 10, 2018 at 1:32 PM Soham Sinha via llvm-dev <
llvm-dev at lists.llvm.org>
2009 Aug 26
2
Help regarding frequency distribution Graphs
Hi all,
I am trying to construct a frequency distribution graph i.e.
suppose there is a variable *"k"* and it takes a range of values. What I
want to do is to plot *"P(k)" *(probability/frequency of finding a specific
value of *"k"*) vs *"k"*.I
would like to get a smooth curve between "P(k) vs k". I have already tried
2023 Aug 24
1
[PATCH (set 1) 00/20] Rid W=1 warnings from GPU
On Thu, 24 Aug 2023 08:36:45 +0100, Lee Jones wrote:
> This set is part of a larger effort attempting to clean-up W=1
> kernel builds, which are currently overwhelmingly riddled with
> niggly little warnings.
>
> Cc: Alex Deucher <alexander.deucher at amd.com>
> Cc: amd-gfx at lists.freedesktop.org
> Cc: Ben Skeggs <bskeggs at redhat.com>
> Cc: "Christian
2011 Aug 16
3
Bayesian Relative Survival Analysis in R?
Hi all,
May i know does R has packages or code to run "Bayesian Relative Survival Analysis"? I have look through Bayesian Survival Analysis(2001) by Joseph George Ibrahim<http://www.google.com/search?tbo=p&tbm=bks&q=inauthor:%22Joseph+George+Ibrahim%22>, Ming-Hui Chen<http://www.google.com/search?tbo=p&tbm=bks&q=inauthor:%22Ming-Hui+Chen%22>, Debajyoti
2019 Jun 27
2
mkfs fails on qemu-nbd device
Hi All,
I am unable to figure out the issue here, when I try to create a filesystem
(ext4) on a virtual disk using qemu-nbd. This happens intermittently.
Following is the sequence of commands:-
$> qemu-img create -f qcow2 test.qcow2 30G
$> qemu-nbd --connect=/dev/nbd0 test.qcow2
$> *mkfs.ext4 /dev/nbd0*
* mkfs.ext4: Device size reported to be zero. Invalid partition specified,
or*
2023 Aug 24
1
[PATCH (set 1) 00/20] Rid W=1 warnings from GPU
Hi,
On Thu, Aug 24, 2023 at 10:59:54AM +0200, Maxime Ripard wrote:
> On Thu, 24 Aug 2023 08:36:45 +0100, Lee Jones wrote:
> > This set is part of a larger effort attempting to clean-up W=1
> > kernel builds, which are currently overwhelmingly riddled with
> > niggly little warnings.
> >
> > Cc: Alex Deucher <alexander.deucher at amd.com>
> > Cc: