alexcrichton edited PR #8642.
alexcrichton commented on PR #8642:
@rockwotj would you be able to give this a once-over perhaps? If not no worries, but you probably know more about CMake than I!
alexcrichton has marked PR #8642 as ready for review.
alexcrichton requested elliottt for a review on PR #8642.
alexcrichton requested wasmtime-core-reviewers for a review on PR #8642.
alexcrichton requested wasmtime-default-reviewers for a review on PR #8642.
dundargoc submitted PR review.
dundargoc created PR review comment:
Sus.
option
is for cache variables that are booleans, but it looks likeWASMTIME_USER_CARGO_BUILD_OPTIONS
is supposed to be a string. This doesn't look correct.
dundargoc created PR review comment:
Same thing,
option
is for booleans and this expects a string.
dundargoc submitted PR review.
dundargoc submitted PR review.
dundargoc created PR review comment:
Nitpick: arguably cleaner
set(feature_default "${default} AND NOT ${WASMTIME_DISABLE_ALL_FEATURES}")
alexcrichton submitted PR review.
alexcrichton created PR review comment:
Thanks! I didn't really realize that
set(...)
here was doing that. I'll switch back.
alexcrichton updated PR #8642.
alexcrichton submitted PR review.
alexcrichton created PR review comment:
I don't think I fully understand cmake evaluation contexts and strings and what's a variable when, but when I use your suggestion it looks like it sets
feature_default
to the stringON AND NOT OFF
and I'm not sure why but the default build has all features off.I'm also not sure if I'm supposed to do something like
if(${${cmake_name}})
below instead of justif(${cmake_name})
(sorry I'm very new to cmake)
dundargoc submitted PR review.
dundargoc created PR review comment:
I don't think I fully understand cmake evaluation contexts and strings and what's a variable when, but when I use your suggestion it looks like it sets
feature_default
to the stringON AND NOT OFF
and I'm not sure why but the default build has all features off.You might need to delete the build folder. Since cache variables are persistent they will keep their values unless you change them specifically. If you build with
WASMTIME_DISABLE_ALL_FEATURES=OFF
, and then rebuild it withWASMTIME_DISABLE_ALL_FEATURES=ON
, then it won't do anything since the other cache variables have already got a value. This problem exists in the original version of the code too. Cmake cache variables are in general footgunny.I'm also not sure if I'm supposed to do something like
if(${${cmake_name}})
below instead of justif(${cmake_name})
(sorry I'm very new to cmake)Nah,
if(${cmake_name})
is correct. For some reasonif
expects the variable name and not the value itself. I'm not sure how to feel about it tbh :).In any case, I think the original code is fine as is, just wanted to present an alternative.
dundargoc deleted PR review comment.
dundargoc submitted PR review.
dundargoc created PR review comment:
Actually I retried it and my suggestion was wrong. My bad, I should've investigated better beforehand. Ignore my comment, your method is the way to go.
alexcrichton submitted PR review.
alexcrichton created PR review comment:
Ah ok makes sense, and no worries! Thanks for taking a look regardless!
rockwotj submitted PR review:
Very nice! This is a great change. Just a few small things
rockwotj submitted PR review:
Very nice! This is a great change. Just a few small things
rockwotj created PR review comment:
While I am thinking about it - the c compiler should be set as an environment variable for the cc crate. There are a number of ways to set it in cmake that don't involve the environment variables that the cc crate uses
rockwotj created PR review comment:
I generally see people do if not debug (inverting this check). It seems better to default to release builds for an external library
rockwotj created PR review comment:
nit: you could move the WASMTIME_FEATURE_ prefix creation into the macro
alexcrichton updated PR #8642.
alexcrichton submitted PR review.
alexcrichton created PR review comment:
True! I'm a bit wary to do that though since cmake's cross-compilation defaults are not always as good as the
cc
crate's auto-detection. Do you know if there's a way to only pass the C compiler env vars and such if explicitly configured in cmake?
elliottt submitted PR review.
alexcrichton commented on PR #8642:
Thanks @dundargoc and @rockwotj!
alexcrichton merged PR #8642.
Last updated: Nov 22 2024 at 16:03 UTC