File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ jobs:
128
128
DEBIAN_FRONTEND : noninteractive
129
129
run : |
130
130
sudo apt-get update
131
- sudo apt-get install --no-install-recommends -yq cmake ninja-build gcc g++ maven flex bison libxml2-utils dpkg-dev ccache doxygen z3
131
+ sudo apt-get install --no-install-recommends -yq cmake ninja-build gcc gdb g++ maven flex bison libxml2-utils dpkg-dev ccache doxygen z3
132
132
- name : Prepare ccache
133
133
uses : actions/cache@v2
134
134
with :
@@ -427,7 +427,7 @@ jobs:
427
427
- name : Fetch dependencies
428
428
run : |
429
429
sudo apt-get update
430
- sudo apt-get install --no-install-recommends -y g++ flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache
430
+ sudo apt-get install --no-install-recommends -y g++ gdb flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache
431
431
# remove libgcc-s1, which isn't normally available in Ubuntu 18.04
432
432
target=$(dpkg-query -W --showformat='${Version}\n' gcc-8-base | head -n 1)
433
433
# libgcc1 uses an epoch, thus the extra 1:
@@ -513,7 +513,7 @@ jobs:
513
513
DEBIAN_FRONTEND : noninteractive
514
514
run : |
515
515
sudo apt-get update
516
- sudo apt-get install --no-install-recommends -y g++ gcc binutils flex bison cmake maven jq libxml2-utils openjdk-11-jdk-headless lcov ccache z3
516
+ sudo apt-get install --no-install-recommends -y g++ gcc gdb binutils flex bison cmake maven jq libxml2-utils openjdk-11-jdk-headless lcov ccache z3
517
517
- name : Prepare ccache
518
518
uses : actions/cache@v2
519
519
with :
Original file line number Diff line number Diff line change 13
13
with :
14
14
submodules : recursive
15
15
- name : Fetch dependencies
16
- run : sudo apt-get install --no-install-recommends -y g++ flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache
16
+ run : sudo apt-get install --no-install-recommends -y g++ gdb flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache
17
17
- name : Prepare ccache
18
18
uses : actions/cache@v2
19
19
with :
70
70
submodules : recursive
71
71
- name : Fetch dependencies
72
72
run : |
73
- sudo apt-get install --no-install-recommends -y g++ flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache
73
+ sudo apt-get install --no-install-recommends -y g++ gdb flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache
74
74
# remove libgcc-s1, which isn't normally available in Ubuntu 18.04
75
75
target=$(dpkg-query -W --showformat='${Version}\n' gcc-8-base | head -n 1)
76
76
# libgcc1 uses an epoch, thus the extra 1:
Original file line number Diff line number Diff line change @@ -182,17 +182,14 @@ function(cprover_default_properties)
182
182
XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY ${CBMC_XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY} )
183
183
endfunction ()
184
184
185
- option (WITH_MEMORY_ANALYZER OFF
186
- "build the memory analyzer" )
187
-
188
185
if (CMAKE_SYSTEM_NAME STREQUAL Linux )
189
186
set (WITH_MEMORY_ANALYZER_DEFAULT ON )
190
187
else ()
191
188
set (WITH_MEMORY_ANALYZER_DEFAULT OFF )
192
189
endif ()
193
190
194
- option (WITH_MEMORY_ANALYZER ${WITH_MEMORY_ANALYZER_DEFAULT}
195
- "build the memory analyzer" )
191
+ option (WITH_MEMORY_ANALYZER
192
+ "build the memory analyzer" ${WITH_MEMORY_ANALYZER_DEFAULT} )
196
193
197
194
add_subdirectory (src )
198
195
add_subdirectory (regression )
You can’t perform that action at this time.
0 commit comments