-
Notifications
You must be signed in to change notification settings - Fork 319
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
11,284 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
libbbryu-dev-extra: blp-bde-metadata-missing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ryu | ||
bbryu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
add_subdirectory("inteldfp/LIBRARY") | ||
add_subdirectory(pcre2) | ||
add_subdirectory(ryu) | ||
add_subdirectory(bbryu) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
set(target bbryu) | ||
message(VERBOSE "Processing target \"${target}\"") | ||
|
||
add_library(${target} STATIC | ||
blp_d2cpp.c | ||
blp_f2cpp.c | ||
blp_d2fixed_cpp.c | ||
d2fixed.c | ||
d2s.c | ||
f2s.c | ||
) | ||
|
||
set(${target}_INCLUDE_FILES | ||
blp_common.h | ||
blp_common32.h | ||
blp_common64.h | ||
blp_ryu.h | ||
common.h | ||
d2fixed_full_table.h | ||
d2s_full_table.h | ||
d2s_intrinsics.h | ||
d2s_small_table.h | ||
digit_table.h | ||
f2s_full_table.h | ||
f2s_intrinsics.h | ||
ryu.h | ||
) | ||
|
||
target_include_directories( | ||
${target} | ||
PUBLIC | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/..> | ||
$<INSTALL_INTERFACE:include>) | ||
|
||
bbs_add_target_thread_flags(${target} PRIVATE) | ||
|
||
# This variable controls the set of headers to install | ||
set(${target}_INCLUDE_FILES ${${target}_INCLUDE_FILES} PARENT_SCOPE) | ||
|
||
# Set install path for headers instead of INSTALL_INTERFACE | ||
set_target_properties(${target} PROPERTIES INCLUDES_INSTALL_PATH "include/${target}") | ||
|
||
|
||
bbs_install_target(${target}) | ||
bbs_emit_pkg_config(${target}) | ||
|
||
set_target_properties(${target} PROPERTIES BB_UOR_PARTITION thirdparty) | ||
set_target_properties(${target} PROPERTIES BB_UOR_IS_GROUP FALSE) | ||
bbs_emit_bde_metadata(${target}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Ulf Adams <[email protected]> | ||
Stephan T. Lavavej <[email protected]> | ||
Alexander Bolz <[email protected]> |
Oops, something went wrong.