Affix

 view release on metacpan or  search on metacpan

dyncall/buildsys/cmake/Modules/UseLATEX.cmake  view on Meta::CPAN

  FILE(READ ${filename} file_contents)
  STRING(REGEX MATCHALL "${regexp}"
    ${variable} ${file_contents}
    )
  IF (NOT ${variable})
    SET(${variable} "${default}")
  ENDIF (NOT ${variable})
ENDMACRO(LATEX_FILE_MATCH)

#############################################################################
# Macros that perform processing during a LaTeX build.
#############################################################################
MACRO(LATEX_MAKEGLOSSARIES)
  MESSAGE("**************************** In makeglossaries")
  IF (NOT LATEX_TARGET)
    MESSAGE(SEND_ERROR "Need to define LATEX_TARGET")
  ENDIF (NOT LATEX_TARGET)

  IF (NOT MAKEINDEX_COMPILER)
    MESSAGE(SEND_ERROR "Need to define MAKEINDEX_COMPILER")
  ENDIF (NOT MAKEINDEX_COMPILER)

dyncall/configure.bat  view on Meta::CPAN

	ECHO.  /target-x64       build for x64 architecture
	ECHO.  /target-arm64     build for arm64 architecture
	ECHO.  /target-psp       cross-build for PlayStation Portable ^(homebrew SDK^)
	ECHO.  /target-nds-arm   cross-build for Nintendo DS ^(devkitPro, ARM mode^)
	ECHO.  /target-nds-thumb cross-build for Nintendo DS ^(devkitPro, THUMB mode^)
	ECHO.
	ECHO.  /tool-msvc        use Microsoft Visual C++ compiler ^(default^)
	ECHO.  /tool-gcc         use GNU Compiler Collection
	ECHO.  /tool-clang       use LLVM clang compiler
	ECHO.
	ECHO.  /asm-ml           use Microsoft Macro Assembler ^(default^)
	ECHO.  /asm-as           use the GNU or LLVM Assembler
	ECHO.  /asm-nasm         use NASM Assembler
	ECHO.
	ECHO.  /make-nmake       configure for use with cmd.exe/NMAKE env ^(default^)
	ECHO.  /make-make        configure for use with sh/make env
	GOTO:EOF
) ELSE IF [%1]==[/target-x86] (
	SET CONFIG_ARCH=x86
) ELSE IF [%1]==[/target-x64] (
	SET CONFIG_ARCH=x64

dyncall/doc/manual/manual_build.tex  view on Meta::CPAN

{\tt /?}                       & display help                                        \\
{\tt /target-x86}              & build for x86 architecture (default)                \\
{\tt /target-x64}              & build for x64 architecture                          \\
{\tt /target-arm64}            & build for x64 architecture                          \\
{\tt /target-psp}              & cross-build for PlayStation Portable (homebrew SDK) \\
{\tt /target-nds-arm}          & cross-build for Nintendo DS (devkitPro, ARM mode)   \\
{\tt /target-nds-thumb}        & cross-build for Nintendo DS (devkitPro, THUMB mode) \\
{\tt /tool-msvc}               & use Microsoft Visual C++ compiler (default)         \\
{\tt /tool-gcc}                & use GNU Compiler Collection                         \\
{\tt /tool-clang}              & use GNU Compiler Collection                         \\
{\tt /asm-ml}                  & use Microsoft Macro Assembler (default)             \\
{\tt /asm-as}                  & use the GNU or LLVM Assembler                       \\
{\tt /asm-nasm}                & use NASM Assembler                                  \\
\end{tabular*}


\paragraph{Plan 9 flavour}

\begin{lstlisting}
./configure.rc [--option ...]
\end{lstlisting}

dyncall/dyncall/dyncall_config.h  view on Meta::CPAN

/*

 Package: dyncall
 Library: dyncall
 File: dyncall/dyncall_config.h
 Description: Macro configuration file for non-standard C types
 License:

   Copyright (c) 2007-2018 Daniel Adler <dadler@uni-goettingen.de>, 
                           Tassilo Philipp <tphilipp@potion-studios.com>

   Permission to use, copy, modify, and distribute this software for any
   purpose with or without fee is hereby granted, provided that the above
   copyright notice and this permission notice appear in all copies.

   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES

dyncall/portasm/README.txt  view on Meta::CPAN

Usage:
------

Implement assembler sources in *.S files which use C preprocessor.
#include portasm-<ARCH>.S at front

In order to generate MASM files for X86 and X64, run 
  'gen-masm.sh <name> [<outsuffix>]' script which reads <name>.S and outputs <name><outsuffix>.masm file.


Common Macros:
--------------

BEGIN_ASM
END_ASM
BEGIN_PROC(name)
END_PROC(name)
GLOBAL(name)
HEX(value)


dyncall/portasm/portasm-ppc.S  view on Meta::CPAN

/*

 Package: dyncall
 Library: portasm
 File: portasm/portasm-ppc.S
 Description: Portable Assembler Macros for ppc
 License:

   Copyright (c) 2011-2018 Daniel Adler <dadler@uni-goettingen.de>

   Permission to use, copy, modify, and distribute this software for any
   purpose with or without fee is hereby granted, provided that the above
   copyright notice and this permission notice appear in all copies.

   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
   WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF

dyncall/portasm/portasm-ppc64.S  view on Meta::CPAN

/*

 Package: dyncall
 Library: portasm
 File: portasm/portasm-ppc64.S
 Description: Portable Assembler Macros for ppc64
 License:

   Copyright (c) 2014-2015 Masanori Mitsugi <mitsugi@linux.vnet.ibm.com>

   Permission to use, copy, modify, and distribute this software for any
   purpose with or without fee is hereby granted, provided that the above
   copyright notice and this permission notice appear in all copies.

   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
   WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF

dyncall/portasm/portasm-x64.S  view on Meta::CPAN

/*

 Package: dyncall
 Library: portasm
 File: portasm/portasm-x64.S
 Description: Portable Assembler Macros for X64
 License:

   Copyright (c) 2007-2022 Daniel Adler <dadler@uni-goettingen.de>,
                           Tassilo Philipp <tphilipp@potion-studios.com>

   Permission to use, copy, modify, and distribute this software for any
   purpose with or without fee is hereby granted, provided that the above
   copyright notice and this permission notice appear in all copies.

   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES

dyncall/portasm/portasm-x86.S  view on Meta::CPAN

/*

 Package: dyncall
 Library: portasm
 File: portasm/portasm-x86.S
 Description: Portable Assembler Macros for x86
 License:

   Copyright (c) 2011-2018 Daniel Adler <dadler@uni-goettingen.de>

   Permission to use, copy, modify, and distribute this software for any
   purpose with or without fee is hereby granted, provided that the above
   copyright notice and this permission notice appear in all copies.

   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
   WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF



( run in 0.688 second using v1.01-cache-2.11-cpan-49f99fa48dc )