diff options
author | Dmitry Vyukov <dvyukov@google.com> | 2014-02-04 17:52:41 +0000 |
---|---|---|
committer | Dmitry Vyukov <dvyukov@google.com> | 2014-02-04 17:52:41 +0000 |
commit | d7fcee8d8c4297731bd70e7faf2594da9048f96d (patch) | |
tree | 9a2c4df5dcf0cd8f33f8914ee41a5a00a95a2a8b | |
parent | a61c2b0bd5a3dc53dd1b3f8d905cf4b45a09bafd (diff) | |
download | bcm5719-llvm-d7fcee8d8c4297731bd70e7faf2594da9048f96d.tar.gz bcm5719-llvm-d7fcee8d8c4297731bd70e7faf2594da9048f96d.zip |
tsan: add windows native build script
llvm-svn: 200780
-rw-r--r-- | compiler-rt/lib/tsan/go/build.bat | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler-rt/lib/tsan/go/build.bat b/compiler-rt/lib/tsan/go/build.bat new file mode 100644 index 00000000000..2cbd6ac7ef5 --- /dev/null +++ b/compiler-rt/lib/tsan/go/build.bat @@ -0,0 +1,4 @@ +type tsan_go.cc ..\rtl\tsan_clock.cc ..\rtl\tsan_flags.cc ..\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 ..\rtl\tsan_stat.cc ..\rtl\tsan_suppressions.cc ..\rtl\tsan_sync.cc ..\..\sanitizer_common\sanitizer_allocator.cc ..\..\sanitizer_common\sanitizer_common.cc ..\..\sanitizer_common\sanitizer_flags.cc ..\..\sanitizer_common\sanitizer_stacktrace.cc ..\..\sanitizer_common\sanitizer_libc.cc ..\..\sanitizer_common\sanitizer_printf.cc ..\..\sanitizer_common\sanitizer_suppressions.cc ..\..\sanitizer_common\sanitizer_thread_registry.cc ..\rtl\tsan_platform_windows.cc ..\..\sanitizer_common\sanitizer_win.cc > gotsan.cc + +gcc -c -o race_windows_amd64.syso gotsan.cc -I..\rtl -I..\.. -I..\..\sanitizer_common -I..\..\..\include -m64 -Wall -fno-exceptions -fno-rtti -DTSAN_GO -DSANITIZER_GO -DTSAN_SHADOW_COUNT=4 -Wno-error=attributes -Wno-attributes -Wno-format -DTSAN_DEBUG=0 -O3 -fomit-frame-pointer + |