mirror of
https://github.com/mcneel/opennurbs.git
synced 2026-03-21 09:59:29 +08:00
Add preliminary ON_RUNTIME_LINUX support.
* [make] add missing files to get compile going - opennurbs_glyph_outline.cpp - opennurbs_unicode_cpsb.cpp - commented out version of LINKFLAGS with -luuid - commented out entries for Clang usage
This commit is contained in:
committed by
Will Pearson
parent
abdc015b3e
commit
eac54460a5
@@ -63,7 +63,7 @@ ON_qsort( void *base, size_t nel, size_t width, int (*compar)(void*,const void *
|
||||
// find pivots, that calculation must be thread safe.
|
||||
#if defined(ON_COMPILER_MSC)
|
||||
qsort_s(base,nel,width,compar,context);
|
||||
#elif defined(ON_RUNTIME_ANDROID)
|
||||
#elif defined(ON_RUNTIME_ANDROID) || defined(ON_RUNTIME_LINUX)
|
||||
ON_hsort(base, nel, width, compar, context);
|
||||
#elif defined(ON_COMPILER_CLANG)
|
||||
qsort_r(base,nel,width,context,compar);
|
||||
|
||||
Reference in New Issue
Block a user