Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 97bb148063 | |||
| c8d572b719 |
@@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2026-02-27 - 1.0.3 - fix(build)
|
||||||
|
add aarch64 linker configuration for cross-compilation
|
||||||
|
|
||||||
|
- Added rust/.cargo/config.toml to configure linker for target aarch64-unknown-linux-gnu
|
||||||
|
- Sets linker to 'aarch64-linux-gnu-gcc' to enable cross-compilation to ARM64
|
||||||
|
|
||||||
## 2026-02-27 - 1.0.2 - fix()
|
## 2026-02-27 - 1.0.2 - fix()
|
||||||
no changes detected - no code or content modifications
|
no changes detected - no code or content modifications
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartvpn",
|
"name": "@push.rocks/smartvpn",
|
||||||
"version": "1.0.2",
|
"version": "1.0.3",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A VPN solution with TypeScript control plane and Rust data plane daemon",
|
"description": "A VPN solution with TypeScript control plane and Rust data plane daemon",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
2
rust/.cargo/config.toml
Normal file
2
rust/.cargo/config.toml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
[target.aarch64-unknown-linux-gnu]
|
||||||
|
linker = "aarch64-linux-gnu-gcc"
|
||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartvpn',
|
name: '@push.rocks/smartvpn',
|
||||||
version: '1.0.2',
|
version: '1.0.3',
|
||||||
description: 'A VPN solution with TypeScript control plane and Rust data plane daemon'
|
description: 'A VPN solution with TypeScript control plane and Rust data plane daemon'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user