Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try #284:
Browse files Browse the repository at this point in the history
bors[bot] committed Mar 20, 2019
2 parents 4a74382 + 95fc436 commit f06258e
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -167,6 +167,10 @@ jobs:
echo "${VERSION}" >> artifacts/version
echo "${CIRCLE_TAG}" >> artifacts/git_version
cp ./target/release/wasmer ./artifacts/$(./binary-name.sh)
- run:
name: Debug flag checked
command: |
cargo check --features "debug"
- persist_to_workspace:
root: .
paths:
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -50,9 +50,6 @@ release:
# brew install mingw-w64
cargo build --release

debug-release:
cargo build --release --features debug

debug-release:
cargo build --release --features "debug"

2 changes: 1 addition & 1 deletion lib/emscripten/src/syscalls/unix.rs
Original file line number Diff line number Diff line change
@@ -282,7 +282,7 @@ pub fn ___syscall102(ctx: &mut Ctx, _which: c_int, mut varargs: VarArgs) -> c_in
let _proper_address = address as *const GuestSockaddrIn;
debug!(
"=> address.sin_family: {:?}, address.sin_port: {:?}, address.sin_addr.s_addr: {:?}",
(*_proper_address).sin_family, (*_proper_address).sin_port, (*_proper_address).sin_addr.s_addr
unsafe { (*_proper_address).sin_family }, unsafe { (*_proper_address).sin_port }, unsafe { (*_proper_address).sin_addr.s_addr }
);

let status = unsafe { bind(socket, address, address_len) };

0 comments on commit f06258e

Please sign in to comment.