Hi
it seems, there is a bug in native command line tools startup
the sdblib.jar not added to classpath, which cause class not found exception:
Exception in thread "main" java.lang.NoClassDefFoundError: org/tizen/sdblib/util/IOUtil
at org.tizen.common.core.application.InstallPathConfig.parseSdkInfoFile(InstallPathConfig.java:244)
at org.tizen.common.core.application.InstallPathConfig.loadSdkPath(InstallPathConfig.java:260)
at org.tizen.common.core.application.InstallPathConfig.<clinit>(InstallPathConfig.java:87)
at org.tizen.cli.exec.pack.NativeMain.<clinit>(NativeMain.java:52)
Caused by: java.lang.ClassNotFoundException: org.tizen.sdblib.util.IOUtil
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
... 4 more
Could not find the main class: org.tizen.cli.exec.pack.NativeMain. Program will exit.
workaround solution - copy sdblib.jar to tizen-sdk/tools/ide/lib/
Vlad