/
niceSOFT
/
swig
ОбзорДокументацияВойти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
swig/
Examples/
..
android

Remove use of preinst-swig script

11 лет назад
c

Fix extension of filename in comments in examples

2 года назад
csharp

Cleanup C# vcxproj files removing warnings

2 года назад
d

Tidy up EXTRA_ build flags

2 года назад
go

Fix -Wextra-semi warnings (#3372)

5 месяцев назад
guile

Remove redundant NULL checks before free()/delete (#2184)

5 лет назад
java

Java compiler lint warnings fixes in test code

год назад
javascript

[js] Clean up obsolete V8_VERSION machinery

2 года назад
lua

[Lua] Restore Lua 5.1 and LuaJIT compatibility for non-director wrapping

месяц назад
ocaml

[ocaml] Avoid non-unit-statement warnings in examples

2 года назад
octave

octave: Clean up handling specific to Octave < 6

7 месяцев назад
perl5

argcargv / OOM-protection follow-ups

3 месяца назад
php

Fix extension of filename in comments in examples

2 года назад
python

Complete the Python 2 removal and fix issues found reviewing it

месяц назад
r

Remove legacy Visual C++ 6 project files

2 года назад
ruby

Fix -Wextra-semi warnings (#3372)

5 месяцев назад
scilab

Add support for Scilab 2025.x.0

год назад
tcl

Fix -Wextra-semi warnings (#3372)

5 месяцев назад
test-suite

[Python] Check annotations in .pyi stubs with -builtin and -fastproxy

6 дней назад
Makefile.in

[Python] Clean all generated stub files

6 дней назад
README

Improve Examples/README

12 лет назад
index.html

[MzScheme/Racket] Drop support

год назад
README
SWIG Examples
 
The subdirectories of "Examples" named after SWIG's language backends
contain a number of simple examples that are primarily used for testing.
 
The file 'index.html' is the top of a hyperlinked document that
contains information about all of the examples along with various
notes related to each example.
 
Note: All of the examples rely upon the Makefile in this directory.
You may need to edit it to reflect the configuration of your machine
in case the configure script guesses incorrect settings.
 
 
*** Special note concerning C++ ***
 
The configure script is currently unable to handle all of the possible
options for producing dynamically loadable C++ extensions. Here are
the rules of thumb for making C++ work:
 
- Try using the C++ as the linker for the shared library. For example:
 
g++ -shared $(OBJS) -o module.so
 
- If that doesn't work, you may need to explicitly link against some
kind of C++ runtime library. For example:
 
ld -G $(OBJS) -L/opt/SUNWspro/lib -lCrun -o module.so
 
This can be set by modifying the setting of CPP_DLLIBS in the
Makefile.
 
 
*** Special note for SWIG Maintainers ***
 
When you add an example, consider arranging for the example to be also
useful as part of the SWIG testing framework. To do this, include in
the example makefile a target "check" ("check: all" is sufficient for a
first pass), and add an invocation to ../Makefile.in under target
"check-examples" (or whatever is appropriate). Later, we can add or
expand the actions under target "check" to do more in-depth testing.