View Single Post
 
Old 09-30-2009, 11:44 AM
aryajuanda's Avatar
aryajuanda aryajuanda is offline
 
Join Date: May 2008
Location: Indonesia
Posts: 72
this i my err

Code:
MIG UNDReplyServer.c
cc1plus: warnings being treated as errors
/Users/arya/Downloads/Kernels/xnu-1456.1.26-Test/iokit/Kernel/IOStartIOKit.cpp: In function ‘void iokit_post_constructor_init()’:
/Users/arya/Downloads/Kernels/xnu-1456.1.26-Test/iokit/Kernel/IOStartIOKit.cpp:100: warning: ‘PE_parse_boot_arg’ is deprecated (declared at /Users/arya/Downloads/Kernels/xnu-1456.1.26-Test/BUILD/obj//EXPORT_HDRS/pexpert/pexpert/pexpert.h:239)
/Users/arya/Downloads/Kernels/xnu-1456.1.26-Test/iokit/Kernel/IOStartIOKit.cpp:100: warning: ‘PE_parse_boot_arg’ is deprecated (declared at /Users/arya/Downloads/Kernels/xnu-1456.1.26-Test/BUILD/obj//EXPORT_HDRS/pexpert/pexpert/pexpert.h:239)
make[6]: *** [IOStartIOKit.cpo] Error 1
make[5]: *** [build_all] Error 2
make[4]: *** [do_all] Error 2
make[3]: *** [build_all] Error 2
make[2]: *** [build_all_conf] Error 2
make[1]: *** [build_all_iokit] Error 2
make[1]: *** Waiting for unfinished jobs....
pastebin : http://pastebin.com/m77caee23

added : pass the pexpert by editing the /pexpert/pexpert/pexpert.h:

#if !defined(__LP64__) && !defined(__arm__)
extern boolean_t PE_parse_boot_arg(
const char *arg_string,
void *arg_ptr) __deprecated;
#endif

to :

#if !defined(__LP64__) && !defined(__arm__)
extern boolean_t PE_parse_boot_arg(
const char *arg_string,
void *arg_ptr);
#endif

i dont know if i m doing the right thing or not..

Intel Core2Quad Q8400
Gigabyte GA-EP43-UD3L
4 GB kit DDR2 PC 6400 G-Skill BlackEdition
500 Gb Seagate Baracuda SATA
GeForce 9600 GT 512 MB GDDR3 256Bit
Mac OS X 10.6.2 || Leopard 10.5.8 || Windows 7

Visit my OSX86 Blog : http://osx86.boeaja.info

Last edited by aryajuanda; 09-30-2009 at 12:07 PM.
Reply With Quote