Skip to content

Commit 1ed9ae1

Browse files
committed
cmake: report native Saigo nexe architecture and “pnacl” for pexe
1 parent 9a14918 commit 1ed9ae1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cmake/DaemonPlatform/Detection/Architecture.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,8 @@ to name i686 as i386 for backward compatibility purpose neither
5656
care of platform name variants that are meant to distinguish
5757
platform variants we cannot support anyway. */
5858

59-
/* PNaCl virtual machines. */
60-
#if defined(__native_client__)
61-
#pragma message(REPORT_NAME("nacl"))
62-
6359
/* Wasm virtual machines, work in progress. */
64-
#elif defined(Q_PROCESSOR_WASM)
60+
#if defined(Q_PROCESSOR_WASM)
6561
#pragma message(REPORT_NAME("wasm"))
6662

6763
/* Devices like:
@@ -107,6 +103,10 @@ platform variants we cannot support anyway. */
107103
#elif defined(Q_PROCESSOR_RISCV_64)
108104
#pragma message(REPORT_NAME("riscv64"))
109105

106+
/* PNaCl virtual machines. */
107+
#elif defined(__native_client__)
108+
#pragma message(REPORT_NAME("pnacl"))
109+
110110
#else
111111
#pragma message(REPORT_NAME("unknown"))
112112
#endif

0 commit comments

Comments
 (0)