On 7 May 2013 17:21, Michael W. Lucas <mwlu...@michaelwlucas.com> wrote:
>
> Hi,
>
> I'm running an older -current:
>
> bewilderbeast/usr/src;uname -a
> FreeBSD bewilderbeast.blackhelicopters.org 10.0-CURRENT FreeBSD 10.0-CURRENT 
> #15: Thu Nov  8 14:02:45 EST 2012     
> mwlu...@bewilderbeast.blackhelicopters.org:/usr/obj/usr/src/sys/G
>
> Trying to build new, and get:
>
> ...
> c++  -O2 -pipe 
> -I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/include 
> -I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/tools/clang/include 
> -I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support -I. 
> -I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/../../lib/clang/include
>  -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS 
> -D__STDC_CONSTANT_MACROS -fno-strict-aliasing 
> -DLLVM_DEFAULT_TARGET_TRIPLE=\"x86_64-unknown-freebsd10.0\" 
> -DLLVM_HOSTTRIPLE=\"x86_64-unknown-freebsd10.0\" -DDEFAULT_SYSROOT=\"\" 
> -I/usr/obj/usr/src/tmp/legacy/usr/include -fno-exceptions -fno-rtti -c 
> /usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support/Process.cpp
>  -o Process.o
> In file included from 
> /usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support/Process.cpp:85:
> /usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support/Unix/Process.inc:
>  In member function 'virtual llvm::sys::TimeValue 
> llvm::sys::self_process::get_user_time() const':
> /usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support/Unix/Process.inc:75:
>  error: 'CLOCK_PROCESS_CPUTIME_ID' was not declared in this scope
> *** [Process.o] Error code 1

You can try to install this change into your /usr/include/time.h and try again.
http://svnweb.freebsd.org/base?view=revision&revision=245428

--- head/include/time.h 2013/01/14 17:41:04     245427
+++ head/include/time.h 2013/01/14 18:01:19     245428
@@ -112,6 +112,7 @@
 #define CLOCK_MONOTONIC_FAST   12      /* FreeBSD-specific. */
 #define CLOCK_SECOND   13              /* FreeBSD-specific. */
 #define CLOCK_THREAD_CPUTIME_ID        14
+#define        CLOCK_PROCESS_CPUTIME_ID        15
 #endif /* !defined(CLOCK_REALTIME) && __POSIX_VISIBLE >= 200112 */

 #if !defined(TIMER_ABSTIME) && __POSIX_VISIBLE >= 200112

-- 
wbr,
pluknet
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Reply via email to