• R/O
  • SSH

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

File Info

Rev. ed56057f569a00172c163f91d7f5eab90ecaee64
Tamanho 476 bytes
Hora 2006-12-10 23:58:13
Autor iselllo
Mensagem de Log

initial import

Content

#!/bin/sh
# Static library demo
# Create static library's object file, libhello−static.o.
# I'm using the name libhello−static to clearly
# differentiate the static library from the
# dynamic library examples, but you don't need to use
# "−static" in the names of your
# object files or static libraries.
# g++ −Wall −g −c −o mylib−static.o mylib.c

g++ -Wall -g -c -o  mylib-static.o mylib.c -O2
# Create static library.
ar rcs mylib-static.a mylib-static.o