mirror of
https://github.com/Egor00f/kolibrios-gcc-toolchain.git
synced 2025-09-20 18:00:07 +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
|
||||
|
||||
build-Installer:
|
||||
runs-on: windowd-latest
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
|
15
install.sh
15
install.sh
@@ -123,10 +123,17 @@ sudo ln -sf /usr/lib/libmpfr.so.6 /usr/lib/libmpfr.so.4
|
||||
print_ok "Successfully!"
|
||||
|
||||
|
||||
if ! grep -q 'export PATH=$PATH:$TOOLCHAIN_DIR/win32/bin' ~/.bashrc; then
|
||||
export PATH=$PATH:/home/autobuild/tools/win32/bin
|
||||
print_msg "Adding '$TOOLCHAIN_DIR/win32/bin' to '~/.bashrc'"
|
||||
echo 'export PATH=$PATH:$TOOLCHAIN_DIR/win32/bin' >> ~/.bashrc
|
||||
if ! grep -q 'export PATH=$PATH:/home/autobuild/tools/win32/bin' ~/.bashrc; then
|
||||
export PATH=$PATH:/home/autobuild/tools/win32/bin
|
||||
print_msg "Adding '$TOOLCHAIN_DIR/win32/bin' to '~/.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
|
||||
|
||||
cd "$OLDPWD"
|
||||
|
@@ -2,7 +2,7 @@
|
||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||
|
||||
#define MyAppName "KolibriOS gcc toolchain"
|
||||
#define MyAppVersion "0.1.1"
|
||||
#define MyAppVersion "0.1.2"
|
||||
#define MyAppPublisher "Egor00f"
|
||||
#define MyAppURL "https://github.com/Egor00f/kolibrios-gcc-toolchain"
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
Package: kos32-gcc
|
||||
Version: 0.1.1
|
||||
Version: 0.1.2
|
||||
Architecture: all
|
||||
Section: devel
|
||||
Depends: libc6-i386:amd64, libmpc3:amd64
|
||||
|
@@ -1,3 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
rm -R /home/autobuild/tools/win32
|
||||
sed 'PATH=$PATH:/home/autobuild/tools/win32/bin' /etc/profile
|
||||
|
Reference in New Issue
Block a user