#!/bin/bash
# Suppress "bss-plt forced" warnings from ld
# see https://github.com/ocaml/ocamlbuild/issues/254
f() {
	/usr/bin/ld 2>&1 1>&3 "$@" \
	  | grep -v "bss-plt forced"
	return ${PIPESTATUS[0]}
}
f "$@" 3>&1 >&2
