Displaying 20 results from an estimated 3000 matches similar to: "Makefile for installing all available packages"
2004 Jan 20
1
Re: Need help on how to list functions from a loaded package...
To All
How does one get a list of functions from a loaded package so that one can
then get the appropriate help for each of the functions. Currently my
method is
based on a lot of trial-and-error.
Here's an example of what I mean...
>From this forum I learn that an interesting package called "multtest" exists
on Bioconductor.
I then use R Console's "Packages" --
2004 Jan 20
0
Re: Need help on how to list functions from a loaded pack age...
You can get help on the whole package by
> help(package="multtest")
which is likely pretty close to what you want. There's the index etc for the
package on the web as well. You can also just look in the package's
installation directory. If it's loaded you can do an ls(2) say if it loaded
in position 2, to get all objects in the package.
Reid
-----Original Message-----
2004 Oct 23
1
[LLVMdev] UPDATE: Makefile.rules Changes (IMPORTANT)
If you're on the new Makefile system, you will want to update your
Makefile.rules. The patch below provides some important fixes for
parallel builds and dependencies. It also adds some new features like
the -local targets. For example, you can now build "all-local" to build
the local directory without recursing into subdirectories.
See the comments below for details of the change.
2004 Jan 25
0
[PATCH] include /.emacs.d?
make install in the klibc directory ends up doing
include /.*.d
which just happens to pick up root's .emacs.d directory on my machine
which makes make barf (because its a directory). This patch makes
sure that when DIR is not set we don't go poking around in /.
Thanks,
-Jim
PS This message was initially bounced by (via SORBS) because my IP
address is dynamic (it may technically
2006 Nov 13
0
[737] trunk/wxruby2/rake/rakepackage.rb: Ensure that lib/wx/classes/ .rb files are included in gem and tarball
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding:
2005 Aug 07
0
kbuild: add klibc/tests
kbuild: add klibc/tests to kbuild
Add a kbuild file so we now can build the test programs.
A new dedicated target is used:
make test
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
---
commit 5492ae07007399d8838dea5f44b3d9cf3603abc3
tree 4339d2d3aa0e80bc81ac0cd8ca3b7c89486b2150
parent 64dda666c087b6e537892ac9984aff57d2b32c47
author Sam Ravnborg <sam@mars.(none)> Sun, 07 Aug 2005
2006 Jun 26
0
[klibc 19/43] klibc basic build infrastructure
Basic infrastructure for building klibc.
Signed-off-by: H. Peter Anvin <hpa at zytor.com>
---
commit 5bba564a5c133369b3e83e5827d053a98cb3c59a
tree 11f2acc1f9d845e8764fa790f522b79ea1106b80
parent 378abd8f4d39024ea6c87eb5b54155238f647f0d
author H. Peter Anvin <hpa at zytor.com> Sun, 25 Jun 2006 16:58:08 -0700
committer H. Peter Anvin <hpa at zytor.com> Sun, 25 Jun 2006 16:58:08
2011 Aug 10
1
[PATCH v2] dirent.h add fdopendir()
Initial implemenation with quick test.
Signed-off-by: maximilian attems <max at stro.at>
---
v2: seperate file.
usr/include/dirent.h | 1 +
usr/klibc/Kbuild | 3 ++-
usr/klibc/fdopendir.c | 40 ++++++++++++++++++++++++++++++++++++++++
usr/klibc/tests/Kbuild | 1 +
usr/klibc/tests/fdopendir.c | 31 +++++++++++++++++++++++++++++++
5 files changed,
2002 Dec 22
0
Bug ID: 26222 - SMB Storm
Please include the following to bug ID: 26222 at:
http://bugs.samba.org/?findid=26222
More checking shows that closing a search window on
Windows in the middle of it's search doesn't stop the
SMB activity. Network utilization remains high, and it
seems as if the server is stuck searching.
In an attempt to verify, I created a share on Win2k,
and followed the same procedure:
Server:
2019 Jan 20
0
[klibc:master] Build and install shared binaries only if KLIBCSHAREDFLAGS is defined
Commit-ID: 47e429ec6c758b98a00e69df541448942c6f3ba3
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=47e429ec6c758b98a00e69df541448942c6f3ba3
Author: Ben Hutchings <ben at decadent.org.uk>
AuthorDate: Sat, 19 Jan 2019 22:47:18 +0000
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 19 Jan 2019 22:51:00 +0000
[klibc] Build and install shared
2010 Aug 05
2
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
Good summer, all!
This patch enables ENABLE_SHARED=1 to build DLL based LLVM toolchain.
I have checked this on Cygwin-1.5, Cygwin-1.7, mingw(msysgit) and
mingw-cross-fedora12.
I can separate this patch into some parts; cleanups, adding
definitions and adding rules.
Any feedbacks are welcome.
Have fun!
...Takumi
* Pros
- reduction of linking time of toolchain.
- capability of -load
2010 Aug 05
3
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
Anton,
Thanks for your comment.
2nd patch attached.
- s/SharedDir/SharedLibDir/g
- move prefix=cyg sunk into if(cygwin or mingw)
arigato gozaimasu...Takumi
* Additional issues
- You may build LLVMHello.dll but I don't modify lib/Transforms/Makefile.
Because making LLVMHello.dll requires the library LLVM.dll,
but it oughta be on the way to making libs at building
2005 Jul 29
1
move kbuild files to reflect dir structure in kernel
To make it more obvious where the files are supposed to end up
move files so they reflect the directory structure in the kernel:
mkdir scripts
mv kernel/Kbuild.* scripts/
mkdir usr
mv kernel/Kbuild usr
rmdir kernel
Furthermore:
- updated cp-to-kernel to refelct new directory layout
- teach cp-to-kernel to place gzip right under usr/
- Add '#' in front of comment in usr/Kbuild
---
I
2011 Mar 22
2
R_HOME path getting munged in inst/doc/Makefile on Windows
Hello,
I have come across two separate packages that have a Makefile in inst/doc
which use the R_HOME variable.
In both cases, the path to R_HOME gets munged in such a way that commands
that include R_HOME fail on Windows:
For example, one Makefile, for the xmapcore package (
https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/xmapcore/username/password:
readonly) has this:
2005 Jul 26
2
[PATCH] better kbuild integration
Following patch improves integration with kbuild.
With a future kernel (2.6.14-rc) it now has working support
for 'make clean'.
Included is an example of how to compile an early userspace program.
I selected gzip as the most simple one for this - and left out all
the links to different names (gunzip etc.)
Before proceeding with this I need some inputs on what functionality
is required by
2010 Dec 01
1
Guide to SELinux
Since the "SELinux - way of the future or good idea but !!!" thread is deep
in heated discussion, I decided not to derail to ask a simple question.
I found this guide for SELinux: http://www.linux-books.us/centos_0005.php and
it looks like it's straight out of RedHat.
However, it's dated 2005. Will this be sufficient to help understand a
CentOS 5 - or 6 - installation of
2006 Oct 11
1
during fitting of successive datasets, stall crashes iterations
Hi all,
I am trying to do fitting of large sets of timeseries data, and error
messages derail the process when I encounter a dataset that doesn't fit. I'd
like to ignore those "misfits" and try another equation or move to the next
dataset. Any ideas? (piece of code below)
Thanks, --Warren
##The code looks something like this:
attach(zf)
x <- hours
2006 Jul 09
6
[PATCH/RFC] klibc/kbuild: use separate kbuild files for each klibc subdirectory
This fixes a long standing issue where it was not possible to
do "make usr/klibc/arch/x86_64/longjmp.o" in the kernel.
The principle is that all .o files to be part of klibc are listed
with klib-y. For each directory a klib.list file is made that specify
all .o file and the final AR then adds all .o files to create libc.a.
This patch introduce the infrastructure and converts x86_64 to
2015 Nov 05
2
Internal DNS logging
On 11/5/2015 10:30 AM, Rowland Penny wrote:
> On 05/11/15 15:18, James wrote:
>> On 11/4/2015 4:13 PM, John Gardeniers wrote:
>>> Nobody? Surely somebody knows where Samba 4 logs its DNS queries, or
>>> was this was a huge oversight and the internal DNS doesn't get
>>> logged at all, as appears to be suggested by my utter failure to
>>> locate
2016 May 05
3
Resuming the discussion of establishing an LLVM code of conduct
On Thu, May 5, 2016 at 2:55 AM C Bergström <llvm-dev at lists.llvm.org> wrote:
> Chandler - I do not want to derail, hijack or change the topic of this
> discussion - Would you be ok with me going into specific examples?
>
IMO, no, I don't think that would be a productive direction. I also suspect
it would have a high probability of (unintentionally) leading to exactly
the