-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c9c458
commit bfbdd14
Showing
30 changed files
with
564 additions
and
376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/glibc/ | ||
/patchelf/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
liblol (0.1.4~pre2-1) unstable; urgency=medium | ||
|
||
* new upstream version | ||
|
||
-- Miao Wang <[email protected]> Sun, 28 Jan 2024 08:07:00 +0800 | ||
|
||
liblol (0.1.3-1) unstable; urgency=medium | ||
|
||
* Initial upload | ||
|
||
-- Miao Wang <[email protected]> Sat, 27 Jan 2024 18:09:00 +0800 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Source: liblol | ||
Section: otherosfs | ||
Priority: optional | ||
Maintainer: Miao Wang <[email protected]> | ||
Build-Depends: debhelper-compat (= 13), | ||
libstdc++6, | ||
quilt, | ||
bison, | ||
gawk, | ||
python3, | ||
Standards-Version: 4.6.2 | ||
Homepage: https://github.com/AOSC-Dev/liblol | ||
|
||
Package: liblol | ||
Architecture: loong64 | ||
Multi-Arch: foreign | ||
Depends: ${misc:Depends}, | ||
${shlibs:Depends}, | ||
libstdc++6, | ||
libc6 (>= 2.36), | ||
libc6 (<< ${glibcVer}.1~), | ||
Conflicts: glibc, | ||
Recommends: liblol-dkms, | ||
Description: Compatibility layer for old world applications | ||
This package contains a Compatibility layer for old world | ||
applications on new world loongarch64 platform. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/lib64/ | ||
/usr/lib/loongarch64-debian-linux-gnuow |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
2012-05-01 Aurelien Jarno <[email protected]> | ||
|
||
* elf/Makefile(trusted-dirs.st): Fix DL_DST_LIB computation with | ||
two level slibdir directories. | ||
|
||
2009-09-08 Aurelien Jarno <[email protected]> | ||
|
||
* Makeconfig: add support for multiarch compat directories. | ||
|
||
--- | ||
Makeconfig | 9 +++++++++ | ||
elf/Makefile | 2 +- | ||
2 files changed, 10 insertions(+), 1 deletion(-) | ||
|
||
--- a/Makeconfig | ||
+++ b/Makeconfig | ||
@@ -136,6 +136,11 @@ | ||
endif | ||
inst_libdir = $(install_root)$(libdir) | ||
|
||
+# Compat places to look for libraries | ||
+ifndef extra_libdir | ||
+extra_libdir = /lib:$(exec_prefix)/lib | ||
+endif | ||
+ | ||
# Where to install the shared library. | ||
ifndef slibdir | ||
slibdir = $(exec_prefix)/lib | ||
@@ -589,6 +594,10 @@ | ||
default-rpath = $(libdir) | ||
endif | ||
|
||
+ifdef extra_libdir | ||
+default-rpath += :$(extra_libdir) | ||
+endif | ||
+ | ||
ifndef link-extra-libs | ||
link-extra-libs = $(LDLIBS-$(@F)) | ||
link-extra-libs-static = $(link-extra-libs) | ||
--- a/elf/Makefile | ||
+++ b/elf/Makefile | ||
@@ -507,7 +507,7 @@ | ||
$(make-target-directory) | ||
echo "$(subst :, ,$(user-defined-trusted-dirs-pre) $(default-rpath) $(user-defined-trusted-dirs))" \ | ||
| $(AWK) -f gen-trusted-dirs.awk > ${@:st=T}; | ||
- echo '#define DL_DST_LIB "$(notdir $(slibdir))"' >> ${@:st=T} | ||
+ echo '#define DL_DST_LIB "$(shell echo $(slibdir) | sed 's,/,,')"' >> ${@:st=T} | ||
echo '#define SYSTEM_DIRS_PRE_COUNT $(words $(subst :, ,$(user-defined-trusted-dirs-pre)))' >> ${@:st=T} | ||
$(move-if-change) ${@:st=T} ${@:st=h} | ||
touch $@ | ||
CPPFLAGS-dl-load.c += -I$(objpfx). -I$(csu-objpfx). |
Oops, something went wrong.