-
Notifications
You must be signed in to change notification settings - Fork 11
Fix Hermes build to use correct compilers on macOS #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -107,6 +107,8 @@ else() | |||||
| LOG_BUILD ON | ||||||
| LOG_OUTPUT_ON_FAILURE ON | ||||||
| UPDATE_DISCONNECTED ON | ||||||
| ENV CC ${CMAKE_C_COMPILER} | ||||||
| ENV CXX ${CMAKE_CXX_COMPILER} | ||||||
|
Comment on lines
+110
to
+111
|
||||||
| ENV CC ${CMAKE_C_COMPILER} | |
| ENV CXX ${CMAKE_CXX_COMPILER} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ENV directive syntax is incorrect. Each ENV entry should be a single key=value pair on one line. The correct syntax should be
ENV \"CC=${CMAKE_C_COMPILER}\" \"CXX=${CMAKE_CXX_COMPILER}\"or split into separate ENV directives likeENV CC=${CMAKE_C_COMPILER}andENV CXX=${CMAKE_CXX_COMPILER}.