Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/topic/robin/gh-3384'
Browse files Browse the repository at this point in the history
  • Loading branch information
bbannier committed Oct 23, 2023
2 parents 60ce83e + c45d92f commit d26c81c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.9.0-dev.157 | 2023-10-23 10:58:57 +0200

* Fix spicy-build to correctly infer library directory. (Robin Sommer, Corelight)

Closes https://github.com/zeek/zeek/issues/3384.

1.9.0-dev.155 | 2023-10-23 10:54:13 +0200

* GH-1565: Disable capturing backtraces with HILTI exceptions in non-debug builds. (Robin Sommer, Corelight)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.0-dev.155
1.9.0-dev.157
2 changes: 1 addition & 1 deletion spicy/toolchain/bin/spicy-build
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ fi

cxx="$(${spicy_config} --cxx ${spicy_config_flags}) $(${spicy_config} --cxxflags ${spicy_config_flags})"
ldflags="$(${spicy_config} --ldflags ${spicy_config_flags})"
spicy_lib_dir=$(${spicy_config} --libdirs | sed 's/^\. //g') # A bit of a hack to get the dir we want ...
spicy_lib_dir=$(for i in $(${spicy_config} --libdirs); do test -e "${i}/spicy_rt.hlt" && echo "${i}" && break; done) # extract the directory we want
spicy_driver=${spicy_lib_dir}/spicy-driver-host.cc

rt_modules=""
Expand Down

0 comments on commit d26c81c

Please sign in to comment.