Golang : Gomobile init produce "iphoneos" cannot be located error
Problem :
Golang mobile packages provide support for mobile devices and build tools that allows Golang developers to develop application for Android and iOS platform. While setting up and executing gomobile init
you get these error messages :
./gomobile init
./gomobile: xcrun --show-sdk-path: exit status 1
xcrun: error: SDK "iphoneos" cannot be located
xcrun: error: SDK "iphoneos" cannot be located
xcrun: error: unable to lookup item 'Path' in SDK 'iphoneos'
Solution :
You are attempting to run gomobile
on OS X and you will need to have Xcode Command Line Tools installed first. After installing Xcode, make sure you run Xcode and accept the terms and conditions before executing gomobile init
command. Otherwise, you will get this error message :
./gomobile: xcrun --find: exit status 69
Agreeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+15.5k Golang : Convert date format and separator yyyy-mm-dd to dd-mm-yyyy
+33.8k Golang : Call a function after some delay(time.Sleep and Tick)
+8.9k Golang : Build and compile multiple source files
+5.8k Golang : Detect variable or constant type
+14.1k Golang : Get uploaded file name or access uploaded files
+7.1k Golang : Null and nil value
+10.1k Golang : Detect number of faces or vehicles in a photo
+8.9k Golang : How to capture return values from goroutines?
+10.7k Golang : Command line file upload program to server example
+4.9k Linux : How to set root password in Linux Mint
+4.6k Golang : How to pass data between controllers with JSON Web Token
+25.5k Golang : Daemonizing a simple web server process example