Search found 22 matches

by voyzer
2024 Dec 23 11:50
Forum: Dev
Topic: rust jni build pc, android
Replies: 0
Views: 105297

rust jni build pc, android

To set up a build environment that can handle both PC JNI and Android JNI simultaneously, you can leverage Rust's cross-compilation features and Cargo's flexibility. Here's how you can organize your project: 1. Project Structure Organize your project to manage both PC and Android builds: bash 코드 복사 ...
by voyzer
2024 Dec 23 10:07
Forum: Openssl
Topic: openssl compile on windows
Replies: 0
Views: 100230

openssl compile on windows

D:\Project\openssl340>cd openssl D:\Project\openssl340\openssl>git checkout openssl-3.4.0 Note: switching to 'openssl-3.4.0'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any...
by voyzer
2024 Aug 08 09:11
Forum: Dev
Topic: emacs configuration
Replies: 0
Views: 74962

emacs configuration

### help-key-binding 보이게 처리 key-bindng 이 하얗게 안보일 때 (set-face-attribute 'help-key-binding nil :foreground "black" :background "lightgray") ### Show faces list M-x list-faces-display ;; 1. 선택한 블럭을 Comment / Uncomment M-; ;; 2. 쉘이 콘솔, 그래픽 모드 여부 체크값 display-graphic-p M-: => EVAL (dis...
by voyzer
2024 Jul 29 16:54
Forum: Dev
Topic: python pip virtual env
Replies: 0
Views: 81638

python pip virtual env

pip install virtualenv --trusted-host pypi.org --trusted-host files.pythonhosted.org

pythone3 -m venv myenv
by voyzer
2024 May 30 17:44
Forum: Openssl
Topic: Openssl - ndk
Replies: 0
Views: 63636

Openssl - ndk

1. armeabi-v7a ./Configure android-arm no-ssl3 no-comp no-hw no-engine --prefix=/path/to/output 2. arm64-v8a ./Configure android-arm64 no-ssl3 no-comp no-hw no-engine --prefix=/path/to/output ./Configure enable-fips enable-tfo shared android-arm64 --prefix=/workplace/openssl/release_arm64-v8a 3. x86...
by voyzer
2024 May 30 16:21
Forum: Openssl
Topic: Openssl - release path
Replies: 0
Views: 58802

Openssl - release path

voyzer@debian:/workplace/openssl$ ls -l 합계 16 drwxrwxr-x 32 voyzer voyzer 4096 5월 30일 15:20 openssl_v3.3.1 drwxrwxr-x 34 voyzer voyzer 4096 5월 30일 16:18 openssl_v3.4.0 drwxr-xr-x 7 root root 4096 5월 30일 15:38 release <- linux drwxrwxr-x 7 voyzer voyzer 4096 5월 30일 16:19 release_android <- android
by voyzer
2024 May 30 16:12
Forum: Openssl
Topic: Openssl - build with android-ndk(arm64-v8a)
Replies: 0
Views: 61441

Openssl - build with android-ndk(arm64-v8a)

1. export ndk-path voyzer@debian:/workplace/openssl/openssl_v3.4.0$ export ANDROID_NDK_ROOT=/workplace/android-ndk/android-ndk-r26d 2. Add ndk bin path voyzer@debian:/workplace/openssl/openssl_v3.4.0$ PATH=$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH 3. openssl configure voyzer...
by voyzer
2024 May 30 15:51
Forum: Openssl
Topic: Openssl - compile on linux
Replies: 0
Views: 61128

Openssl - compile on linux

voyzer@debian:/workplace/openssl/openssl_v3.4.0$ ./Configure enable-fips enable-tfo shared --prefix=/workplace/openssl/release Configuring OpenSSL version 3.4.0-dev for target linux-x86_64 Using os-specific seed configuration Created configdata.pm Running configdata.pm Created Makefile.in Created M...
by voyzer
2024 Apr 26 15:02
Forum: Dev
Topic: Clojure on windows
Replies: 2
Views: 115858

Re: Clojure on windows

PS D:\Project> cd .\Clojure\ PS D:\Project\Clojure> dir 디렉터리: D:\Project\Clojure Mode LastWriteTime Length Name ---- ------------- ------ ---- d----- 2024-04-26 오후 2:24 clojure-project PS D:\Project\Clojure> lein new app clojure-project-test Generating a project called clojure-project-test based on ...