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
1) `build_data = ["@m4"]` doesn't actually project m4 into the tools dir
(`$EXT_BUILD_DEPS$$/bin`) and never has; instead, you have to use the
more bazel-like `$$EXT_BUILD_ROOT/$(location @m4//:m4_exe)`
2) `$$EXT_BUILD_DEPS$$` might work (now that
208c7d4 is in) but it's better to
follow the shell-variable convention and use `$$EXT_BUILD_DEPS` (without
the trailing `$$`)
3) We were pulling perl and python deps from the host. Prefer to pull
them from the toolchains.
This also fixes everything but autoconf/automake on linux (autoconf
builds but it's not actually usable, which the automake test shows).
There's a lot more still disabled on darwin because openssl is broken
there due to rpath problems that aren't debugged yet.
0 commit comments