2012-07-06 00:18:28 +08:00
|
|
|
set -e
|
|
|
|
|
|
|
|
SRCS="
|
|
|
|
tsan_go.cc
|
|
|
|
../rtl/tsan_clock.cc
|
|
|
|
../rtl/tsan_flags.cc
|
2014-07-18 22:54:02 +08:00
|
|
|
../rtl/tsan_interface_atomic.cc
|
2012-07-06 00:18:28 +08:00
|
|
|
../rtl/tsan_md5.cc
|
|
|
|
../rtl/tsan_mutex.cc
|
|
|
|
../rtl/tsan_report.cc
|
|
|
|
../rtl/tsan_rtl.cc
|
|
|
|
../rtl/tsan_rtl_mutex.cc
|
|
|
|
../rtl/tsan_rtl_report.cc
|
|
|
|
../rtl/tsan_rtl_thread.cc
|
2014-05-29 21:50:54 +08:00
|
|
|
../rtl/tsan_stack_trace.cc
|
2012-07-06 00:18:28 +08:00
|
|
|
../rtl/tsan_stat.cc
|
|
|
|
../rtl/tsan_suppressions.cc
|
|
|
|
../rtl/tsan_sync.cc
|
|
|
|
../../sanitizer_common/sanitizer_allocator.cc
|
|
|
|
../../sanitizer_common/sanitizer_common.cc
|
2014-03-19 20:50:47 +08:00
|
|
|
../../sanitizer_common/sanitizer_deadlock_detector2.cc
|
2015-01-31 07:04:57 +08:00
|
|
|
../../sanitizer_common/sanitizer_flag_parser.cc
|
2012-07-16 18:36:39 +08:00
|
|
|
../../sanitizer_common/sanitizer_flags.cc
|
2012-07-06 00:18:28 +08:00
|
|
|
../../sanitizer_common/sanitizer_libc.cc
|
2014-05-21 17:42:56 +08:00
|
|
|
../../sanitizer_common/sanitizer_persistent_allocator.cc
|
2012-07-06 00:18:28 +08:00
|
|
|
../../sanitizer_common/sanitizer_printf.cc
|
2013-06-27 15:57:53 +08:00
|
|
|
../../sanitizer_common/sanitizer_suppressions.cc
|
2013-03-18 16:52:46 +08:00
|
|
|
../../sanitizer_common/sanitizer_thread_registry.cc
|
2014-03-19 20:50:47 +08:00
|
|
|
../../sanitizer_common/sanitizer_stackdepot.cc
|
2014-11-19 18:43:11 +08:00
|
|
|
../../sanitizer_common/sanitizer_stacktrace.cc
|
2014-12-03 03:48:40 +08:00
|
|
|
../../sanitizer_common/sanitizer_symbolizer.cc
|
2012-07-06 00:18:28 +08:00
|
|
|
"
|
|
|
|
|
2012-11-06 21:32:53 +08:00
|
|
|
if [ "`uname -a | grep Linux`" != "" ]; then
|
|
|
|
SUFFIX="linux_amd64"
|
2014-06-21 06:53:43 +08:00
|
|
|
OSCFLAGS="-fPIC -ffreestanding -Wno-maybe-uninitialized -Wno-unused-const-variable -Werror -Wno-unknown-warning-option"
|
2012-11-07 00:00:16 +08:00
|
|
|
OSLDFLAGS="-lpthread -fPIC -fpie"
|
2012-07-16 21:02:40 +08:00
|
|
|
SRCS+="
|
|
|
|
../rtl/tsan_platform_linux.cc
|
2012-11-06 21:32:53 +08:00
|
|
|
../../sanitizer_common/sanitizer_posix.cc
|
2013-05-21 18:27:07 +08:00
|
|
|
../../sanitizer_common/sanitizer_posix_libcdep.cc
|
2014-08-07 07:13:23 +08:00
|
|
|
../../sanitizer_common/sanitizer_procmaps_common.cc
|
2013-12-25 16:56:08 +08:00
|
|
|
../../sanitizer_common/sanitizer_procmaps_linux.cc
|
2012-07-16 21:02:40 +08:00
|
|
|
../../sanitizer_common/sanitizer_linux.cc
|
2015-01-31 07:04:57 +08:00
|
|
|
../../sanitizer_common/sanitizer_linux_libcdep.cc
|
2013-10-04 01:14:35 +08:00
|
|
|
../../sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
|
2012-07-16 21:02:40 +08:00
|
|
|
"
|
2014-06-21 06:53:43 +08:00
|
|
|
elif [ "`uname -a | grep FreeBSD`" != "" ]; then
|
|
|
|
SUFFIX="freebsd_amd64"
|
|
|
|
OSCFLAGS="-fno-strict-aliasing -fPIC -Werror"
|
|
|
|
OSLDFLAGS="-lpthread -fPIC -fpie"
|
|
|
|
SRCS+="
|
|
|
|
../rtl/tsan_platform_linux.cc
|
|
|
|
../../sanitizer_common/sanitizer_posix.cc
|
|
|
|
../../sanitizer_common/sanitizer_posix_libcdep.cc
|
2014-08-07 07:13:23 +08:00
|
|
|
../../sanitizer_common/sanitizer_procmaps_common.cc
|
|
|
|
../../sanitizer_common/sanitizer_procmaps_freebsd.cc
|
2014-06-21 06:53:43 +08:00
|
|
|
../../sanitizer_common/sanitizer_linux.cc
|
2015-01-31 07:04:57 +08:00
|
|
|
../../sanitizer_common/sanitizer_linux_libcdep.cc
|
2014-06-21 06:53:43 +08:00
|
|
|
../../sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
|
|
|
|
"
|
2012-11-06 21:32:53 +08:00
|
|
|
elif [ "`uname -a | grep Darwin`" != "" ]; then
|
|
|
|
SUFFIX="darwin_amd64"
|
2014-06-21 06:53:43 +08:00
|
|
|
OSCFLAGS="-fPIC -Wno-unused-const-variable -Wno-unknown-warning-option"
|
2012-11-07 00:00:16 +08:00
|
|
|
OSLDFLAGS="-lpthread -fPIC -fpie"
|
2012-08-14 02:44:44 +08:00
|
|
|
SRCS+="
|
|
|
|
../rtl/tsan_platform_mac.cc
|
|
|
|
../../sanitizer_common/sanitizer_mac.cc
|
2013-12-25 16:56:08 +08:00
|
|
|
../../sanitizer_common/sanitizer_posix.cc
|
2013-06-06 21:00:32 +08:00
|
|
|
../../sanitizer_common/sanitizer_posix_libcdep.cc
|
2013-12-25 16:56:08 +08:00
|
|
|
../../sanitizer_common/sanitizer_procmaps_mac.cc
|
2012-08-14 02:44:44 +08:00
|
|
|
"
|
2012-11-06 21:32:53 +08:00
|
|
|
elif [ "`uname -a | grep MINGW`" != "" ]; then
|
|
|
|
SUFFIX="windows_amd64"
|
2014-06-21 06:53:43 +08:00
|
|
|
OSCFLAGS="-Wno-error=attributes -Wno-attributes -Wno-unused-const-variable -Wno-unknown-warning-option"
|
2012-11-06 21:32:53 +08:00
|
|
|
OSLDFLAGS=""
|
|
|
|
SRCS+="
|
|
|
|
../rtl/tsan_platform_windows.cc
|
|
|
|
../../sanitizer_common/sanitizer_win.cc
|
|
|
|
"
|
|
|
|
else
|
|
|
|
echo Unknown platform
|
|
|
|
exit 1
|
2012-07-16 21:02:40 +08:00
|
|
|
fi
|
|
|
|
|
2012-07-25 22:30:51 +08:00
|
|
|
SRCS+=$ADD_SRCS
|
2012-07-06 00:18:28 +08:00
|
|
|
|
|
|
|
rm -f gotsan.cc
|
|
|
|
for F in $SRCS; do
|
|
|
|
cat $F >> gotsan.cc
|
|
|
|
done
|
|
|
|
|
2015-01-19 23:01:07 +08:00
|
|
|
FLAGS=" -I../rtl -I../.. -I../../sanitizer_common -I../../../include -std=c++11 -m64 -Wall -fno-exceptions -fno-rtti -DSANITIZER_GO -DSANITIZER_DEADLOCK_DETECTOR_VERSION=2 $OSCFLAGS"
|
2012-07-06 00:18:28 +08:00
|
|
|
if [ "$DEBUG" == "" ]; then
|
2015-01-03 12:29:12 +08:00
|
|
|
FLAGS+=" -DSANITIZER_DEBUG=0 -O3 -msse3 -fomit-frame-pointer"
|
2012-07-06 00:18:28 +08:00
|
|
|
else
|
2015-01-03 12:29:12 +08:00
|
|
|
FLAGS+=" -DSANITIZER_DEBUG=1 -g"
|
2012-07-06 00:18:28 +08:00
|
|
|
fi
|
|
|
|
|
2014-06-06 23:49:49 +08:00
|
|
|
CC=${CC:-gcc}
|
2012-07-06 00:18:28 +08:00
|
|
|
|
2014-06-06 23:49:49 +08:00
|
|
|
echo $CC gotsan.cc -c -o race_$SUFFIX.syso $FLAGS $CFLAGS
|
|
|
|
$CC gotsan.cc -c -o race_$SUFFIX.syso $FLAGS $CFLAGS
|
|
|
|
|
|
|
|
$CC test.c race_$SUFFIX.syso -m64 -o test $OSLDFLAGS
|
2012-11-08 21:23:13 +08:00
|
|
|
GORACE="exitcode=0 atexit_sleep_ms=0" ./test
|