We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pi@pi8:~/chess/Scorpio/src $ g++ -c mcts.cpp /tmp/cc1WZLto.s: Assembler messages: /tmp/cc1WZLto.s:4425: Error: unknown mnemonic `pause' -- `pause' /tmp/cc1WZLto.s:6038: Error: unknown mnemonic `pause' -- `pause'
The text was updated successfully, but these errors were encountered:
You could try to set t_pause() in my_types.h to blank similar to what is done for __ANDROID__. https://github.com/dshawul/Scorpio/blob/master/src/my_types.h#L175-L185
t_pause()
my_types.h
__ANDROID__
#if defined _WIN32 # define t_pause() YieldProcessor() # define t_sleep(x) Sleep(x) #else # define t_sleep(x) usleep((x) * 1000) #if defined __ANDROID__ # define t_pause() #else # define t_pause() asm volatile("pause\n": : :"memory") #endif #endif
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: