Skip to content

Commit

Permalink
Build error fix for Random123 on IBM Power9 system with PGI compiler (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
pramodk committed Jul 29, 2020
1 parent 9a08d10 commit 71eda9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Random123/features/pgccfeatures.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ so as not to confuse it with the version available from LANL.
#ifndef __pgccfeatures_dot_hpp
#define __pgccfeatures_dot_hpp

#if !defined(__x86_64__) && !defined(__i386__)
#if !defined(__x86_64__) && !defined(__i386__) && !defined(__powerpc64__)
# error "This code has only been tested on x86 platforms."
#include <including_a_nonexistent_file_will_stop_some_compilers_from_continuing_with_a_hopeless_task>
{ /* maybe an unbalanced brace will terminate the compilation */
Expand Down

0 comments on commit 71eda9d

Please sign in to comment.