I'm running into compile trouble on Macs (the Linux version works well). Any idea if this is a Mac issue, or something with my particular system?
When building, I get:
error[E0425]: cannot find function, tuple struct or tuple variant `Tcl_IsSafe` in crate `clib`
--> /Users/pmadden/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tcl-0.1.9/src/interp.rs:629:19
|
629 | clib::Tcl_IsSafe( self.as_ptr() ) != 0
| ^^^^^^^^^^ not found in `clib`
error[E0425]: cannot find function, tuple struct or tuple variant `Tcl_MakeSafe` in crate `clib`
--> /Users/pmadden/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tcl-0.1.9/src/interp.rs:653:19
|
653 | clib::Tcl_MakeSafe( self.as_ptr() ).code_to_result( self )
| ^^^^^^^^^^^^ not found in `clib`
error[E0425]: cannot find function, tuple struct or tuple variant `Tcl_CreateSlave` in crate `clib`
--> /Users/pmadden/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tcl-0.1.9/src/interp.rs:678:54
|
678 | Ok( Interpreter( Interp::from_raw( clib::Tcl_CreateSlave(
| ^^^^^^^^^^^^^^^ not found in `clib`
...
Thanks much for any insight!
I'm running into compile trouble on Macs (the Linux version works well). Any idea if this is a Mac issue, or something with my particular system?
When building, I get:
Thanks much for any insight!