Open Ssl NDK build issue - build

G:/Ndk_r9d
G:/Openssl-1.0.1i - downloaded from openssl.rg
In openssl apps,crypto and ssl i have added android.mk file.
apps android.mk
crypto android.mk
ssl android.mk
And i copied these Android.mk files from here.
G:/Openssl-1.0.1i>ndk-build
Each and every time i am getting different issue i.e make.exe ***Access is denied and
No such file or directory.
I have tried this solution also but no luck.
I have opened cmd prompt "Run As Administrator".
Is there anyother way to get libcrypto.so and libssl.so?
Problem solved by disabilng antivirus.

Related

Dont open project from github

I download project from github in my Termux terminal, but after download, when I pass the command "сd /*projectname*" termux said me: No such file or directory
I tried find this project in file manager in my Android, but the all folders in /com.Termux are empty.
Then I'm pass the command git clone https:/github.com/developer_name/project_name and Termux told me - destination path *projectname* already exist and is not an empty directory
Ive got 2 question
How I can open projectname in Termux?
Which full path from downloaded project from github?
use (apt-update && apt upgrade) first then other commands

Remote gdb with Eclipse Oxygen 3a

I've read several guides/stackoverflows but not found a similar situation/solution.
I have my remote ssh working (can browse files).
I don't get why I need a local Windows application (although I have a compiled .exe it's not the version I want to debug which is only on the Linux server).
When I try and launch a remote debug session it immediately fails with
Exception occurred during launch
Reason:
Error during file upload.
and below in the details
Could not write file: <my windows exe path>
Permission denied
...
The aforementioned file is writable and in any event I also started eclipse as administrator just in case.
In any event the .exe is irrelevant. I just want to debug code remotely.
(I know all about gdbserver...happy to manually kick that off if need be....don't think I'm there yet though)
Below is the options page I'm presented with:
Had the same experience on TI Code Composer Studio Version: 9.3.0.00012.
This seems to happen while uploading the cross compiled binary from host to target. If you set the check box "Skip download to target path" the error should disappear.
I propose to workaround the upload.
Setup a web server on the host, the line python.exe -m http.server --directory \source\hello\Debug\ would be sufficient
Run wget on the target, see screenshot

ERROR: could not open extension control file "/usr/pgsql-9.6/share/extension/postgis.control": No such file or directory

I want to deploy my project to VPS Centos7. But i am getting error while installing postgres. When i type
create extension postgis;
Getting error
ERROR: could not open extension control file
"/usr/pgsql-9.6/share/extension/postgis.control": No such file or
directory
Because postgis.contol is located in another place,
find /usr -name postgis.control
/usr/share/pgsql/extension/postgis.control
But postgres trying to create it from /usr/pgsql-9.6/share/extension/postgis.control
This question already was asked before, but my problem is other.
For me, I run below command in Ubuntu, and the issue was resolved.
sudo apt install postgresql-10-postgis-scripts
then run
CREATE EXTENSION postgis
It works fine for me.I hope it helps.

NetBeans: How to disable project files copying on remote host

I'm trying to build project on remote host using NetBeans 8.1.
I create the project and try to build it. NetBeans shows me in build log
Copying project files to /home/user/.netbeans/remote/hostname/desktop-Linux-x86_64 at user#hostname
Building project files list...
Checking directory structure...
Checking previously uploaded files...
Checking links...
Uploading changed files:
Zipping 1 changed files...
Uploading zip to user#hostname...
Unzipping changed files...
Checking exec permissions...
Uploading changed files finished successfully.
NetBeans builds my project in this directory not in the project home directory.
How can I disable files copying and make NetBeans to build project in it original directory?
It seems like you had selected SFTP, you have to select "System Level file sharing (NFS, Samba)
then do Path Mapper, that's all

MySQL server installation lacks libmysql.lib

I'm trying to write a c++ wrapper for MySQL:
cannot open input file 'libmysql.lib'
I did install mySQL server but I still don't have libmysql.lib
Follow these instructions (I am assuming you installed an instance of MySQL Server):
link your project with libmysql.lib
Ignore the message error "Missing libmysql.dll"
copy libmysql.dll to the release folder
Compile and run your program.