[DiscordArchive] What's the best way to only clear the ccache when your in the build environment?
[DiscordArchive] What's the best way to only clear the ccache when your in the build environment?
Archived author: opcode • Posted: 2022-01-20T15:13:23.400000+00:00
Original source
What's the best way to only clear the ccache when your in the build environment?
Archived author: opcode • Posted: 2022-01-20T15:13:38.065000+00:00
Original source
is make clean the only way or is there a better way?
Archived author: Phthisicus • Posted: 2022-01-20T15:19:54.455000+00:00
Original source
do you run this as 1 command? cd /azerothcore/var/build/obj/src; make clean; make -j; exit;
Archived author: opcode • Posted: 2022-01-20T15:24:02.849000+00:00
Original source
no i just did that so it didn't have to post multiple messages (speaking of that is there a way to post a multi line comment in discord?)
Archived author: opcode • Posted: 2022-01-20T15:24:25.311000+00:00
Original source
but in theory it could be ran as 1 command too
Archived author: Roboto • Posted: 2022-01-20T15:30:02.740000+00:00
Original source
Shift+Enter for multiline messages
Archived author: Phthisicus • Posted: 2022-01-20T16:48:52.859000+00:00
Original source
Thnx! I will try it out tomorrow
Archived author: Phthisicus • Posted: 2022-01-20T16:50:22.406000+00:00
Original source
It has worked for me with the floowing commandos:
docker system prune -f -a --volumes
git pull origin master
./acore.sh docker dev:dash compiler ccacheClean
./acore.sh docker build
Archived author: Phthisicus • Posted: 2022-01-20T16:50:46.599000+00:00
Original source
After this redeploy the container
Archived author: opcode • Posted: 2022-01-20T17:06:31.057000+00:00
Original source
ok, I copied that stuff down, if it gives me the .pch errors I'll try that