Skip to content

Commit

Permalink
added missing CC/CXX/AR/RANLIB flags (#903)
Browse files Browse the repository at this point in the history
* cleanup

* keep sync
  • Loading branch information
DerThorsten authored Apr 18, 2024
1 parent 65114b3 commit d6b1ccb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions recipes/recipes/emscripten_emscripten-wasm32/activate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@ if [ -z ${CONDA_FORGE_EMSCRIPTEN_ACTIVATED+x} ]; then
export PATH="$CONDA_EMSDK_DIR/upstream/emscripten/":$PATH

# clear all prexisting cmake args / CC / CXX / AR / RANLIB
export CC=""
export CXX=""
export AR=""
export RANLIB=""
export CC="emcc"
export CXX="em++"
export AR="emar"
export RANLIB="emranlib"

export CMAKE_ARGS=""


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ context:
version: 3.1.45

build:
number: 22
number: 23

outputs:
# TODO make run_exports work with boa
Expand Down
2 changes: 1 addition & 1 deletion recipes/recipes/emscripten_emscripten-wasm32/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package:


build:
number: 22
number: 23


outputs:
Expand Down

0 comments on commit d6b1ccb

Please sign in to comment.