Jelajahi Sumber

Repairing android-x86 toolchain
Error was: 'i686-linux-android-g++: error: /arch-x86/usr/lib/crtend_so.o: No such file or directory'

Jean-François Verdon 9 tahun lalu
induk
melakukan
3a929f485c
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      scripts/toolchain.lua

+ 1 - 1
scripts/toolchain.lua

@@ -800,7 +800,7 @@ function toolchain(_buildDir, _libDir)
 		linkoptions {
 			"--sysroot=" .. path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-x86"),
 			path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-x86/usr/lib/crtbegin_so.o"),
-			path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "/arch-x86/usr/lib/crtend_so.o"),
+			path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-x86/usr/lib/crtend_so.o"),
 		}
 
 	configuration { "asmjs" }