Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions checks/architecture/Jamfile.jam
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ project /boost/architecture
obj 32 : 32.cpp ;
obj 64 : 64.cpp ;

obj alpha : alpha.cpp ;
obj arm : arm.cpp ;
obj combined : combined.cpp ;
obj loongarch : loongarch.cpp ;
Expand Down
9 changes: 9 additions & 0 deletions checks/architecture/alpha.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// alpha.cpp
//
// Distributed under the Boost Software License Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

#if !defined(__alpha__) && !defined(__alpha) && !defined(_M_ALPHA)
#error "Not Alpha"
#endif