search for: outopt

Displaying 3 results from an estimated 3 matches for "outopt".

Did you mean: outops
2020 Aug 20
0
[klibc:master] klcc: Treat CC, LD, STRIP as multiple words
...----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/klcc/klcc.in b/klcc/klcc.in index 43d0984a..7b3b8f3b 100644 --- a/klcc/klcc.in +++ b/klcc/klcc.in @@ -218,7 +218,7 @@ if ( $debugging ) { if ( $operation ne '' ) { # Just run gcc with the appropriate options @outopt = ('-o', $output) if ( defined($output) ); - $rv = mysystem($CC, @ccopt, @outopt, files_with_lang(\@files, \%flang)); + $rv = mysystem(@CC, @ccopt, @outopt, files_with_lang(\@files, \%flang)); } else { if ( scalar(@files) == 0 ) { die "$0: No input files!\n"; @@ -241...
2005 Mar 02
2
[PATCH] klcc compatibility with gcc
Here's a patch to klcc.in from klibc-0.202. The context: I have an application, managed with GNU automake/autoconf. Packagers should be able to build the application with klibc if available, with plain gcc otherwise, as follows: $ cd ~/klibc-0.202 $ ... make linux symlink $ make bindir=$HOME/local/bin \ mandir=$HOME/local/man \ INSTALLDIR=$HOME/local \ SHLIBDIR=$HOME/local/shlib \
2013 Jan 03
1
R2OpenBUGS question with differential equations
...,wait.generations=100, starting.value=c(40,8,12),BFGS=FALSE, print.level=0,boundary.enforcement=0,Domains=matrix(c(0,0,0,100,100,100),3,2),MemoryMatrix=TRUE) outgen<-c(gen$par[1],gen$par[2],gen$par[3]) opt<-optim(c(gen$par[1],gen$par[2],gen$par[3]),objectfunc,method="Nelder-Mead")  outopt<-c(opt$par[1],opt$par[2],opt$par[3])     fm<-nls(lev~modelfunc(time,Vm,Km,Vol),data=Input,start=list(Vm=opt$par[1],Km=opt$par[2],Vol=opt$par[3]),trace=TRUE,nls.control(tol=1)) x<-Input$time y<-Input$lev cal<-predict(fm,list(time=x)) plot(x,y,type="l",col="green")...