1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 00:17:45 +00:00

Ports: Add quake3 port :^)

This commit is contained in:
Jesse Buhagiar 2022-03-25 22:37:46 +11:00 committed by Andreas Kling
parent c08dfe063a
commit e2f1da8cec
11 changed files with 571 additions and 0 deletions

View file

@ -0,0 +1,25 @@
From 5efef55d7dc570bcef21533a952267e6b107d495 Mon Sep 17 00:00:00 2001
From: Jesse Buhagiar <jooster669@gmail.com>
Date: Fri, 25 Mar 2022 09:45:12 +1100
Subject: [PATCH 4/8] Meta: Add `-ldl` library for Serenity target
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index b26ceb7f..035fea77 100644
--- a/Makefile
+++ b/Makefile
@@ -868,7 +868,7 @@ ifeq ($(PLATFORM),serenity)
SHLIBLDFLAGS=-shared $(LDFLAGS)
THREAD_LIBS=-lpthread
- LIBS=-lm
+ LIBS=-lm -ldl
CLIENT_LIBS =
--
2.35.1