Skip to content

Instantly share code, notes, and snippets.

@astarasikov
Created September 27, 2016 21:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save astarasikov/6146dbbd07d0dc3bea2ee6a8b979eaa8 to your computer and use it in GitHub Desktop.
Save astarasikov/6146dbbd07d0dc3bea2ee6a8b979eaa8 to your computer and use it in GitHub Desktop.
diff --git a/configure.ac b/configure.ac
index 75b1de4..5d1f7ee 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2179,7 +2179,7 @@ if test "x$enable_gallium_llvm" = xyes; then
if test -n "${LLVM_VERSION_MAJOR}"; then
LLVM_VERSION_INT="${LLVM_VERSION_MAJOR}0${LLVM_VERSION_MINOR}"
else
- LLVM_VERSION_INT=`echo $LLVM_VERSION | sed -e 's/\([[0-9]]\)\.\([[0-9]]\)/\10\2/g'`
+ LLVM_VERSION_INT=`echo $LLVM_VERSION | sed -e 's/\([[0-9]]\)\.\([[0-9]]\).*/\10\2/g'`
fi
LLVM_REQUIRED_VERSION_MAJOR="3"
diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c
index 8f9e6f5..d2aa98d 100644
--- a/src/gallium/drivers/radeonsi/si_pipe.c
+++ b/src/gallium/drivers/radeonsi/si_pipe.c
@@ -733,6 +733,7 @@ static void si_handle_env_var_force_family(struct si_screen *sscreen)
{
const char *family = debug_get_option("SI_FORCE_FAMILY", NULL);
unsigned i;
+ sscreen->b.chip_class = sscreen->b.info.chip_class = VI;
if (!family)
return;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment