mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-11 04:06:20 +00:00
[libcxx] [ci] Check that Windows static libraries don't contain dllexports
Differential Revision: https://reviews.llvm.org/D121164
This commit is contained in:
parent
d04d2d43d7
commit
b37b5e51a1
19
libcxx/test/libcxx/vendor/clang-cl/static-lib-exports.sh.cpp
vendored
Normal file
19
libcxx/test/libcxx/vendor/clang-cl/static-lib-exports.sh.cpp
vendored
Normal file
@ -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
|
19
libcxx/test/libcxx/vendor/mingw/static-lib-exports.sh.cpp
vendored
Normal file
19
libcxx/test/libcxx/vendor/mingw/static-lib-exports.sh.cpp
vendored
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user