Skip to content
Snippets Groups Projects
Commit 6c291e82 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: add -Wno-psabi

parent 151db45a
No related branches found
No related tags found
1 merge request!491fix: add -Wno-psabi
......@@ -122,6 +122,7 @@ if __name__ == '__main__':
detector=proj),
'&&',
'cmake -B /tmp/build -S /tmp/det -DCMAKE_CXX_STANDARD=17',
'-DCMAKE_CXX_FLAGS="-Wno-psabi"',
'-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache',
'-DCMAKE_INSTALL_PREFIX={prefix}'.format(prefix=prefix),
'&&',
......
......@@ -30,6 +30,7 @@ RUN --mount=type=cache,target=/ccache/
&& git clone -b ${JUGGLER_VERSION} --depth 1 \
https://eicweb.phy.anl.gov/EIC/juggler.git \
&& cmake -B build -S juggler \
-DCMAKE_CXX_FLAGS="-Wno-psabi" \
-DCMAKE_CXX_STANDARD=17 \
-DCMAKE_INSTALL_PREFIX=/usr/local \
-DCMAKE_BUILD_TYPE=Release \
......@@ -48,6 +49,7 @@ RUN --mount=type=cache,target=/ccache/
&& git clone -b ${EICRECON_VERSION} --depth 1 \
https://github.com/eic/eicrecon.git \
&& cmake -B build -S eicrecon \
-DCMAKE_CXX_FLAGS="-Wno-psabi" \
-DCMAKE_CXX_STANDARD=17 \
-DCMAKE_INSTALL_PREFIX=/usr/local \
-DCMAKE_BUILD_TYPE=Release \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment