We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Yes, our setup here is a bit odd maybe. But this tiny fix allows us to build.
diff --git a/src/util/Makefile b/src/util/Makefile index 5152955..b27e22c 100644 --- a/src/util/Makefile +++ b/src/util/Makefile @@ -45,7 +45,7 @@ irep_ids.inc: irep_ids_convert$(EXEEXT) irep_ids.txt irep_ids.cpp: irep_ids.inc irep_ids.h irep_ids_convert$(EXEEXT): irep_ids_convert.cpp - $(LINKNATIVE) + $(LINKNATIVE) -static generated_files: irep_ids.h irep_ids.inc
The text was updated successfully, but these errors were encountered:
Actually, we need a few more changes like this:
diff --git a/src/ansi-c/Makefile b/src/ansi-c/Makefile index 0764c13..d07a0d4 100644 --- a/src/ansi-c/Makefile +++ b/src/ansi-c/Makefile @@ -54,10 +54,10 @@ cprover_library$(OBJEXT): cprover_library.inc ############################################################################### library/converter$(EXEEXT): library/converter.cpp - $(LINKNATIVE) + $(LINKNATIVE) -static file_converter$(EXEEXT): file_converter.cpp - $(LINKNATIVE) + $(LINKNATIVE) -static ifeq ($(BUILD_ENV),MinGW) platform_unavail = library/java.io.c library/err.c library/threads.c
Sorry, something went wrong.
Merge pull request diffblue#242 from diffblue/cleanup/capitalize-DiFf…
caeef88
…BlUe Renamed DiffBlue -> Diffblue
Merge pull request diffblue#242 from diffblue/issue234
9edeeca
Make exprt::is_zero() support bitfields
obsolete
No branches or pull requests
Yes, our setup here is a bit odd maybe. But this tiny fix allows us to build.
The text was updated successfully, but these errors were encountered: