Skip to content

Commit

Permalink
Fixed issue with new glog update
Browse files Browse the repository at this point in the history
  • Loading branch information
william-eiers committed Mar 21, 2024
1 parent 7da45e2 commit 6f17f6e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
6 changes: 3 additions & 3 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Installation Instructions
*************************

Copyright (C) 1994-1996, 1999-2002, 2004-2016 Free Software
Foundation, Inc.
Copyright (C) 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free
Software Foundation, Inc.

Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
Expand Down Expand Up @@ -225,7 +225,7 @@ order to use an ANSI C compiler:

and if that doesn't work, install pre-built binaries of GCC for HP-UX.

HP-UX 'make' updates targets which have the same time stamps as their
HP-UX 'make' updates targets which have the same timestamps as their
prerequisites, which makes it generally unusable when shipped generated
files such as 'configure' are involved. Use GNU 'make' instead.

Expand Down
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Publications

ABC algorithmic details:
------------
- **ASE'19**, (Accepted, to appear in proceedings) [Subformula Caching for Model Counting and Quantitative Program Analysis](). William Eiers, Seemanta Saha, Tegan Brennan, Tevfik Bultan.
- **ASE'19**, [Subformula Caching for Model Counting and Quantitative Program Analysis](). William Eiers, Seemanta Saha, Tegan Brennan, Tevfik Bultan.
[Download experimental data and results]().

- **FSE'18**, [Parameterized Model Counting for String and Numeric Constraints](https://dl.acm.org/citation.cfm?doid=3236024.3236064). Abdulbaki Aydin, William Eiers, Lucas Bang, Tegan Brennan, Miroslav Gavrilov, Tevfik Bultan, Fang Yu.
Expand All @@ -20,6 +20,17 @@ ABC algorithmic details:

ABC use cases:
------------
- **ATVA' 23** [Better Predicates and Heuristics for Improved Commutativity Synthesis](https://link.springer.com/chapter/10.1007/978-3-031-45332-8_5). Adam Chen, Parisa Fathololumi, Mihai Nicola, Jared Pincus, Tegan Brennan, Eric Koskinen.

- **ISSTA' 23** [Quantitative Policy Repair for Access Control on the Cloud](https://dl.acm.org/doi/10.1145/3597926.3598078). William Eiers, Ganesh Sankaran, Tevfik Bultan.

- **ISSTA' 23** [Rare Path Guided Fuzzing](https://dl.acm.org/doi/pdf/10.1145/3597926.3598136). Seemanta Saha, Laboni Sarker, Md Shafiuzzaman, Chaofan Shou, Albert Li, Ganesh Sankaran, Tevfik Bultan.

- **ASE' 22** [Quacky: Quantitative Access Control Permissiveness Analyzer](https://dl.acm.org/doi/abs/10.1145/3551349.3559530). William Eiers, Ganesh Sankaran, Albert Li, Emily O'Mahoney, Benjamin Prince, Tevfik Bultan.

- **ICSE' 22** [Quantifying Permissiveness of Access Control Policies](https://vlab.cs.ucsb.edu/papers/ICSE2022_access_control.pdf). William Eiers, Ganesh Sankaran, Albert Li, Emily O'Mahoney, Benjamin Prince, Tevfik Bultan.

- **ICSE' 22** [PReach: A Heuristic for Probabilistic Reachability to Identify Hard to Reach Statements](https://vlab.cs.ucsb.edu/papers/ICSE2022_preach.pdf). Seemanta Saha, Mara Downing, Tegan Brennan, Tevfik Bultan.

- **FSE'16** [String Analysis for Side Channels with Segmented Oracles](http://www.cs.ucsb.edu/~baki/publications/fse16.pdf). Lucas Bang, Abdulbaki Aydin, Quoc-Sang Phan, Corina S. Pasareanu, and Tevfik Bultan.

Expand Down
2 changes: 2 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ LT_INIT
AC_HAVE_LIBRARY([glog], [LIBGLOG=-lglog], AC_MSG_ERROR(Glog logging library not found))
AC_SUBST([LIBGLOG])

AC_DEFINE(GLOG_USE_GLOG_EXPORT)

AC_CHECK_LIB([monadfa], [dfaFree], [LIBMONADFA=-lmonadfa], AC_MSG_ERROR(MONA DFA library not found))
AC_SUBST([LIBMONADFA])

Expand Down
2 changes: 2 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
#include <glog/logging.h>
#include <glog/vlog_is_on.h>



#include "interface/Driver.h"
#include "solver/options/Solver.h"
#include "smt/ast.h"
Expand Down

0 comments on commit 6f17f6e

Please sign in to comment.