mirror of
https://github.com/Egor00f/kolibrios-gcc-toolchain.git
synced 2025-09-21 22:53:50 +02:00
Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
b0e92ef197 | |||
81135f0c3a | |||
8505ca3a4e | |||
9262ee0fa4 | |||
eb61d5f483 | |||
e63568bc9c | |||
6d994d865c | |||
d2c3ae7904 | |||
53343866d9 | |||
|
048965ba75 | ||
|
9b3be45832 | ||
|
fb37fd61a8 |
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -48,7 +48,7 @@ jobs:
|
|||||||
shell: cmd
|
shell: cmd
|
||||||
|
|
||||||
build-Installer:
|
build-Installer:
|
||||||
runs-on: windowd-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
11
install.sh
11
install.sh
@@ -123,10 +123,17 @@ sudo ln -sf /usr/lib/libmpfr.so.6 /usr/lib/libmpfr.so.4
|
|||||||
print_ok "Successfully!"
|
print_ok "Successfully!"
|
||||||
|
|
||||||
|
|
||||||
if ! grep -q 'export PATH=$PATH:$TOOLCHAIN_DIR/win32/bin' ~/.bashrc; then
|
if ! grep -q 'export PATH=$PATH:/home/autobuild/tools/win32/bin' ~/.bashrc; then
|
||||||
export PATH=$PATH:/home/autobuild/tools/win32/bin
|
export PATH=$PATH:/home/autobuild/tools/win32/bin
|
||||||
print_msg "Adding '$TOOLCHAIN_DIR/win32/bin' to '~/.bashrc'"
|
print_msg "Adding '$TOOLCHAIN_DIR/win32/bin' to '~/.bashrc'"
|
||||||
echo 'export PATH=$PATH:$TOOLCHAIN_DIR/win32/bin' >> ~/.bashrc
|
echo 'export PATH=$PATH:/home/autobuild/tools/win32/bin' >> ~/.bashrc
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ["$EUID" -ne 0 ]
|
||||||
|
then
|
||||||
|
echo 'PATH=$PATH:/home/autobuild/tools/win32/bin' >> /etc/profile
|
||||||
|
else
|
||||||
|
print_msg "You must be logined as root!"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd "$OLDPWD"
|
cd "$OLDPWD"
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||||
|
|
||||||
#define MyAppName "KolibriOS gcc toolchain"
|
#define MyAppName "KolibriOS gcc toolchain"
|
||||||
#define MyAppVersion "0.1.1"
|
#define MyAppVersion "0.1.2"
|
||||||
#define MyAppPublisher "Egor00f"
|
#define MyAppPublisher "Egor00f"
|
||||||
#define MyAppURL "https://github.com/Egor00f/kolibrios-gcc-toolchain"
|
#define MyAppURL "https://github.com/Egor00f/kolibrios-gcc-toolchain"
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
Package: kos32-gcc
|
Package: kos32-gcc
|
||||||
Version: 0.1.1
|
Version: 0.1.2
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Section: devel
|
Section: devel
|
||||||
Depends: libc6-i386:amd64, libmpc3:amd64
|
Depends: libc6-i386:amd64, libmpc3:amd64
|
||||||
|
@@ -1,3 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
rm -R /home/autobuild/tools/win32
|
rm -R /home/autobuild/tools/win32
|
||||||
|
sed 'PATH=$PATH:/home/autobuild/tools/win32/bin' /etc/profile
|
||||||
|
Reference in New Issue
Block a user