search for: source_code

Displaying 14 results from an estimated 14 matches for "source_code".

2008 Mar 11
1
syncing multiple instances of code in same tree
..._1 /my_code/root_dir/instance_2 /my_code/root_dir/instance_3 each instance_n has the same directory structure and owns the same files for the most part with small isolated customer additions (image files, etc.). I'd like to sync all instances from an updated version of the code, say, /my_code/source_code/latest_instance. My initial thought was to do something like this: rsync -v /my_code/source_code/latest_instance/ /my_code/root_dir/*/ but this, of course, doesn't work. One other wrinkle is that we would like to be able to add additional instances to the root_dir and have them be automatic...
2009 Nov 10
1
compiling R-2.10.0 on solaris - lib_I_dbg_gen.so.1: version `DBG_GEN_5.1' not found
...n.so.1": Sun Debug Information DBG_GEN 5.1.17 gcc2ir_lang 2006/08/17 ---------------------------- And here's the error I get during the make process: begin installing recommended package cluster * installing *source* package 'cluster' ... ** libs gcc -std=gnu99 -I/home/jayoung/source_codes/R/R-2.10.0/solaris_6/R- patched/include -I/usr/local/include -fPIC -g -O2 -c clara.c -o clara.o ld.so.1: cc1: fatal: lib_I_dbg_gen.so.1: version `DBG_GEN_5.1' not found (required by file /opt/gcc/libexec/gcc/sparc-sun- solaris2.10/4.0.3/cc1) ld.so.1: cc1: fatal: lib_I_dbg_gen.so.1:...
2009 May 21
0
problems building R-2.9.0 on solaris
...text html latex example tk_messageBox text html latex tk_select.list text html latex tkpager text html latex begin installing recommended package VR ERROR unable to create '/home/jayoung/source_codes/R/R-2.9.0/ unpack_solaris3/R-patched/library/MASS' *** Error code 1 The following command caused the error: MAKE="make" R_LIBS= ../../../bin/R CMD INSTALL --no-lock -l "../../../ library" VR.tgz > VR.ts.out 2>&1 || (cat VR.ts.out && exit 1) make: Fatal e...
2009 Sep 30
1
Installation problem from R 2.8.x
...ckage has a "configure" file then it cannot be installed without modification. For example: * Installing *source* package 'foreign' ... ERROR: 'configure' exists but is not executable -- see the 'R Installation and Adminstration Manual' * Removing '/usr/local/source_code/Linux/R/R-2.9.2/library/foreign' make[2]: *** [foreign.ts] Error 1 In fact, 'configure' is executable!!! So I have to manually run 'configure', remove 'configure', and then repackage foreign_0.8-37.tar.gz so it can be installed. This bug makes it very time consuming to...
2007 Dec 21
0
RMySQL installation
Hi, I am having trouble getting RMySQL running on a solaris machine. [43] bedrock:/home/jayoung/source_codes/R/other_packages> uname -a SunOS bedrock 5.10 Generic_118833-36 sun4v sparc SUNW,Sun-Fire-T200 I thought I had finally managed to get it installed, albeit with some warnings that I didn't understand (it took me a while to find where our mysql libraries were), but when I tried to load i...
2015 Mar 12
2
Joining a domain
...he domain and use the DC's for authentication Thank you for educating me. I have my samba setup working as you have described, but I will ask a question for "academic" purposes -- just so I can better understand what is happening. Please feel free to refer me to a book/site/article/source_code that spells out what is happening. Couldn't samba act as a "proxy", not join the windows domain, but still authenticate via AD? 1. samba shares files without joining AD. 2. A user "logs in" to samba by presenting an AD username/password 3. samba, not being joined to the...
2010 Jan 13
0
[LLVMdev] invoke/unwind
If it helps, to see what is involved, outside of a pure IR context, see the example code, and doc at: http://wiki.llvm.org/HowTo:_Build_JIT_based_Exception_mechanism#Source_Code:_exceptionDemo.cpp Although this is a pure example that shows several test cases, including foreign exception interaction, it is not an IR example, but rather a LLVM IR API example. It would be interesting to see a pure IR version of a personality function. I don't see why this would not be po...
2006 Nov 07
1
reading VERY large binary files
...tran$gender <- readChar(incon,1) tran$zip_code <- readChar(incon,5) tran$region_code <- readChar(incon,1) tran$county_code <- readChar(incon,1) tran$state_abbrev <- readChar(incon,2) tran$channel_code <- readChar(incon,1) tran$source_code <- readChar(incon,20) tran$payment_type <- readChar(incon,1) tran$credit_card <- readChar(incon,1) tran$promo_type <- readChar(incon,1) tran$flags <- readChar(incon,1) write.table(data.frame(tran), file="readHH_output", sep=&quot...
2010 Jan 13
5
[LLVMdev] invoke/unwind
I put invoke/unwind aside because I couldn't get them to work, but I'm working on my evaluator now and it would be nice to figure this out so I don't have to unwind the stack manually. This was the reason for my earlier question about global declarations, and as that's cleared up I can easily pass exception data...if I can make unwind return out of some deep recursion. The
2010 Jan 13
2
[LLVMdev] invoke/unwind
On 01/13/2010 04:08 AM, Garrison Venn wrote: > If it helps, to see what is involved, outside of a pure IR context, > see the example code, and doc at: > > http://wiki.llvm.org/HowTo:_Build_JIT_based_Exception_mechanism#Source_Code:_exceptionDemo.cpp It does, although in the "let me show you why this is too much to tackle" way. > Although this is a pure example that shows several test cases, > including foreign exception interaction, it is not an IR example, but > rather a LLVM IR API example. It would b...
2015 Mar 12
0
Joining a domain
...;s for authentication > Thank you for educating me. > > I have my samba setup working as you have described, but I will ask a > question for "academic" purposes -- just so I can better understand > what is happening. Please feel free to refer me to a > book/site/article/source_code that spells out what is happening. > > Couldn't samba act as a "proxy", not join the windows domain, but > still authenticate via AD? No, to authenticate via AD, it has to be an AD member. > > 1. samba shares files without joining AD. > > 2. A user "logs in...
2010 Jan 13
0
[LLVMdev] invoke/unwind
...2010, at 12:46, Dustin Laurence wrote: > On 01/13/2010 04:08 AM, Garrison Venn wrote: > >> If it helps, to see what is involved, outside of a pure IR context, >> see the example code, and doc at: >> >> http://wiki.llvm.org/HowTo:_Build_JIT_based_Exception_mechanism#Source_Code:_exceptionDemo.cpp > > It does, although in the "let me show you why this is too much to > tackle" way. > Yeah, I hear you. The LLVM developer fly trap got me. ;-) >> Although this is a pure example that shows several test cases, >> including foreign exception...
2010 Jan 14
0
installing RCurl when libcurl is in non-standard location
.../jayoung/traskdata/lib_linux/libcurl.so.4.1.1* [11] zork20:/home/jayoung> printenv LD_LIBRARY_PATH /home/btrask/traskdata/lib_linux:/home/jayoung/traskdata/bin_linux/qt/ lib:/home/btrask/traskdata/lib_linux/R/library/RSPerl/libs:/home/ btrask/traskdata/lib_linux/R/lib [14] zork20:/home/jayoung/source_codes/R/other_packages> R CMD INSTALL RCurl_1.3-1.tar.gz --configure-args='--libdir=/home/btrask/traskdata/ lib_linux --includedir=/home/btrask/traskdata/include' * installing to library ?/home/btrask/traskdata/lib_linux/R/library? * installing *source* package ?RCurl? ... checking for cur...
2015 Mar 11
3
Joining a domain
Marc, Thank you for taking the time to give me some complete answers. When writing to lists like these I often struggle with how much or little detail to give.... and I am eager to add more detail where you have explicitly asked. On Tue, Mar 10, 2015 at 2:13 PM, Marc Muehlfeld <mmuehlfeld at samba.org> wrote: >> 1. Must "net join" be used? > > If you want to join the