search for: project_dir

Displaying 15 results from an estimated 15 matches for "project_dir".

2003 Mar 18
2
rsync over nfs
> Hello, > I have rsync process which is a crontab job: > 0 0-23 * * * /bin/rsync -rvg /net/server1/local/filesys1/userhomedir/project_dir /local/filesys1/userhomedir/project_dir > which sync the user project dir on localsystem from another machine called server1 via nfs, but the weird thing its coping all files every time it syncs am I using the wrong flags? is it possible to copy only the new/changed file or that's a problem...
2012 Apr 13
4
[LLVMdev] gdb + clang/llvm
Hi all, I currently have a problem setting up gdb with clang/llvm. I configured llvm/clang (trunk) with: ../llvm/configure --prefix=PROJECT_DIR/install_debug --enable-expensive-checks --enable-targets=host --enable-debug-runtime --enable-shared Now, when I invoke gdb with the freshly built clang it basically works. I can look at backtraces, set breakpoints and so on but breakpoints are never triggered. For instance: I put the line llvm::...
2009 Jan 20
3
Using centos and kickstart to build a minimum installation
Using centos 5.2, I want to use a kickstart file to select packages in order to have an unattended install onto a bare-metal server. Is there any way of finding out which packages I need to compile, build and run asterisk ? I generally want to build all modules in asterisk and the wct4xxp zaptel module I want to be able to not select any groups in the kickstart file, but only select
2012 Apr 13
0
[LLVMdev] gdb + clang/llvm
.../lists.cs.uiuc.edu/pipermail/cfe-dev/2012-March/020275.html ) for a similar question. -Matt On 04/13/2012 04:19 PM, Roland Leißa wrote: > Hi all, > > I currently have a problem setting up gdb with clang/llvm. > > I configured llvm/clang (trunk) with: > ../llvm/configure --prefix=PROJECT_DIR/install_debug --enable-expensive-checks --enable-targets=host --enable-debug-runtime --enable-shared > > Now, when I invoke gdb with the freshly built clang it basically works. I can look at backtraces, set breakpoints and so on but breakpoints are never triggered. > For instance: > &gt...
2012 Apr 13
0
[LLVMdev] gdb + clang/llvm
On Apr 13, 2012, at 2:19 PM, Roland Leißa <leissa at cs.uni-saarland.de> wrote: > Hi all, > > I currently have a problem setting up gdb with clang/llvm. > > I configured llvm/clang (trunk) with: > ../llvm/configure --prefix=PROJECT_DIR/install_debug --enable-expensive-checks --enable-targets=host --enable-debug-runtime --enable-shared > > Now, when I invoke gdb with the freshly built clang it basically works. I can look at backtraces, set breakpoints and so on but breakpoints are never triggered. > For instance: > &...
2011 Dec 09
0
[LLVMdev] tutorial on Xcode for LLVM bytecode?
...LLVM debugger. However, I am new to Xcode and so on, I would like to be directed to some step-by-step tutorial on compiling LLVM bytecode in Xcode. I tried selecting LLVM assembly as the source in Xcode when I try compiling some .bc file. However, It says: warning: no rule to process file '$(PROJECT_DIR)/test5/main.asm.llvm' of type sourcecode.asm.llvm for architecture x86_64 I also changed the target into LLVM assebly files using LLVM GCC 4.2 when I was trying out compiling some c files. However, it was not correct. Can someone give me some steps in using LLVM in Xcode? Thanks, Christine
2005 Dec 02
0
send_file method on windows and webrick
...browser hangs for a while, and then an empty file is returned from the download dialog box (Firefox 1.0.7/IE 6.02). Here is the code I am using to return the file - class AttachmentController... def download attachment = Attachment.find(params[:id]) send_file(attachment.path) #path is c:/project_dir/upload/user/file_to_send.txt end ... Any ideas or experience with this? I have searched high and low for related problems but I have come up empty. Any help would be much appreciated. Paul -- Posted via http://www.ruby-forum.com/.
2012 Apr 13
2
[LLVMdev] gdb + clang/llvm
...t; > On Apr 13, 2012, at 2:19 PM, Roland Leißa <leissa at cs.uni-saarland.de> > wrote: > > > Hi all, > > > > I currently have a problem setting up gdb with clang/llvm. > > > > I configured llvm/clang (trunk) with: > > ../llvm/configure --prefix=PROJECT_DIR/install_debug > > --enable-expensive-checks --enable-targets=host > > --enable-debug-runtime --enable-shared > > > > Now, when I invoke gdb with the freshly built clang it basically > > works. I can look at backtraces, set breakpoints and so on but > > breakpoin...
2012 Apr 23
4
[LLVMdev] gdb + clang/llvm
...gt; > > > What do I have to do in order to trigger breakpoints, see > > backtraces and so on? > > You set a breakpoint and ask to see a backtrace? > > -eric haha, OK, I think I should be more specific. So, I configured the project with: ../llvm/configure --prefix=PROJECT_DIR/install_debug --enable-expensive-checks --enable-targets=host --enable-debug-runtime --enable-shared CXX=g++ CC=gcc note that I'm using gcc then I run make make install next I fire up gdb setting a breakpoint somewhere in clang/lib/Sema only works if executing clang with -cc1 Now t...
2010 Apr 09
1
How to compile speex with XCode (for iPhone App)?
Hi, I'm currently trying to use Speex on the iPhone but have some difficulties to get Speex compiled with XCode. Unfortunately I'm very new to XCode and it would be great if someone could give me a hint what the problem is. Here is what I did in detail: 1. Downloaded the Source Code speex-1.2rc1.tar.gz from www.speex.org 2. Start Xcode 3.1.4 3. File > New Project ... 4. iPhone OS
2007 Jan 06
4
spec command and windows
...we get to spec in a platform independent way is to call: success = true dir = File.dirname(__FILE__) spec_cmd = (RUBY_PLATFORM =~ /[^r]win/) ? ''C:\\ruby\\bin\\spec.cmd'' : ''spec'' success &&= system("#{spec_cmd} --format specdoc --diff unified #{dir}/project_dir/spec_suite.rb") # ... exit success Lame! Does somebody out there have a better solution? Could rspec be run from ruby instead? Thank you, Brian -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rspec-users/attachments/20070105/6f6a...
2012 Apr 23
0
[LLVMdev] gdb + clang/llvm
...order to trigger breakpoints, see >>> backtraces and so on? >> >> You set a breakpoint and ask to see a backtrace? >> >> -eric > > haha, OK, I think I should be more specific. > > So, I configured the project with: > ../llvm/configure --prefix=PROJECT_DIR/install_debug --enable-expensive-checks --enable-targets=host --enable-debug-runtime --enable-shared CXX=g++ CC=gcc > > note that I'm using gcc > > then I run > make > make install > > next I fire up gdb > setting a breakpoint somewhere in clang/lib/Sema on...
2012 Apr 23
1
[LLVMdev] gdb + clang/llvm
...t; backtraces and so on? > >> > >> You set a breakpoint and ask to see a backtrace? > >> > >> -eric > > > > haha, OK, I think I should be more specific. > > > > So, I configured the project with: > > ../llvm/configure --prefix=PROJECT_DIR/install_debug > > --enable-expensive-checks --enable-targets=host > > --enable-debug-runtime --enable-shared CXX=g++ CC=gcc > > > > note that I'm using gcc > > > > then I run > > make > > make install > > > > next I fir...
2012 Apr 23
0
[LLVMdev] gdb + clang/llvm
On Apr 20, 2012, at 6:35 PM, Roland Leißa <leissa at cs.uni-saarland.de> wrote: > ok, I now have a problem in the code generator. > Let's say I want to set a breakpoint somewhere in > clang/lib/CodeGen/CGExprScalar.cpp > > What do I have to do in order to trigger breakpoints, see backtraces and so on? You set a breakpoint and ask to see a backtrace? -eric
2012 Apr 21
2
[LLVMdev] gdb + clang/llvm
ok, I now have a problem in the code generator. Let's say I want to set a breakpoint somewhere in clang/lib/CodeGen/CGExprScalar.cpp What do I have to do in order to trigger breakpoints, see backtraces and so on? -- Roland ----- Original Message ----- > From: "Eric Christopher" <echristo at apple.com> > To: "Roland Leißa" <leissa at cs.uni-saarland.de>