mirror of
https://github.com/urbit/shrub.git
synced 2024-12-14 20:02:51 +03:00
Merge branch 'master' of github.com:urbit/urbit
Conflicts: urb/urbit.pill
This commit is contained in:
commit
8298dd9404
2
Makefile
2
Makefile
@ -57,7 +57,7 @@ endif
|
||||
INCLUDE=include
|
||||
MDEFINES=-DU2_OS_$(OS) -DU2_OS_ENDIAN_$(ENDIAN) -D U2_LIB=\"$(LIB)\"
|
||||
|
||||
CFLAGS= -O2 -g \
|
||||
CFLAGS= -O2 -g -msse3 -ffast-math \
|
||||
-funsigned-char \
|
||||
-I/usr/local/include \
|
||||
-I/opt/local/include \
|
||||
|
5
v/main.c
5
v/main.c
@ -18,6 +18,8 @@
|
||||
#include <termios.h>
|
||||
#include <term.h>
|
||||
#include <dirent.h>
|
||||
#include <pmmintrin.h>
|
||||
#include <xmmintrin.h>
|
||||
|
||||
#define U2_GLOBAL
|
||||
#define C3_GLOBAL
|
||||
@ -248,6 +250,9 @@ main(c3_i argc,
|
||||
{
|
||||
c3_w kno_w;
|
||||
|
||||
_MM_SET_FLUSH_ZERO_MODE(_MM_FLUSH_ZERO_ON);
|
||||
_MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON);
|
||||
|
||||
// Parse options.
|
||||
//
|
||||
if ( u2_no == _main_getopt(argc, argv) ) {
|
||||
|
Loading…
Reference in New Issue
Block a user