search for: beow

Displaying 5 results from an estimated 5 matches for "beow".

Did you mean: below
2011 Mar 29
1
Rules for port forwarding
Hi, does anyone remember the rules for port forwarding ? the followings does not work: iptables -A FORWARD -i eth0 -o eth1 -p tcp ?dport 80 -j ACCEPT iptables -A PREROUTING -t nat -p tcp -i eth0 ?dport 80 -j DNAT ?to 192.168.20.1:80 thx lewis
2012 Jul 14
2
[LLVMdev] Recompiling llvm+clang how-to?
...10000) aaa += 1; 350 if (bbb < 10000) bbb += aaa; 351 if (aaa > 100) aaa -= 1; 352 if (bbb > 100) bbb -= aaa; 353 } 354 } - And after this I just tried to recompile using the very same Makefile under build directory where I compiled the brand new clang+llvm as show beow. >> time make -j3 - I captured messages below when the compiler stucks in somewhere. [$ make -j3] …............................................... make[3]: Entering directory `/home/hum/Projects/clang_llvm/build/tools/clang/tools' make[4]: Entering directory `/home/hum/Projects/clang_ll...
2008 Aug 01
0
standardize ggplot and lattice themes
...t make for a consistent look I would like to see throughout the document. I really like most default settings in ggplot's theme (grid, labels spacing, background, ...), and I would like to produce a similar theme for use with lattice. I've made such an attempt in base graphics ? see beow, it's just silly ? but I think i could get away with using only lattice and ggplot2. I don't know lattice well (just started using it, really), so I'm sort of lost in the jungle of parameters. Can anyone help me set up a lattice theme for the following example? Best wishes, bap...
2012 Jul 13
0
[LLVMdev] Recompiling llvm+clang how-to?
Hi Journeyer J. Joh, > I have questions about compiling Clang+llvm. > > I compile as the link below instructs. > > http://clang.llvm.org/get_started.html > > I do on Ubuntu 12.04. > > `time make -j5` prints for about 13 minutes to compile a brand new > version of Clang+llvm. > And after this I edit some C++ code(clang/tools/driver/driver.cpp) and > compiles
2012 Jul 13
2
[LLVMdev] Recompiling llvm+clang how-to?
Hello list I have questions about compiling Clang+llvm. I compile as the link below instructs. http://clang.llvm.org/get_started.html I do on Ubuntu 12.04. `time make -j5` prints for about 13 minutes to compile a brand new version of Clang+llvm. And after this I edit some C++ code(clang/tools/driver/driver.cpp) and compiles using the very same makefile which was used above sentence. But this