gh-140454: Normalize the JIT stencils filename on Linux to avoid mismatches between the Makefile and the generator (#140823)
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
When building the JIT, match the jit_stencils filename expectations in
|
||||
Makefile with the generator script. This avoid needless JIT recompilation
|
||||
during ``make install``.
|
||||
4
configure
generated
vendored
4
configure
generated
vendored
@@ -34327,10 +34327,10 @@ else case e in #(
|
||||
JIT_STENCILS_H="jit_stencils-x86_64-pc-windows-msvc.h"
|
||||
;;
|
||||
aarch64-*-linux-gnu)
|
||||
JIT_STENCILS_H="jit_stencils-$host.h"
|
||||
JIT_STENCILS_H="jit_stencils-aarch64-unknown-linux-gnu.h"
|
||||
;;
|
||||
x86_64-*-linux-gnu)
|
||||
JIT_STENCILS_H="jit_stencils-$host.h"
|
||||
JIT_STENCILS_H="jit_stencils-x86_64-unknown-linux-gnu.h"
|
||||
;;
|
||||
esac ;;
|
||||
esac
|
||||
|
||||
@@ -8219,10 +8219,10 @@ AS_VAR_IF([enable_experimental_jit], [no],
|
||||
JIT_STENCILS_H="jit_stencils-x86_64-pc-windows-msvc.h"
|
||||
;;
|
||||
aarch64-*-linux-gnu)
|
||||
JIT_STENCILS_H="jit_stencils-$host.h"
|
||||
JIT_STENCILS_H="jit_stencils-aarch64-unknown-linux-gnu.h"
|
||||
;;
|
||||
x86_64-*-linux-gnu)
|
||||
JIT_STENCILS_H="jit_stencils-$host.h"
|
||||
JIT_STENCILS_H="jit_stencils-x86_64-unknown-linux-gnu.h"
|
||||
;;
|
||||
esac])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user