Skip to content

Commit 81b5542

Browse files
committed
remove MAKE and MAKE_INSTALL from config.sh
1 parent 1fd929c commit 81b5542

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

config-amdgpu.sh.template

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@
22
: ${BUILD_TYPE:=Debug}
33

44
: ${CMAKE_MAKE:=""}
5-
: ${MAKE:="make -j4"}
6-
: ${MAKE_INSTALL:="make install"}
75

86
# use this for ninja instead of make
97
#: ${CMAKE_MAKE:="-G Ninja -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DLLVM_PARALLEL_COMPILE_JOBS=4 -DLLVM_PARALLEL_LINK_JOBS=1"}
10-
#: ${MAKE:="ninja"}
11-
#: ${MAKE_INSTALL:="ninja install"}
128

139
# set this to true if you don't have a github account
1410
: ${HTTPS:=true}

config.sh.template

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@
22
: ${BUILD_TYPE:=Debug}
33

44
: ${CMAKE_MAKE:=""}
5-
: ${MAKE:="make -j4"}
6-
: ${MAKE_INSTALL:="make install"}
75

86
# use this for ninja instead of make
97
#: ${CMAKE_MAKE:="-G Ninja -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DLLVM_PARALLEL_COMPILE_JOBS=4 -DLLVM_PARALLEL_LINK_JOBS=1"}
10-
#: ${MAKE:="ninja"}
11-
#: ${MAKE_INSTALL:="ninja install"}
128

139
# set this to true if you don't have a github account
1410
: ${HTTPS:=true}

setup.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ source config.sh
4040

4141
CUR=`pwd`
4242

43+
MAKE="cmake --build . --config ${BUILD_TYPE}"
44+
MAKE_INSTALL="cmake --install . --config ${BUILD_TYPE}"
45+
4346
function remote {
4447
if $HTTPS; then
4548
echo "https://github.com/$1"

0 commit comments

Comments
 (0)