stage1: always optimize blake and softfloat even in debug mode

This commit is contained in:
Andrew Kelley
2018-09-10 09:46:15 -04:00
parent c0bdcc7417
commit fbe5737c84
8 changed files with 94 additions and 47 deletions

View File

@@ -6,6 +6,7 @@
*/
#include "cache_hash.hpp"
#include "all_types.hpp"
#include "buffer.hpp"
#include "os.hpp"
@@ -219,6 +220,9 @@ Error cache_hit(CacheHash *ch, Buf *out_digest) {
buf_append_str(ch->manifest_file_path, ".txt");
if ((err = os_make_path(ch->manifest_dir)))
return err;
if ((err = os_file_open_lock_rw(ch->manifest_file_path, &ch->manifest_file)))
return err;