[libcxx-commits] [libcxx] b37b5e5 - [libcxx] [ci] Check that Windows static libraries don't contain dllexports

Martin Storsjö via libcxx-commits libcxx-commits at lists.llvm.org
Mon Mar 21 02:24:07 PDT 2022


Author: Martin Storsjö
Date: 2022-03-21T11:22:34+02:00
New Revision: b37b5e51a142d8b07a4965ad0ac96496cebab7a4

URL: https://github.com/llvm/llvm-project/commit/b37b5e51a142d8b07a4965ad0ac96496cebab7a4
DIFF: https://github.com/llvm/llvm-project/commit/b37b5e51a142d8b07a4965ad0ac96496cebab7a4.diff

LOG: [libcxx] [ci] Check that Windows static libraries don't contain dllexports

Differential Revision: https://reviews.llvm.org/D121164

Added: 
    libcxx/test/libcxx/vendor/clang-cl/static-lib-exports.sh.cpp
    libcxx/test/libcxx/vendor/mingw/static-lib-exports.sh.cpp

Modified: 
    

Removed: 
    


################################################################################
diff  --git a/libcxx/test/libcxx/vendor/clang-cl/static-lib-exports.sh.cpp b/libcxx/test/libcxx/vendor/clang-cl/static-lib-exports.sh.cpp
new file mode 100644
index 0000000000000..35f2221bf1c25
--- /dev/null
+++ b/libcxx/test/libcxx/vendor/clang-cl/static-lib-exports.sh.cpp
@@ -0,0 +1,19 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+// REQUIRES: msvc
+
+// This file checks that the built static library doesn't contain dllexport
+// directives in clang-cl builds.
+
+// RUN: llvm-readobj --coff-directives "%{lib}/libc++.lib" | not grep -i "export:" > /dev/null
+
+// It's a known issue, that when building a shared library at the same time
+// as the static library, the generated static library does contain dllexport
+// directives.
+// XFAIL: windows-dll

diff  --git a/libcxx/test/libcxx/vendor/mingw/static-lib-exports.sh.cpp b/libcxx/test/libcxx/vendor/mingw/static-lib-exports.sh.cpp
new file mode 100644
index 0000000000000..7af240ebe2854
--- /dev/null
+++ b/libcxx/test/libcxx/vendor/mingw/static-lib-exports.sh.cpp
@@ -0,0 +1,19 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+// REQUIRES: target={{.+}}-windows-gnu
+
+// This file checks that the built static library doesn't contain dllexport
+// directives in MinGW builds.
+
+// RUN: llvm-readobj --coff-directives "%{lib}/libc++.a" | not grep -i "export:" > /dev/null
+
+// It's a known issue, that when building a shared library at the same time
+// as the static library, the generated static library does contain dllexport
+// directives.
+// XFAIL: windows-dll


        


More information about the libcxx-commits mailing list