Files
azerothcore-wotlk-pbot/apps/compiler
Yehonal e4016823d7 feat(CORE): docker permissions and rework (#13454)
- fix docker permissions with mounted volumes on new docker versions (https://github.com/docker/desktop-linux/issues/31)
- fix ac-tools image
- cleanup unused env
- add  `cap_add: SYS_NICE` to allow setting process high priority
- fix ccache in docker
- allow to switch between root user (default) to acore user in any container
- fix cache of the downloaded client data
- split docker github actions in 2 parts
- versioning mysql images
- performance improvements
2022-11-07 13:20:48 +01:00
..

How to compile:

first of all, if you need some custom configuration you have to copy /conf/dist/config.sh in /conf/config.sh and configure it

  • for a "clean" compilation you must run all scripts in their order:

      ./1-clean.sh
      ./2-configure.sh
      ./3-build.sh
    
  • if you add/rename/delete some sources and you need to compile it you have to run:

      ./2-configure.sh
      ./3-build.sh
    
  • if you have modified code only, you just need to run

      ./3-build.sh
    

compiler.sh

compiler.sh script contains an interactive menu to clean/compile/build. You can also run actions directly by command lines specifying the option. Ex: ./compiler.sh 3

It will start the build process (it's equivalent to ./3-build.sh)

Note:

For an optimal development process and really faster compilation time, is suggested to use clang instead of gcc