You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clone the vb-slice branch of https://github.com/tomaka/glium (or the commit 14bb0fecdb6443afac36945956dfbbe9b70c81c4)
Run cargo test
I'm trying to add a VertexBufferSlice struct which implements a method named write. You can see it here. Nothing fancy except that it contains an assertion.
However, when I try to call this function it in an external test (ie. a binary program that is linked to the library), I'm getting the following linking error:
note: /home/travis/build/tomaka/glium/target/vertex_buffer-1e2aae9fd3ad25cf.o: In function `vertex::buffer::VertexBufferSlice$LT$$u27$b$C$$u20$T$GT$::write::h17392329038169427709':
vertex_buffer.0.rs:(.text._ZN6vertex6buffer40VertexBufferSlice$LT$$u27$b$C$$u20$T$GT$5write21h17392329038169427709E+0xb1): undefined reference to `vertex::buffer::VertexBufferSlice$LT$$u27$b$C$$u20$T$GT$::write::_FILE_LINE::h990f1092ce3964981zg'
collect2: ld returned 1 exit status
Removing the assertion from the function fixes the error.
This error happens on both windows and linux. The error happens every time I compile, so it's not some sort of data race. The version is rustc 1.0.0-nightly (74b874071 2015-02-08 00:24:03 +0000).
The text was updated successfully, but these errors were encountered:
How to reproduce:
vb-slice
branch ofhttps://github.com/tomaka/glium
(or the commit14bb0fecdb6443afac36945956dfbbe9b70c81c4
)cargo test
I'm trying to add a
VertexBufferSlice
struct which implements a method namedwrite
. You can see it here. Nothing fancy except that it contains an assertion.However, when I try to call this function it in an external test (ie. a binary program that is linked to the library), I'm getting the following linking error:
Removing the assertion from the function fixes the error.
This error happens on both windows and linux. The error happens every time I compile, so it's not some sort of data race. The version is
rustc 1.0.0-nightly (74b874071 2015-02-08 00:24:03 +0000)
.The text was updated successfully, but these errors were encountered: