diff --git a/android/build.gradle b/android/build.gradle index a42e5f4bacc..109a4b79d6b 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -28,8 +28,8 @@ buildscript { // This is used as part of the Hermes build process hermesC = "" for (f in [ - "${hermesHostBuild}/build/ImportHostCompilers.cmake", - "${hermesHostBuild}/build_release/ImportHostCompilers.cmake"]) { + "${hermesHostBuild}/build/ImportHermesc.cmake", + "${hermesHostBuild}/build_release/ImportHermesc.cmake"]) { if(file(f).exists()) hermesC = f; } assert hermesC != "" : "Hermes host build not found" diff --git a/utils/build-apple-framework.sh b/utils/build-apple-framework.sh index 707007c4f8a..8f206359fd9 100755 --- a/utils/build-apple-framework.sh +++ b/utils/build-apple-framework.sh @@ -81,8 +81,7 @@ function configure_apple_framework { -DHERMES_ENABLE_TOOLS:BOOLEAN="$build_cli_tools" \ -DIMPORT_HERMESC:PATH="$PWD/build_host_hermesc/ImportHermesc.cmake" \ -DCMAKE_INSTALL_PREFIX:PATH=../destroot \ - -DCMAKE_BUILD_TYPE="$BUILD_TYPE" \ - -DIMPORT_HOST_COMPILERS="$PWD/build_host_hermesc/ImportHostCompilers.cmake" + -DCMAKE_BUILD_TYPE="$BUILD_TYPE" } # Utility function to build an Apple framework @@ -106,8 +105,6 @@ function build_apple_framework { # the architectures into an universal folder and then remove # the merged frameworks from destroot function create_universal_framework { - mkdir destroot/bin - cp build_host_hermesc/bin/{hermes,hermesc,hermes-lit} ./destroot/bin cd ./destroot/Library/Frameworks || exit 1