Skip to content

Commit 109834f

Browse files
committed
build_openroad: fix quoting issue
Now things like the below work: ./build_openroad.sh --local --latest --openroad-args '-D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_CXX_FLAGS="-O0 -g"' Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 7fd48d0 commit 109834f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_openroad.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ __local_build()
275275
${NICE} make install -C tools/yosys -j "${PROC}" ${YOSYS_ARGS}
276276

277277
echo "[INFO FLW-0018] Compiling OpenROAD."
278-
${NICE} cmake tools/OpenROAD -B tools/OpenROAD/build ${OPENROAD_APP_ARGS}
278+
${NICE} cmake tools/OpenROAD -B tools/OpenROAD/build "${OPENROAD_APP_ARGS}"
279279
${NICE} cmake --build tools/OpenROAD/build --target install -j "${PROC}"
280280

281281
if [ ! -z "${LSORACLE_ENABLE+x}" ]; then

0 commit comments

Comments
 (0)