search for: predefinited

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

Did you mean: predefinied
2003 Jan 24
0
problem with iproute and TEQL over predefinited tables
hi, I''ve encrountred some problem with iproute2... I''m building a router with kernel 2.4.20 but my script fail when I try to do a load balancing over a specific traffic, how explained on LARTC for balance the access between more link we should simple: ip route add default scope global nexthop via IP1 dev ETH0 weight 1 \ nexthop via IP2 dev ETH1 weight 1 for specific traffic
2001 Mar 02
3
Winelib problems
I'd like to know how to link console functions such as WriteConsoleOutputA. They are documented as implemented, and I can compile source code including these function predefinitions, but I get undefined errors when linking. I don't know which library to add to get objects linked. Thanks in advance. Ignasi Villagrasa.
2012 Jul 17
0
[LLVMdev] [cfe-dev] Curent svn build, generates llvm DEBUG builds
2012/7/17 Unai Landa <ulanda at digital-legends.com>: > But ig I do so with llc or any other llcm executable I get DEBUG build this; > LLVM (http://llvm.org/): > LLVM version 3.2svn > DEBUG build. > Built Jul 16 2012 (16:31:02). > Default target: i686-pc-win32 > Host CPU: penryn > Registered Targets: > arm - ARM > cpp - C++ backend >
2008 May 14
0
[LLVMdev] malloc, magic, and embedded compilation
> 1. The particular optimization that was done there was based on the > compiler substituting an alternate implementation of malloc(). This may > not be appropriate in kernel or deeply embedded systems. Is there a way > for someone who is building that sort of system to enable/disable the > builtin library magic selectively? -ffreestanding > I assume that LLVM can support
2008 May 14
4
[LLVMdev] malloc, magic, and embedded compilation
The discussion of malloc optimization from two (three?) weeks ago prompts me to be concerned about implications for kernel compilation. Basically, I have two questions: 1. The particular optimization that was done there was based on the compiler substituting an alternate implementation of malloc(). This may not be appropriate in kernel or deeply embedded systems. Is there a way for someone who is