You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Add compiler flags directly to the make command with diagnostics
136
+
echo "# Run make with explicit C++20 flags for GCC-11" >> docker/modified/Dockerfile.builder
137
+
echo "RUN cd /opt/biogears/core/build && CXXFLAGS='-std=gnu++20 -fconcepts' make install || true" >> docker/modified/Dockerfile.builder
124
138
125
139
# Add debugging commands to verify directory permissions
126
140
echo "RUN ls -la /opt/biogears/core/build/projects/biogears/generated/Release/biogears/schema/cdm || echo 'Directory does not exist yet'" >> docker/modified/Dockerfile.builder
echo "# Run make with explicit C++20 flags" >> docker/modified/Dockerfile.builder
175
-
echo "RUN cd /opt/biogears/core/build && CXXFLAGS='-std=c++20 -fconcepts' make install || true" >> docker/modified/Dockerfile.builder
201
+
# Add compiler flags directly to the make command with diagnostics
202
+
echo "# Run make with explicit C++20 flags for GCC-11" >> docker/modified/Dockerfile.builder
203
+
echo "RUN cd /opt/biogears/core/build && CXXFLAGS='-std=gnu++20 -fconcepts' make install || true" >> docker/modified/Dockerfile.builder
176
204
177
205
# Add debugging commands to verify directory permissions
178
206
echo "RUN ls -la /opt/biogears/core/build/projects/biogears/generated/Release/biogears/schema/cdm || echo 'Directory does not exist yet'" >> docker/modified/Dockerfile.builder
0 commit comments