Tarantool development patches archive
 help / color / mirror / Atom feed
* [Tarantool-patches] [PATCH luajit] cmake: fixup tests build for old CMake
@ 2026-04-06 13:04 Sergey Kaplun via Tarantool-patches
  2026-04-07 10:15 ` Sergey Bronnikov via Tarantool-patches
  0 siblings, 1 reply; 2+ messages in thread
From: Sergey Kaplun via Tarantool-patches @ 2026-04-06 13:04 UTC (permalink / raw)
  To: Sergey Bronnikov; +Cc: tarantool-patches

This patch is a follow-up to the commit
1e5887d884be92c24ebd7c9db0a9b21ea366a0b5 ("FFI: Avoid dangling
cts->L."). The `target_link_options()` feature is introduced in CMake
3.13. Unfortunately, we have distros in Tarantool's CI with an older
default CMake version.

This patch workarounds this by the passing `LINK_FLAGS` directly.
---

Branch: https://github.com/tarantool/luajit/tree/skaplun/fix-old-cmakes

 test/tarantool-c-tests/CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/tarantool-c-tests/CMakeLists.txt b/test/tarantool-c-tests/CMakeLists.txt
index 3bb20bff..ea553db8 100644
--- a/test/tarantool-c-tests/CMakeLists.txt
+++ b/test/tarantool-c-tests/CMakeLists.txt
@@ -56,11 +56,11 @@ foreach(test_source ${tests})
   )
   set_target_properties(${exe} PROPERTIES
     COMPILE_FLAGS "${TESTS_C_FLAGS}"
+    # Allow to call non-static functions via FFI.
+    LINK_FLAGS "-rdynamic"
     OUTPUT_NAME "${exe}${C_TEST_SUFFIX}"
     RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
   )
-  # Allow to call non-static functions via FFI.
-  target_link_options(${exe} PRIVATE "-rdynamic")
   target_link_libraries(${exe} libtest ${LUAJIT_LIBRARY})
   add_dependencies(tarantool-c-tests-build ${exe})
 
-- 
2.53.0


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Tarantool-patches] [PATCH luajit] cmake: fixup tests build for old CMake
  2026-04-06 13:04 [Tarantool-patches] [PATCH luajit] cmake: fixup tests build for old CMake Sergey Kaplun via Tarantool-patches
@ 2026-04-07 10:15 ` Sergey Bronnikov via Tarantool-patches
  0 siblings, 0 replies; 2+ messages in thread
From: Sergey Bronnikov via Tarantool-patches @ 2026-04-07 10:15 UTC (permalink / raw)
  To: Sergey Kaplun; +Cc: tarantool-patches

[-- Attachment #1: Type: text/plain, Size: 1410 bytes --]

Hi, Sergey,

Thanks for the patch! LGTM

Sergey

On 4/6/26 16:04, Sergey Kaplun wrote:
> This patch is a follow-up to the commit
> 1e5887d884be92c24ebd7c9db0a9b21ea366a0b5 ("FFI: Avoid dangling
> cts->L."). The `target_link_options()` feature is introduced in CMake
> 3.13. Unfortunately, we have distros in Tarantool's CI with an older
> default CMake version.
>
> This patch workarounds this by the passing `LINK_FLAGS` directly.
> ---
>
> Branch:https://github.com/tarantool/luajit/tree/skaplun/fix-old-cmakes
>
>   test/tarantool-c-tests/CMakeLists.txt | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/test/tarantool-c-tests/CMakeLists.txt b/test/tarantool-c-tests/CMakeLists.txt
> index 3bb20bff..ea553db8 100644
> --- a/test/tarantool-c-tests/CMakeLists.txt
> +++ b/test/tarantool-c-tests/CMakeLists.txt
> @@ -56,11 +56,11 @@ foreach(test_source ${tests})
>     )
>     set_target_properties(${exe} PROPERTIES
>       COMPILE_FLAGS "${TESTS_C_FLAGS}"
> +    # Allow to call non-static functions via FFI.
> +    LINK_FLAGS "-rdynamic"
>       OUTPUT_NAME "${exe}${C_TEST_SUFFIX}"
>       RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
>     )
> -  # Allow to call non-static functions via FFI.
> -  target_link_options(${exe} PRIVATE "-rdynamic")
>     target_link_libraries(${exe} libtest ${LUAJIT_LIBRARY})
>     add_dependencies(tarantool-c-tests-build ${exe})
>   

[-- Attachment #2: Type: text/html, Size: 1914 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-04-07 10:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-04-06 13:04 [Tarantool-patches] [PATCH luajit] cmake: fixup tests build for old CMake Sergey Kaplun via Tarantool-patches
2026-04-07 10:15 ` Sergey Bronnikov via Tarantool-patches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox