[PATCH] D148992: [clang-repl] Fix dynamic library test to avoid cstdio and linker
Anubhab Ghosh via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 25 20:49:27 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7f96ce5e133b: [clang-repl] Fix dynamic library test to avoid cstdio and linker (authored by argentite).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D148992/new/
https://reviews.llvm.org/D148992
Files:
clang/test/Interpreter/Inputs/dynamic-library-test.cpp
clang/test/Interpreter/Inputs/libdynamic-library-test.so
clang/test/Interpreter/dynamic-library.cpp
Index: clang/test/Interpreter/dynamic-library.cpp
===================================================================
--- clang/test/Interpreter/dynamic-library.cpp
+++ clang/test/Interpreter/dynamic-library.cpp
@@ -1,13 +1,25 @@
// REQUIRES: host-supports-jit, system-linux
-// UNSUPPORTED: target={{.*-(ps4|ps5)}}
-// RUN: %clang -xc++ -o %T/libdynamic-library-test.so -fPIC -shared -DLIBRARY %S/Inputs/dynamic-library-test.cpp
-// RUN: cat %s | env LD_LIBRARY_PATH=%T:$LD_LIBRARY_PATH clang-repl | FileCheck %s
+// To generate libdynamic-library-test.so :
+// clang -xc++ -o libdynamic-library-test.so -fPIC -shared
+//
+// extern "C" {
+//
+// int ultimate_answer = 0;
+//
+// int calculate_answer() {
+// ultimate_answer = 42;
+// return 5;
+// }
+//
+// }
-#include <cstdio>
+// RUN: cat %s | env LD_LIBRARY_PATH=%S/Inputs:$LD_LIBRARY_PATH clang-repl | FileCheck %s
-extern int ultimate_answer;
-int calculate_answer();
+extern "C" int printf(const char* format, ...);
+
+extern "C" int ultimate_answer;
+extern "C" int calculate_answer();
%lib libdynamic-library-test.so
Index: clang/test/Interpreter/Inputs/dynamic-library-test.cpp
===================================================================
--- clang/test/Interpreter/Inputs/dynamic-library-test.cpp
+++ /dev/null
@@ -1,6 +0,0 @@
-int ultimate_answer = 0;
-
-int calculate_answer() {
- ultimate_answer = 42;
- return 5;
-}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D148992.517035.patch
Type: text/x-patch
Size: 1409 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230426/79d91413/attachment.bin>
More information about the cfe-commits
mailing list