mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
build: update dtrace m4 check for sunos
The check to see if -G is needed for dtrace requires a bit more effort, make a header, c file, and object file.
This commit is contained in:
parent
d7c8cffecb
commit
3310ff4a9e
12
m4/dtrace.m4
12
m4/dtrace.m4
@ -39,10 +39,18 @@ provider Example {
|
||||
probe increment(int);
|
||||
};
|
||||
_ACEOF
|
||||
$DTRACE -G -o conftest.d.o -s conftest.d 2>/dev/zero
|
||||
cat > conftest.c <<_ACEOF
|
||||
#include "conftest.h"
|
||||
void foo() {
|
||||
EXAMPLE_INCREMENT(1);
|
||||
}
|
||||
_ACEOF
|
||||
$DTRACE -h -o conftest.h -s conftest.d 2>/dev/zero
|
||||
$CC -c -o conftest.o conftest.c
|
||||
$DTRACE -G -o conftest.d.o -s conftest.d conftest.o 2>/dev/zero
|
||||
AS_IF([test $? -eq 0],[ac_cv_dtrace_needs_objects=yes],
|
||||
[ac_cv_dtrace_needs_objects=no])
|
||||
rm -f conftest.d.o conftest.d
|
||||
rm -f conftest.d.o conftest.d conftest.h conftest.o conftest.c
|
||||
])
|
||||
AC_SUBST(DTRACEFLAGS) dnl TODO: test for -G on OSX
|
||||
ac_cv_have_dtrace=yes
|
||||
|
Loading…
x
Reference in New Issue
Block a user