Wrapper around test applications for cross compiler environment in meson.build (...
authorRudi Heitbaum <rudi@heitbaum.com>
Tue, 13 Jun 2023 10:02:01 +0000 (20:02 +1000)
committerGitHub <noreply@github.com>
Tue, 13 Jun 2023 10:02:01 +0000 (11:02 +0100)
This enhances commit 7be56c57f93e3436b1fbd9ecc320de5c03a3e4b8 to allow build
fuse to be built using a cross compiler

Fixes:
../meson.build:180:12: ERROR: Can not run test applications in this cross environment.

meson.build

index 7aa4e0d47d63f0cdc49f325e655c8ebfc20df214..9707ea3e228240c3a18dddaf4902d66e6fdbc4d3 100644 (file)
@@ -177,10 +177,12 @@ int main()
 }
 '''
 
-result = cc.run(detect_getmntent_needs_unescape)
-if result.compiled() and result.returncode() == 0 and result.stdout().strip() == 'needs escaping'
-  message('getmntent does not unescape')
-  add_project_arguments('-DGETMNTENT_NEEDS_UNESCAPING', language: 'c')
+if not meson.is_cross_build()
+  result = cc.run(detect_getmntent_needs_unescape)
+  if result.compiled() and result.returncode() == 0 and result.stdout().strip() == 'needs escaping'
+    message('getmntent does not unescape')
+    add_project_arguments('-DGETMNTENT_NEEDS_UNESCAPING', language: 'c')
+  endif
 endif
 
 # Write private test results into fuse_config.h (stored in build directory)