[PATCH] D154403: [cmake] Add SerenityOS to config.guess

Andrew Kaster via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 3 18:55:59 PDT 2023


ADKaster created this revision.
Herald added a subscriber: ekilmer.
Herald added a project: All.
ADKaster requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

SerenityOS was already upstreamed to the GNU sources for config.guess
in Jan 2022.

Depends on D154402 <https://reviews.llvm.org/D154402>


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D154403

Files:
  llvm/cmake/config.guess


Index: llvm/cmake/config.guess
===================================================================
--- llvm/cmake/config.guess
+++ llvm/cmake/config.guess
@@ -816,6 +816,9 @@
     i*:PW*:*)
 	echo ${UNAME_MACHINE}-pc-pw32
 	exit ;;
+    *:SerenityOS:*:*)
+	echo ${UNAME_MACHINE}-pc-serenity
+	exit ;;
     *:Interix*:*)
 	case ${UNAME_MACHINE} in
 	    x86)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D154403.536929.patch
Type: text/x-patch
Size: 358 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230704/c966cc0a/attachment.bin>


More information about the llvm-commits mailing list