Displaying 20 results from an estimated 200 matches for "libname".
2010 Aug 05
2
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...###########################################################
# Library Build Rules: Four ways to build a library
###############################################################################
@@ -1097,10 +1142,10 @@ ifdef LIBRARYNAME
LIBRARYNAME := $(strip $(LIBRARYNAME))
ifdef LOADABLE_MODULE
LibName.A := $(LibDir)/$(LIBRARYNAME).a
-LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
+LibName.SO := $(SharedDir)/$(LIBRARYNAME)$(SHLIBEXT)
else
LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
-LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
+LibName.SO := $(SharedDir)/$(SharedPrefix)$(LIBRARYNAME...
2003 May 22
1
[LLVMdev] allow gcc .... /full/path/to/libfoo.a
...y(), and factor
LoadLibraryExactName() out of the result. Instead of treating the current
directory specially, just insert it into LibPaths in the beginning of
main().
Make LoadLibrary() take a "search" flag that says whether to search for the
correct library, or just trust that LibName is right.
Make LinkLibrary() take a "search" flag, and pass it to LoadLibrary().
Change the for-loop over InputFilenames to detect ar archives and link them
in as libraries without searching.
Change the for-loop over Libraries to explicitly turn on the "search" flag
to Li...
2010 Aug 05
0
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
Hi Takumi,
> Any feedbacks are welcome.
> Have fun!
This seems to be pretty useful addition to LLVM on windows! And it
seems the only painless way to make plugins working, yay!
For me the patch looks pretty good. One minor thing: could you please
rename SharedDir => SharedLibDir
Thanks!
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg
2010 Aug 05
3
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...###########################################################
# Library Build Rules: Four ways to build a library
###############################################################################
@@ -1097,10 +1143,10 @@ ifdef LIBRARYNAME
LIBRARYNAME := $(strip $(LIBRARYNAME))
ifdef LOADABLE_MODULE
LibName.A := $(LibDir)/$(LIBRARYNAME).a
-LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
+LibName.SO := $(SharedLibDir)/$(LIBRARYNAME)$(SHLIBEXT)
else
LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
-LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
+LibName.SO := $(SharedLibDir)/$(SharedPrefix)$(LIBRA...
2009 Aug 14
1
libname version in R
Hello friends,
in SAS there is the 'libname' source. You associate a way.. ex: ab .. "C:\My
Paste\Works" and when u do
data ab.example;
(...)
run;
you are saving the archive "example" in a SAS format, and you can see
C:\My Paste\Works\example "growing" ("example"'s size:200MB... refresh..
5...
2007 May 31
3
Venn diagram
Hello,
I am a total beginner with ?R? and found a package ?venn? to
create a venn diagram.
The problem is, I cannot create the vectors required for the diagram.
The manual say:
"R> venn(accession, libname, main = "All samples")
where accession was a vector containing the codes identifying
the RNA sequences, and libname was a vector containing the codes
identifying the tissue sample (library)."
The structure of my data is as follows:
R> structure(list(cyto = c("A"...
2016 Dec 19
2
[lld] RFC: Finding shared libraries on OpenBSD
...return findFromSearchPaths(Name.substr(1));
for (StringRef Dir : Config->SearchPaths) {
- if (!Config->Static)
+ if (!Config->Static) {
if (Optional<std::string> S = findFile(Dir, "lib" + Name + ".so"))
return S;
+
+ const StringRef LibName = (Twine("lib") + Name + ".so.").str();
+ int MaxMaj = -1, MaxMin = -1;
+ std::error_code EC;
+ for (fs::directory_iterator LI(Dir, EC), LE;
+ !EC && LI != LE; LI = LI.increment(EC)) {
+ StringRef FilePath = LI->path();
+ StringRef FileName =...
2007 Apr 23
0
Correction to PR #9631 (PR#9632)
...too
long while still keeping them unique within the dataset. A further enhancement
might be to use PROC CONTENTS to retrieve the full-length column names and then
assign them as the column names of the returned data.frames, but that seems to
be more effort than its worth.
read.ssd <- function(libname,
sectionnames,
tmpXport = tempfile(),
tmpProgLoc = tempfile(),
sascmd = "sas"){
tmpFiles <- tmpXport
on.exit(unlink(tmpFiles))
logGuess <- function(x){
expl <- strsplit(x, "")...
2005 May 19
3
[LLVMdev] [Cygwin] llvm 'make install' build errors
Reid,
I think it is the first time it is run that the errors occcur !?
Not sure but that would seem logical.
Aaron
2016 Dec 20
0
[lld] RFC: Finding shared libraries on OpenBSD
...(1));
>
> for (StringRef Dir : Config->SearchPaths) {
> - if (!Config->Static)
> + if (!Config->Static) {
> if (Optional<std::string> S = findFile(Dir, "lib" + Name + ".so"))
> return S;
> +
> + const StringRef LibName = (Twine("lib") + Name + ".so.").str();
> + int MaxMaj = -1, MaxMin = -1;
> + std::error_code EC;
> + for (fs::directory_iterator LI(Dir, EC), LE;
> + !EC && LI != LE; LI = LI.increment(EC)) {
> + StringRef FilePath = LI->...
2004 Oct 13
0
[LLVMdev] RESOLVED: [LLVMbugs] [Bug 451] Libtool does not create libNAME.$(SHLIBEXT) files when building dynamic libs
...with-automake flag (on AutoRegen.sh). However, you still MUST install
automake 1.9.2 even if you're not using --with-automake because that is how you
get aclocal 1.9.2 which is needed by autoconf.
Reid.
-------- Original Message --------
Subject: [LLVMbugs] [Bug 451] Libtool does not create libNAME.$(SHLIBEXT) files
when building dynamic libs
Date: Tue, 12 Oct 2004 19:58:23 -0500
From: bugzilla-daemon at cs.uiuc.edu
To: llvmbugs at cs.uiuc.edu
http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=451
rspencer at x10sys.com changed:
What |Removed |Added
----------...
2002 Nov 13
0
problems with read.ssd in foreign
I'm trying to read in a sas system file (.sas7bdat) created
under SAS 8.2 using read.ssd as follows:
> library(foreign)
> libname <- "c:/sasuser/consult/"
> sascmd <- "c:/Program\ Files/SAS\ Institute/SAS/V8/sas.exe"
> subset <- read.ssd(libname, "subset", sascmd=sascmd)
SAS failed. SAS program at c:\windows\TEMP\Rtmp6673\file24544.sas
a log and other error products should be in...
2004 Mar 26
1
lookup.xport in foreign ignoring some datasets (PR#6701)
...quot; "RA" "RE" "SA" "SL"
The following datasets were not read by lookup.xport
UR, URN, VIS, VIT, VO.
The example of the
SAS code used to builds the empty data
from the non-empty data in "export.xpt".
options nofmterr;
proc options;run;
libname x sasv5xpt "H:\projects\export.xpt";
libname y sasv5xpt "H:\projects\emptySasData3.xpt";
data ae; set x.ae(obs = 0); run;
...
data vit; set x.vital(obs = 0); run;
data vo; set x.volume(obs = 0); run;
proc copy in = work out = y; run;
I think I did not miss anything,
thank you,...
2005 Sep 26
1
reading SAS data files
...S Institute Inc., Cary, NC, USA.
NOTE: SAS (r) 9.1 (TS1M3)
Licensed to UNIV OF CA/DAVIS, Site 0029107010.
NOTE: This session is executing on the XP_PRO platform.
NOTE: SAS initialization used:
real time 0.13 seconds
cpu time 0.18 seconds
1 libname src2rd '/Program Files/SAS/SAS 9.1';
NOTE: Libref SRC2RD was successfully assigned as follows:
Engine: V9
Physical Name: C:\Program Files\SAS\SAS 9.1
2 libname rd xport 'C:\DOCUME~1\DSONNE~1\LOCALS~1\Temp\Rtmp3540\file26090';
NOTE: Libref RD was success...
2009 Oct 20
2
Problems importing Unix SAS .ssd04 file to R (Win)
...L
Warning message:
In read.ssd(folder_for_datafiles, "testfile", sascmd = file.path(sashome, :
SAS return code was 2
>
##################################
This temporary SAS file 'file41bb5af1.sas' looks like this
############ sas code #############
option validvarname = v6;libname src2rd 'M:/sasuser';
libname rd xport 'C:\DOCUME~1\jrara\LOCALS~1\Temp\RtmpAAxO3X\file6df11649';
proc copy in=src2rd out=rd;
select testfile ;
##################################
Any ideas what I'm doing wrong?
> sessionInfo()
R version 2.9.1 (2009-06-26)
i386-pc-mingw32
l...
2003 May 22
3
How to avoid function masking
Hi All,
I've been working on updating the 'genetics' package. As a consequence of
the upgrade, .First.lib() looks like:
.First.lib <- function(libname, pkgname)
{
if (!require(combinat))
warning("Unable to load 'combinat' library. Function
`diseq.ci' will fail.")
require(gregmisc)
genotype <- get("genotype",pos="package:genetics")
}
the First.lib of the "gregmisc"...
2008 Dec 03
2
reading version 9 SAS datasets in R
Hi,
I am trying to read a SAS version 9.1.3 SAS dataset into R (to preserve
the SAS labels), but am unable to do so (I have read in a CSV version).
I first created a transport file using the SAS code:
libname ces2 'D:\CES Analysis\Data';
filename transp 'D:\CES Analysis\Data\fadata.xpt';
/* create a transport file - R cannot read file created by proc cport */
proc cport data=ces2.fadata file=transp;
run;
I then tried to read it in R using:
> library(foreign)
> libra...
2011 Jan 26
1
Problem with "setMethod" in R package
...E(rothC) {
class_<rothC>("rothC")
.constructor()
...
}
######### FILE rcpp_rothC.R #########
Rcpp_rothC.plot <- function(x,y,...) { ... }
########## FILE zzz.R ##########
.NAMESPACE <- environment()
rothC <- new( "Module" )
.onLoad <- function(libname, pkgname) {
unlockBinding( "rothC" , .NAMESPACE )
assign( "rothC", Module( "rothC" ), .NAMESPACE )
setMethod(f="plot",signature(x="Rcpp_rothC",y="missing"),definition=Rcpp_rothC.plot,where=.GlobalEnv);
lockBinding( "rothC&...
2001 May 31
1
R and SAS
Hi
I'm trying to read SAS-data on VAX/VMS to Windows R using
foreign pakage read.xport and experience some problems.
Following lines are used in SAS to create XPORT file
LIBNAME a ''xxx;
LIBNAME b XPORT '';
PROC COPY IN=a OUT=b;
RUN;
and I succeed in getting file that looks like correct xport
file.However
when typing in R following lines
read.xport("htpa2000.txt")
I get message
Error in lookup.xport(file) : SAS tran...
2002 Dec 25
0
Part II Re: read.ssd {foreign} (Reading a permanent SAS d ataset into an R data frame)
...;smcnary at fellspt.charm.net> wrote:
>
>
> Stephen,
>
> I use SAS a lot and have to admit I use the proc
> export version to csv
> format you posted on a regular basis, however, I was
> able to get the
> transport version to work by using the xport engine
> in a libname statement
> as follows (SAS 8.2 on Windows98SE, rw1061):
>
>
> # using SAS
> libname check xport 'e:\testing.xpt' ;
>
> data a;
>
> do i = 1 to 10 ;
> x = 1 + i ;
> y = 50/x ;
> output;
> end;
>
> run;
>
> data check.a ;
> set...