dub: clean the temporary folder instead of just the build folder

This commit is contained in:
Ernesto Castellotti 2019-07-05 15:06:11 +02:00 committed by GitHub
parent b9584e861f
commit f3efa1f672
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -10,8 +10,8 @@
{
"name" : "standard",
"preBuildCommands-posix" : [
"cd $PACKAGE_DIR && git clone --recursive https://github.com/ErnyTech/neomimalloc || true",
"cd $PACKAGE_DIR/neomimalloc/source/mimalloc && rm -rf build && mkdir build && cd build && cmake -DMI_OVERRIDE=OFF .. && make"
"cd $PACKAGE_DIR && rm -rf neomimalloc && git clone --recursive https://github.com/ErnyTech/neomimalloc",
"cd $PACKAGE_DIR/neomimalloc/source/mimalloc && mkdir build && cd build && cmake -DMI_OVERRIDE=OFF .. && make"
],
"libs-posix" : [
":libmimalloc.a"
@ -23,8 +23,8 @@
{
"name" : "secure",
"preBuildCommands-posix" : [
"cd $PACKAGE_DIR && git clone --recursive https://github.com/ErnyTech/neomimalloc || true",
"cd $PACKAGE_DIR/neomimalloc/source/mimalloc && rm -rf build && mkdir build && cd build && cmake -DMI_OVERRIDE=OFF -DMI_SECURE=ON .. && make"
"cd $PACKAGE_DIR && rm -rf neomimalloc && git clone --recursive https://github.com/ErnyTech/neomimalloc",
"cd $PACKAGE_DIR/neomimalloc/source/mimalloc && mkdir build && cd build && cmake -DMI_OVERRIDE=OFF -DMI_SECURE=ON .. && make"
],
"libs-posix" : [
":ibmimalloc-secure.a"
@ -36,8 +36,8 @@
{
"name" : "override-malloc",
"preBuildCommands-posix" : [
"cd $PACKAGE_DIR && git clone --recursive https://github.com/ErnyTech/neomimalloc || true",
"cd $PACKAGE_DIR/neomimalloc/source/mimalloc && rm -rf build && mkdir build && cd build && cmake -DMI_OVERRIDE=ON .. && make"
"cd $PACKAGE_DIR && rm -rf neomimalloc && git clone --recursive https://github.com/ErnyTech/neomimalloc",
"cd $PACKAGE_DIR/neomimalloc/source/mimalloc && mkdir build && cd build && cmake -DMI_OVERRIDE=ON .. && make"
],
"libs-posix" : [
":libmimalloc.a"
@ -49,8 +49,8 @@
{
"name" : "override-malloc-secure",
"preBuildCommands-posix" : [
"cd $PACKAGE_DIR && git clone --recursive https://github.com/ErnyTech/neomimalloc || true",
"cd $PACKAGE_DIR/neomimalloc/source/mimalloc && rm -rf build && mkdir build && cd build && cmake -DMI_OVERRIDE=ON -DMI_SECURE=ON .. && make"
"cd $PACKAGE_DIR && rm -rf neomimalloc && git clone --recursive https://github.com/ErnyTech/neomimalloc",
"cd $PACKAGE_DIR/neomimalloc/source/mimalloc && mkdir build && cd build && cmake -DMI_OVERRIDE=ON -DMI_SECURE=ON .. && make"
],
"libs-posix" : [
":ibmimalloc-secure.a"