File: skip_runpath.patch

package info (click to toggle)
fenics-basix 0.10.0.post0-1exp2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 3,144 kB
  • sloc: cpp: 23,435; python: 10,829; makefile: 40; sh: 26
file content (13 lines) | stat: -rw-r--r-- 508 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
Index: fenics-basix/python/CMakeLists.txt
===================================================================
--- fenics-basix.orig/python/CMakeLists.txt	2025-11-11 23:47:52.419586205 +0100
+++ fenics-basix/python/CMakeLists.txt	2025-11-11 23:48:25.191336654 +0100
@@ -7,6 +7,8 @@
 
 project(basix_nanobind VERSION "0.10.0" LANGUAGES CXX)
 
+set(CMAKE_SKIP_RPATH TRUE)
+
 if (WIN32)
     # Windows requires all symbols to be manually exported.
     # This flag exports all symbols automatically, as in Unix.