We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8062e5 commit e74dd99Copy full SHA for e74dd99
utils/build.ps1
@@ -1582,6 +1582,12 @@ function Build-CMakeProject {
1582
Add-FlagsDefine $Defines CMAKE_SHARED_LINKER_FLAGS "--ld-path=$ld"
1583
Add-FlagsDefine $Defines CMAKE_EXE_LINKER_FLAGS "--ld-path=$ld"
1584
}
1585
+
1586
+ # TODO(compnerd) we should understand why CMake does not understand
1587
+ # that the object file format is ELF when targeting Android on Windows.
1588
+ # This indication allows it to understand that it can use `chrpath` to
1589
+ # change the RPATH on the dynamic libraries.
1590
+ Add-FlagsDefine $Defines CMAKE_EXECUTABLE_FORMAT "ELF"
1591
1592
1593
0 commit comments