We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df26ad5 commit 987b1b9Copy full SHA for 987b1b9
src/include/port/alpha.h
@@ -3,3 +3,9 @@
3
#define HAS_TEST_AND_SET
4
#include <sys/mman.h> /* for msemaphore */
5
typedef msemaphore slock_t;
6
+
7
+/* some platforms define __alpha, but not __alpha__ */
8
+#if defined(__alpha) && !defined(__alpha__)
9
+#define __alpha__
10
+#endif
11
src/makefiles/Makefile.alpha
@@ -1,7 +1,2 @@
1
-/* some platforms define __alpha, but not __alpha__ */
2
-#if defined(__alpha) && !defined(__alpha__)
-#define __alpha__
-#endif
-
%.so: %.o
$(LD) -shared -expect_unresolved '*' -o $@ $<
0 commit comments