1
0
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:
Timothy J Fontaine 2014-02-17 18:08:10 -08:00
parent d7c8cffecb
commit 3310ff4a9e

View File

@ -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