Error modules #22915
WizdShadow
started this conversation in
Modules
Error modules
#22915
Replies: 1 comment
-
|
Did you ever figure out the cause of this? Having this same issue now after updating and attempting to build. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I wrote my module, how can I find out what the compiler complains about, I launch the server via docker
125.5 [ 99%] Built target game
127.8 [ 99%] Linking CXX static library libscripts.a
157.3 [ 99%] Built target scripts
157.3 gmake: *** [Makefile:136: all] Error 2
Dockerfile:83
82 |
83 | >>> RUN --mount=type=cache,target=/ccache,sharing=locked \
84 | >>> # This may seem silly (and it is), but AzerothCore wants the git repo at
85 | >>> # build time. The git repo is huge and it's not something that really
86 | >>> # makes sense to mount into the container, but this way we can let the build
87 | >>> # have the information it needs without including the hundreds of megabytes
88 | >>> # of git repo into the container.
89 | >>> --mount=type=bind,target=/azerothcore/.git,source=.git \
90 | >>> git config --global --add safe.directory /azerothcore \
91 | >>> && cmake /azerothcore \
92 | >>> -DCMAKE_INSTALL_PREFIX="/azerothcore/env/dist" \
93 | >>> -DAPPS_BUILD="all" \
94 | >>> -DTOOLS_BUILD="$CTOOLS_BUILD" \
95 | >>> -DSCRIPTS="$CSCRIPTS" \
96 | >>> -DMODULES="$CMODULES" \
97 | >>> -DWITH_WARNINGS="$CWITH_WARNINGS" \
98 | >>> -DCMAKE_BUILD_TYPE="$CTYPE" \
99 | >>> -DCMAKE_CXX_COMPILER="clang++" \
100 | >>> -DCMAKE_C_COMPILER="clang" \
101 | >>> -DCMAKE_CXX_COMPILER_LAUNCHER="ccache" \
102 | >>> -DCMAKE_C_COMPILER_LAUNCHER="ccache" \
103 | >>> -DBoost_USE_STATIC_LIBS="ON" \
104 | >>> && cmake --build . --config "$CTYPE" -j $(($(nproc) + 1)) \
105 | >>> && cmake --install . --config "$CTYPE"
106 |
target ac-authserver: failed to solve: process "/bin/sh -c git config --global --add safe.directory /azerothcore && cmake /azerothcore -DCMAKE_INSTALL_PREFIX="/azerothcore/env/dist" -DAPPS_BUILD="all" -DTOOLS_BUILD="$CTOOLS_BUILD" -DSCRIPTS="$CSCRIPTS" -DMODULES="$CMODULES" -DWITH_WARNINGS="$CWITH_WARNINGS" -DCMAKE_BUILD_TYPE="$CTYPE" -DCMAKE_CXX_COMPILER="clang++" -DCMAKE_C_COMPILER="clang" -DCMAKE_CXX_COMPILER_LAUNCHER="ccache" -DCMAKE_C_COMPILER_LAUNCHER="ccache" -DBoost_USE_STATIC_LIBS="ON" && cmake --build . --config "$CTYPE" -j $(($(nproc) + 1)) && cmake --install . --config "$CTYPE"" did not complete successfully: exit code: 2
View build details: docker-desktop://dashboard/build/desktop-linux/desktop-linux/bt68vpitfat5jtsu2yc43peaj
Beta Was this translation helpful? Give feedback.
All reactions