Skip to content

Commit

Permalink
Merge branch 'aomp-epsdb' into aomp-epsdb-mainline
Browse files Browse the repository at this point in the history
Change-Id: I0b212d68b201064b39429aa99a972cfac75b020a
  • Loading branch information
estewart08 committed Oct 7, 2022
2 parents 4590916 + 612c140 commit 5f3f5f4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/aomp_common_vars
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ fi

# Set list of default amdgcn subarchitectures to build
# Developers may override GFXLIST to shorten build time.
GFXLIST=${GFXLIST:-"gfx700 gfx701 gfx801 gfx803 gfx900 gfx902 gfx906 gfx908 gfx90a gfx1030 gfx1031"}
GFXLIST=${GFXLIST:-"gfx700 gfx701 gfx801 gfx803 gfx900 gfx902 gfx906 gfx908 gfx90a gfx1030 gfx1031 gfx1100 gfx1101 gfx1102 gfx1103"}
export GFXLIST

# Calculate the number of threads to use for make
Expand Down
7 changes: 6 additions & 1 deletion bin/build_extras.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,12 @@ if [ "$1" != "nocmake" ] && [ "$1" != "install" ] ; then
mkdir -p $BUILD_DIR/build/extras
cd $BUILD_DIR/build/extras

SED_INSTALL_DIR=`echo $INSTALL_EXTRAS | sed -e 's/\//\\\\\//g' `
if [ $AOMP_STANDALONE_BUILD == 0 ] ; then
SED_INSTALL_DIR=`echo /opt/rocm/llvm | sed -e 's/\//\\\\\//g' `
else
SED_INSTALL_DIR=`echo $INSTALL_EXTRAS | sed -e 's/\//\\\\\//g' `
fi

export SED_INSTALL_DIR
echo
echo " -----Running cmake ---- "
Expand Down

0 comments on commit 5f3f5f4

Please sign in to comment.