File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ unset CDPATH
6
6
7
7
root=" $( pwd) "
8
8
9
- cargo build --release
9
+ cargo build --workspace -- release
10
10
11
11
mkdir -p build
12
12
@@ -38,7 +38,7 @@ if [ ! -d ruby-strudel-build-root ]; then
38
38
autoconf
39
39
export cflags=" -DSTRUDEL"
40
40
export LDFLAGS=" -L${root} /target/release/"
41
- export LIBS=" -lstrudel "
41
+ export LIBS=" -lstrudel_st "
42
42
./configure --prefix=" ${root} /build/rubies/2.6.3-strudel" --with-baseruby=" $( which ruby) "
43
43
unset cflags
44
44
unset LDFLAGS
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ include = [
17
17
18
18
[lib ]
19
19
crate-type = [" cdylib" ]
20
- name = " strudel "
20
+ name = " strudel_st "
21
21
22
22
[dependencies ]
23
23
fnv = " 1.0"
24
24
libc = " 0.2"
25
25
strudel = { version = " 1.0" , path = " .." }
26
26
27
27
[dev-dependencies ]
28
- memoffset = " 0.6"
28
+ memoffset = " 0.6"
Original file line number Diff line number Diff line change 8
8
//! These functions are callable from C by including `st.h` and linking in
9
9
//! `libstrudel`.
10
10
//!
11
- //! [`StHashMap`]: crate ::StHashMap
11
+ //! [`StHashMap`]: strudel ::StHashMap
12
12
13
13
use core:: ffi:: c_void;
14
14
use std:: os:: raw:: c_int;
You can’t perform that action at this time.
0 commit comments