mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-30 16:28:30 +00:00
Fine tune OpenMP some more
This commit is contained in:
parent
369aebfc48
commit
616717fa82
12 changed files with 45 additions and 48 deletions
|
@ -142,6 +142,9 @@ libc/isystem/nsync_once.h \
|
|||
libc/isystem/nsync_time.h \
|
||||
libc/isystem/nsync_waiter.h \
|
||||
libc/isystem/numeric \
|
||||
libc/isystem/omp-tools.h \
|
||||
libc/isystem/omp.h \
|
||||
libc/isystem/ompx.h \
|
||||
libc/isystem/optional \
|
||||
libc/isystem/ostream \
|
||||
libc/isystem/paths.h \
|
||||
|
@ -274,6 +277,8 @@ LIBC_INCS = $(filter %.inc,$(LIBC_FILES))
|
|||
LIBC_CHECKS = $(LIBC_HDRS_H:%=o/$(MODE)/%.ok)
|
||||
LIBC_FILES := $(wildcard libc/*)
|
||||
|
||||
o/$(MODE)/libc/isystem/ompx.h.ok: private CPPFLAGS += -Wno-unknown-pragmas
|
||||
|
||||
.PHONY: o/$(MODE)/libc
|
||||
o/$(MODE)/libc: o/$(MODE)/libc/calls \
|
||||
o/$(MODE)/libc/crt \
|
||||
|
|
3
libc/isystem/omp-tools.h
Normal file
3
libc/isystem/omp-tools.h
Normal file
|
@ -0,0 +1,3 @@
|
|||
#ifndef _OMP_TOOLS_H
|
||||
#include "third_party/openmp/omp-tools.h"
|
||||
#endif /* _OMP_TOOLS_H */
|
3
libc/isystem/omp.h
Normal file
3
libc/isystem/omp.h
Normal file
|
@ -0,0 +1,3 @@
|
|||
#ifndef _OMP_H
|
||||
#include "third_party/openmp/omp.h"
|
||||
#endif /* _OMP_H */
|
3
libc/isystem/ompx.h
Normal file
3
libc/isystem/ompx.h
Normal file
|
@ -0,0 +1,3 @@
|
|||
#ifndef _OMPX_H
|
||||
#include "third_party/openmp/ompx.h"
|
||||
#endif /* _OMPX_H */
|
Loading…
Add table
Add a link
Reference in a new issue