Skip to content

Commit

Permalink
Fix[build]: change path ordering
Browse files Browse the repository at this point in the history
Makes clang prefer using the NDK linker instead of the one that the OS has
  • Loading branch information
artdeell committed Jul 13, 2024
1 parent 434ee7a commit 8c8aa36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci_build_android.bash
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ elif [ "$LWJGL_BUILD_ARCH" == "x64" ]; then
fi

export TARGET=$NDK_TARGET-linux-android$NDK_SUFFIX
export PATH=$PATH:$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin
export PATH=$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH

LWJGL_NATIVE=bin/libs/native/linux/$LWJGL_BUILD_ARCH/org/lwjgl
mkdir -p $LWJGL_NATIVE
Expand Down

0 comments on commit 8c8aa36

Please sign in to comment.